1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-23 23:17:45 +00:00

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
+16 -16
View File
@@ -4,27 +4,27 @@
; CC65 runtime: Push word from stack
;
.export pushb, pushbidx
.import pushax
.importzp ptr1
.export pushb, pushbidx
.import pushax
.importzp ptr1
.macpack cpu
pushbidx:
sty ptr1
clc
adc ptr1
bcc pushb
inx
pushb: sta ptr1
stx ptr1+1
ldx #0 ; Load index/high byte
sty ptr1
clc
adc ptr1
bcc pushb
inx
pushb: sta ptr1
stx ptr1+1
ldx #0 ; Load index/high byte
.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
bpl L1
dex ; Make high byte FF
L1: jmp pushax
bpl L1
dex ; Make high byte FF
L1: jmp pushax