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

@@ -7,31 +7,31 @@
;
; push eax on stack
;
.export pushl0, push0ax, pusheax
.import decsp4
.importzp sp, sreg
.export pushl0, push0ax, pusheax
.import decsp4
.importzp sp, sreg
pushl0:
lda #0
tax
push0ax:
ldy #0
sty sreg
sty sreg+1
ldy #0
sty sreg
sty sreg+1
pusheax:
pha ; decsp will destroy A (but not X)
jsr decsp4
ldy #3
lda sreg+1
sta (sp),y
dey
lda sreg
sta (sp),y
dey
txa
sta (sp),y
dey
pla
sta (sp),y
rts
pha ; decsp will destroy A (but not X)
jsr decsp4
ldy #3
lda sreg+1
sta (sp),y
dey
lda sreg
sta (sp),y
dey
txa
sta (sp),y
dey
pla
sta (sp),y
rts