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: modulo operation for long unsigned ints
;
.export tosumod0ax, tosumodeax
.import getlop, udiv32
.importzp sreg, tmp3, tmp4, ptr2
.export tosumod0ax, tosumodeax
.import getlop, udiv32
.importzp sreg, tmp3, tmp4, ptr2
tosumod0ax:
ldy #$00
@@ -14,13 +14,13 @@ tosumod0ax:
sty sreg+1
tosumodeax:
jsr getlop ; Get the paramameters
jsr udiv32 ; Do the division
lda tmp3 ; Remainder is in ptr2:tmp3:tmp4
sta sreg
lda tmp4
sta sreg+1
lda ptr2
ldx ptr2+1
rts
jsr getlop ; Get the paramameters
jsr udiv32 ; Do the division
lda tmp3 ; Remainder is in ptr2:tmp3:tmp4
sta sreg
lda tmp4
sta sreg+1
lda ptr2
ldx ptr2+1
rts