1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-10-01 10:54:56 +00:00
C02/test/echohex.c02

18 lines
462 B
Plaintext
Raw Normal View History

/*******************************************************
* ECHOHEX - Test/Demo program for C02 Standard Header *
* Displays ASCII Code of Typed Keys to Screen *
* ESCAPE/STOP key Ends Program *
*******************************************************/
//Specify System Header using -H option
char key; //Key value
main:
while() {
key = getchr();
prbyte(key);
putchr(' ');
if (key==#ESCKEY) goto exit;
}