1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-13 09:31:53 +00:00

18 lines
230 B
ArmAsm
Raw Normal View History

2021-02-01 17:53:07 +01: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 17:53:07 +01:00
rts