2001-10-27 17:13:22 +00:00
|
|
|
;
|
|
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
|
|
;
|
|
|
|
; 27.10.2001
|
|
|
|
|
|
|
|
; unsigned char kbhit (void);
|
|
|
|
|
|
|
|
.export _kbhit
|
|
|
|
|
2012-01-31 20:49:58 +00:00
|
|
|
.include "geossym.inc"
|
2001-10-27 17:13:22 +00:00
|
|
|
|
2012-02-08 15:23:45 +00:00
|
|
|
_kbhit:
|
|
|
|
ldx #0 ; High byte of result
|
|
|
|
lda pressFlag
|
|
|
|
rol ; Bit 7 is new key flag
|
|
|
|
txa ; A = 0
|
|
|
|
rol
|
|
|
|
rts
|