1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

Remove obsolete comment

This commit is contained in:
Stephan Mühlstrasser 2019-09-03 10:04:30 +02:00 committed by greg-king5
parent eb2317d014
commit 8704d42005

19
kbhit.c Normal file
View File

@ -0,0 +1,19 @@
/*
* 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;
}