1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Remove source file that was only used for testing

This commit is contained in:
Stephan Mühlstrasser 2019-09-04 19:33:14 +02:00 committed by greg-king5
parent 8704d42005
commit 668273cdf5

19
kbhit.c
View File

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