2003-04-13 22:12:09 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-04-13
|
|
|
|
;
|
|
|
|
; int kbhit (void);
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export _kbhit
|
2003-04-13 22:12:09 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.include "atmos.inc"
|
2003-04-13 22:12:09 +00:00
|
|
|
|
|
|
|
_kbhit:
|
|
|
|
ldx #$00 ; Load high byte
|
|
|
|
lda KEYBUF ; Flag for new char in bit 7
|
|
|
|
asl a ; Shift bit 7 into carry
|
|
|
|
txa ; A = 0
|
|
|
|
rol a ; Move old bit 7 into bit 0
|
|
|
|
rts
|
|
|
|
|