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,24 +4,24 @@
; CC65 runtime: Load an unsigned char indirect from pointer somewhere in stack
;
.export ldau00sp, ldau0ysp
.importzp sp, ptr1
.export ldau00sp, ldau0ysp
.importzp sp, ptr1
.macpack cpu
ldau00sp:
ldy #1
ldy #1
ldau0ysp:
lda (sp),y
sta ptr1+1
dey
lda (sp),y
sta ptr1
ldx #0
lda (sp),y
sta ptr1+1
dey
lda (sp),y
sta ptr1
ldx #0
.if (.cpu .bitand CPU_ISET_65SC02)
lda (ptr1) ; Save one cycle for the C02
lda (ptr1) ; Save one cycle for the C02
.else
lda (ptr1,x)
lda (ptr1,x)
.endif
rts
rts