1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00
cc65/libsrc/telestrat/kbhit.s

18 lines
230 B
ArmAsm
Raw Normal View History

2021-02-01 16:53:07 +00:00
;
; Jede, 2021-02-01
;
; int kbhit (void);
;
.export _kbhit
.include "telestrat.inc"
_kbhit:
BRK_TELEMON XRD0
ldx #$00
txa
rol
eor #$01
2021-02-01 16:53:07 +00:00
rts