mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 17:29:50 +00:00
18 lines
230 B
ArmAsm
18 lines
230 B
ArmAsm
;
|
|
; Jede, 2021-02-01
|
|
;
|
|
; int kbhit (void);
|
|
;
|
|
|
|
.export _kbhit
|
|
|
|
.include "telestrat.inc"
|
|
|
|
_kbhit:
|
|
BRK_TELEMON XRD0
|
|
ldx #$00
|
|
txa
|
|
rol
|
|
eor #$01
|
|
rts
|