]> git.sur5r.net Git - cc65/blobdiff - libsrc/nes/get_tv.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / nes / get_tv.s
index 8d2c313b7c31c3180dad490d892b13e003affd53..7a52440b396e8ad9b884d2f3b14da46a0059a4c5 100644 (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