Files
cc65/kbhit.c
Stephan Mühlstrasser 8704d42005 Remove obsolete comment
2019-10-15 09:38:23 -04:00

20 lines
220 B
C

/*
* Keyboard test program.
*/
#include <conio.h>
int main(void)
{
unsigned char c;
clrscr();
cputs(" Keyboard Test\r\n");
while (1) {
c = cgetc();
cputc(c);
}
return 0;
}