1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 21:41:31 +00:00
C02/test/echohex.c02

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