1
0
mirror of https://github.com/cc65/cc65.git synced 2025-03-05 23:29:31 +00:00

23 lines
352 B
ArmAsm

;
; Oliver Schmidt, 2012-10-15
;
.export isdevice
.include "zeropage.inc"
.include "mli.inc"
isdevice:
ldy DEVCNT
: lda DEVLST,y
lsr
lsr
lsr
lsr
sta tmp1
cpx tmp1
beq :+
dey
bpl :-
: rts