mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
19 lines
350 B
ArmAsm
19 lines
350 B
ArmAsm
;
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
;
|
|
; 27.10.2001
|
|
|
|
; unsigned char kbhit (void);
|
|
|
|
.export _kbhit
|
|
|
|
.include "geossym.inc"
|
|
|
|
_kbhit:
|
|
ldx #0 ; High byte of result
|
|
lda pressFlag
|
|
rol ; Bit 7 is new key flag
|
|
txa ; A = 0
|
|
rol
|
|
rts
|