File: lxor.s

package info (click to toggle)
cc65 2.19-1
  • links: PTS
  • area: main
  • in suites:
  • size: 20,272 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,008; perl: 607
file content (50 lines) | stat: -rw-r--r-- 996 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
;
; Ullrich von Bassewitz, 06.08.1998
; Christian Krueger, 11-Mar-2017, added 65SC02 optimization
;
; CC65 runtime: xor on longs
;

        .export         tosxor0ax, tosxoreax
        .import         addysp1
        .importzp       sp, sreg, tmp1

        .macpack        cpu

tosxor0ax:
.if (.cpu .bitand ::CPU_ISET_65SC02)
        stz     sreg
        stz     sreg+1
.else
        ldy     #$00
        sty     sreg
        sty     sreg+1
.endif

tosxoreax:
.if (.cpu .bitand ::CPU_ISET_65SC02)
        eor     (sp)            ; byte 0
        ldy     #1
.else                         
        ldy     #0
        eor     (sp),y          ; byte 0
        iny
.endif
        sta     tmp1
        txa
        eor     (sp),y          ; byte 1
        tax
        iny
        lda     sreg
        eor     (sp),y          ; byte 2
        sta     sreg
        iny
        lda     sreg+1
        eor     (sp),y          ; byte 3
        sta     sreg+1

        lda     tmp1
        jmp     addysp1