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,22 +4,22 @@
; void screensize (unsigned char* x, unsigned char* y);
;
.export _screensize
.export _screensize
.import popsreg
.import screensize
.importzp ptr1, sreg
.import popsreg
.import screensize
.importzp ptr1, sreg
.proc _screensize
.proc _screensize
sta ptr1 ; Store the y pointer
stx ptr1+1
sta ptr1 ; Store the y pointer
stx ptr1+1
jsr popsreg ; Get the x pointer into sreg
jsr screensize ; Get screensize into X/Y
tya ; Get Y size into A
.IFP02
ldy #0
ldy #0
sta (ptr1),y
txa
sta (sreg),y
@@ -29,7 +29,7 @@
sta (sreg)
.ENDIF
rts
rts
.endproc