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

@@ -9,43 +9,43 @@
;
.export __setcolor, __setcolor_low, __getcolor
.import popa
.include "atari.inc"
.export __setcolor, __setcolor_low, __getcolor
.import popa
.include "atari.inc"
.proc __getcolor
.proc __getcolor
tax
lda COLOR0,x ; get current value
ldx #0
rts
tax
lda COLOR0,x ; get current value
ldx #0
rts
.endproc
.proc __setcolor
.proc __setcolor
; asl a ; not -> BASIC compatible
sta lum ; remember luminance
jsr popa ; get hue
asl a
asl a
asl a
asl a
ora lum
; jmp __setcolor_low
; asl a ; not -> BASIC compatible
sta lum ; remember luminance
jsr popa ; get hue
asl a
asl a
asl a
asl a
ora lum
; jmp __setcolor_low
.endproc
.proc __setcolor_low
.proc __setcolor_low
pha
jsr popa
tax
pla
sta COLOR0,x
rts
pha
jsr popa
tax
pla
sta COLOR0,x
rts
.endproc
.bss
lum: .res 1
.bss
lum: .res 1