]> git.sur5r.net Git - cc65/blobdiff - libsrc/apple2/get_ostype.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / apple2 / get_ostype.s
index ba2347ab527bd16445e474f4ef64aeac4e42b167..68ae865ac44b963c7db369eca12eecf14634e8e7 100644 (file)
@@ -1,79 +1,70 @@
 ;
 ; Oliver Schmidt, 04.01.2005
 ;
-; unsigned char get_ostype(void)
+; unsigned char get_ostype (void)
 ;
 
-       .constructor    initostype
-       .export         _get_ostype
+        .constructor    initostype
+        .export         _get_ostype
 
 ; Identify machine according to:
-; "Apple II Miscellaneous TechNote #7: Apple II Family Identification"
+; Apple II Miscellaneous TechNote #7, Apple II Family Identification
 
-; ------------------------------------------------------------------------
-; Initialization
-
-.segment        "INIT"
+        .segment        "INIT"
 
 initostype:
-       sec
-       jsr     $FE1F
-       bcs     nogs
-       tya
-       ora     #$80
-done:  sta     ostype
-       rts
-nogs:  ldx     #$FF
-next:  inx
-       lda     value,x
-       ldy     index,x
-       beq     done            ; $00 is no valid index
-       cmp     $FB00,y
-       beq     next
-:      inx
-       ldy     index,x
-       bne     :-
-       beq     next            ; Branch always
-
-; ------------------------------------------------------------------------
+        sec
+        jsr     $FE1F
+        bcs     nogs
+        tya
+        ora     #$80
+done:   sta     ostype
+        rts
+nogs:   ldx     #$FF
+next:   inx
+        lda     value,x
+        ldy     index,x
+        beq     done            ; $00 is no valid index
+        cmp     $FB00,y
+        beq     next
+:       inx
+        ldy     index,x
+        bne     :-
+        beq     next            ; Branch always
 
-.code
-
-_get_ostype:
-       lda     ostype
-       ldx     #$00
-       rts
+index:  .byte   $B3, $00                ; Apple ][
+        .byte   $B3, $1E, $00           ; Apple ][+
+        .byte   $B3, $1E, $00           ; Apple /// (emulation)
+        .byte   $B3, $C0, $00           ; Apple //e
+        .byte   $B3, $C0, $DD, $BE, $00 ; Apple //e Option Card
+        .byte   $B3, $C0, $00           ; Apple //e (enhanced)
+        .byte   $B3, $C0, $BF, $00      ; Apple //c
+        .byte   $B3, $C0, $BF, $00      ; Apple //c (3.5 ROM)
+        .byte   $B3, $C0, $BF, $00      ; Apple //c (Mem. Exp.)
+        .byte   $B3, $C0, $BF, $00      ; Apple //c (Rev. Mem. Exp.)
+        .byte   $B3, $C0, $BF, $00      ; Apple //c Plus
+        .byte   $00
 
+value:  .byte   $38, $10                ; Apple ][
+        .byte   $EA, $AD, $11           ; Apple ][+
+        .byte   $EA, $8A, $20           ; Apple /// (emulation)
+        .byte   $06, $EA, $30           ; Apple //e
+        .byte   $06, $E0, $02, $00, $40 ; Apple //e Option Card
+        .byte   $06, $E0, $31           ; Apple //e (enhanced)
+        .byte   $06, $00, $FF, $50      ; Apple //c
+        .byte   $06, $00, $00, $51      ; Apple //c (3.5 ROM)
+        .byte   $06, $00, $03, $53      ; Apple //c (Mem. Exp.)
+        .byte   $06, $00, $04, $54      ; Apple //c (Rev. Mem. Exp.)
+        .byte   $06, $00, $05, $55      ; Apple //c Plus
+        .byte   $00
 
-.rodata
-
-index: .byte   $B3, $00                ; Apple ][
-       .byte   $B3, $1E, $00           ; Apple ][+
-       .byte   $B3, $1E, $00           ; Apple /// (emulation)
-       .byte   $B3, $C0, $00           ; Apple //e
-       .byte   $B3, $C0, $DD, $BE, $00 ; Apple //e Option Card
-       .byte   $B3, $C0, $00           ; Apple //e (enhanced)
-       .byte   $B3, $C0, $BF, $00      ; Apple //c
-       .byte   $B3, $C0, $BF, $00      ; Apple //c (3.5 ROM)
-       .byte   $B3, $C0, $BF, $00      ; Apple //c (Mem. Exp.)
-       .byte   $B3, $C0, $BF, $00      ; Apple //c (Rev. Mem. Exp.)
-       .byte   $B3, $C0, $BF, $00      ; Apple //c Plus
-       .byte   $00
-
-value: .byte   $38, $10                ; Apple ][
-       .byte   $EA, $AD, $11           ; Apple ][+
-       .byte   $EA, $8A, $20           ; Apple /// (emulation)
-       .byte   $06, $EA, $30           ; Apple //e
-       .byte   $06, $E0, $02, $00, $40 ; Apple //e Option Card
-       .byte   $06, $E0, $31           ; Apple //e (enhanced)
-       .byte   $06, $00, $FF, $50      ; Apple //c
-       .byte   $06, $00, $00, $51      ; Apple //c (3.5 ROM)
-       .byte   $06, $00, $03, $53      ; Apple //c (Mem. Exp.)
-       .byte   $06, $00, $04, $54      ; Apple //c (Rev. Mem. Exp.)
-       .byte   $06, $00, $05, $55      ; Apple //c Plus
-       .byte   $00
+        .code
 
+_get_ostype:
+        lda     ostype
+        ldx     #$00
+        rts
 
-.bss
+        .bss
 
-ostype:        .res    1
+ostype: .res    1