]> git.sur5r.net Git - cc65/blobdiff - libsrc/c64/get_ostype.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / c64 / get_ostype.s
index 4058e116ef830d9b6ef8679220f2ffc2842c2035..cddb5842a4e0dae8f0ba6cd6a9492df787973132 100644 (file)
 ; $FF C64DTV
 ;
 
-       .export         _get_ostype
+        .export         _get_ostype
 
-.proc  _get_ostype
+.proc   _get_ostype
 
-       ldx     #0            ; Clear high byte
+        ldx     #0            ; Clear high byte
 
-               ldy     #1
-       sty     $d03f
-       ldy     $d040
-       cpy     $d000
-       bne     @c64dtv
-       inc     $d000
-       cpy     $d040
-       beq     @c64dtv
+        ldy     #1
+        sty     $d03f
+        ldy     $d040
+        cpy     $d000
+        bne     @c64dtv
+        inc     $d000
+        cpy     $d040
+        beq     @c64dtv
 
 ; Normal C64
 
-       lda     $ff80
-       rts
+        lda     $ff80
+        rts
 
 ; C64 DTV
 
 @c64dtv:
-               stx     $d03f
-       lda     #$ff
-       rts
+        stx     $d03f
+        lda     #$ff
+        rts
 .endproc