1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 05:41:34 +00:00
C02/test/echohex.c02
2018-08-19 18:24:02 -04:00

18 lines
460 B
Plaintext

/*******************************************************
* 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 = rdkey();
prbyte(key);
prchr(' ');
if (key==#ESCKEY) goto exit;
}