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

@@ -5,33 +5,33 @@
; /* Return the video mode the machine is using */
;
.include "nes.inc"
.include "get_tv.inc"
.importzp tmp1, tmp2
.include "nes.inc"
.include "get_tv.inc"
.importzp tmp1, tmp2
;--------------------------------------------------------------------------
; _get_tv
.proc _get_tv
.proc _get_tv
lda #TV::NTSC ; assume NTSC
tax ; clear
sta tmp1
sta tmp2
ldy tickcount
wait: cpy tickcount
beq wait
iny ; next tick
loop: cpy tickcount
bne over
inc tmp1
bne loop
inc tmp2
bne loop
over: ldy tmp2
cpy #9
bcc nopal
lda #TV::PAL ; choose PAL
nopal: rts
lda #TV::NTSC ; assume NTSC
tax ; clear
sta tmp1
sta tmp2
ldy tickcount
wait: cpy tickcount
beq wait
iny ; next tick
loop: cpy tickcount
bne over
inc tmp1
bne loop
inc tmp2
bne loop
over: ldy tmp2
cpy #9
bcc nopal
lda #TV::PAL ; choose PAL
nopal: rts
.endproc