Removed (pretty inconsistently used) tab chars from source code base.

This commit is contained in:
Oliver Schmidt
2013-05-09 13:56:54 +02:00
parent 44fd1082ae
commit 85885001b1
1773 changed files with 62864 additions and 62868 deletions

View File

@@ -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