<sect1>conio implementation<p>
-The conio implementation is complete except for the kbhit() function. A
-call to cgetc() always blocks until a character is entered.
+The conio implementation is complete except for a working kbhit() function.
+kbhit() currently returns true unconditionally.
<sect1>stdio implementation<p>
--- /dev/null
+;
+; int kbhit (void);
+;
+; Currently a dummy function that returns always true
+
+ .export _kbhit
+
+_kbhit:
+ lda #$01 ; load low byte with true value
+ ldx #$00 ; load high byte
+ rts