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: long add
;
.export tosadd0ax, tosaddeax
.import addysp1
.importzp sp, sreg, tmp1
.export tosadd0ax, tosaddeax
.import addysp1
.importzp sp, sreg, tmp1
.macpack cpu
@@ -18,27 +18,27 @@ tosadd0ax:
sty sreg+1
tosaddeax:
clc
clc
.if (.cpu .bitand CPU_ISET_65SC02)
adc (sp) ; 65SC02 version - saves 2 cycles
ldy #1
adc (sp) ; 65SC02 version - saves 2 cycles
ldy #1
.else
ldy #0
adc (sp),y ; lo byte
iny
ldy #0
adc (sp),y ; lo byte
iny
.endif
sta tmp1 ; use as temp storage
txa
adc (sp),y ; byte 1
tax
iny
lda sreg
adc (sp),y ; byte 2
sta sreg
iny
lda sreg+1
adc (sp),y ; byte 3
sta sreg+1
lda tmp1 ; load byte 0
jmp addysp1 ; drop TOS
sta tmp1 ; use as temp storage
txa
adc (sp),y ; byte 1
tax
iny
lda sreg
adc (sp),y ; byte 2
sta sreg
iny
lda sreg+1
adc (sp),y ; byte 3
sta sreg+1
lda tmp1 ; load byte 0
jmp addysp1 ; drop TOS