Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
@@ -4,9 +4,9 @@
|
||||
; CC65 runtime: xor on longs
|
||||
;
|
||||
|
||||
.export tosxor0ax, tosxoreax
|
||||
.import addysp1
|
||||
.importzp sp, sreg, tmp1
|
||||
.export tosxor0ax, tosxoreax
|
||||
.import addysp1
|
||||
.importzp sp, sreg, tmp1
|
||||
|
||||
tosxor0ax:
|
||||
ldy #$00
|
||||
@@ -14,24 +14,24 @@ tosxor0ax:
|
||||
sty sreg+1
|
||||
|
||||
tosxoreax:
|
||||
ldy #0
|
||||
eor (sp),y ; byte 0
|
||||
sta tmp1
|
||||
iny
|
||||
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
|
||||
ldy #0
|
||||
eor (sp),y ; byte 0
|
||||
sta tmp1
|
||||
iny
|
||||
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
|
||||
lda tmp1
|
||||
jmp addysp1
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user