1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00
cc65/libsrc/apple2/get_ostype.s

21 lines
223 B
ArmAsm
Raw Normal View History

;
; Stefan Haubenthal, Jul 12 2003
;
; unsigned char get_ostype(void)
;
; $23 ProDOS 2.0.3
;
.export _get_ostype
.proc _get_ostype
lda #0
ldx $bf00
cpx #$4c ; JMP opcode
bne nopdos
lda $bfff
nopdos: rts
.endproc