2000-05-28 13:40:48 +00:00
|
|
|
;
|
2003-12-20 23:13:26 +00:00
|
|
|
; Ullrich von Bassewitz, 2003-12-20
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; int kbhit (void);
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _kbhit
|
2003-12-20 23:13:26 +00:00
|
|
|
|
|
|
|
.importzp sysp0
|
2000-05-28 13:40:48 +00:00
|
|
|
.import return0, return1
|
|
|
|
|
2002-05-26 09:08:52 +00:00
|
|
|
.include "cbm610.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.proc _kbhit
|
2003-12-20 23:13:26 +00:00
|
|
|
ldx IndReg
|
|
|
|
lda #$0F
|
|
|
|
sta IndReg
|
|
|
|
ldy #$D1 ; Number of keys in kbd buffer
|
|
|
|
lda (sysp0),y
|
|
|
|
stx IndReg
|
2000-05-28 13:40:48 +00:00
|
|
|
bne L1
|
|
|
|
jmp return0
|
|
|
|
L1: jmp return1
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|