1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 21:41:31 +00:00
C02/py65/test65.c02
2019-03-22 19:32:08 -04:00

20 lines
563 B
Plaintext

/**********************************************
* TEST65 - Test Library py65.h02 for py65mon *
**********************************************/
#include <py65.h02>
char c; //Character
char key; //Key read from keyboard
main:
key = getkey(); //Read key from console
if (key = #ESCKEY) //If Escape was pressed
goto exit; // return to monitor
prbyte(key); //Print ASCII value of key
prchr(' '); // and a space
prchr(key); //Print key character
prchr(' '); // and another space
goto main; //Loop