1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-28 19:29:39 +00:00
C02/py65/test65.c02
2018-02-13 19:52:14 -05:00

20 lines
559 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 = $1B) //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