mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
21 lines
483 B
Plaintext
21 lines
483 B
Plaintext
/***************************************
|
|
* ECHO - Demo C02 program for Apple 1 *
|
|
* using minimal header file *
|
|
* Echos typed keys to display *
|
|
* ESC key aborts to monitor *
|
|
***************************************/
|
|
|
|
#include "a1min.h02"
|
|
|
|
char key; //Key value
|
|
|
|
main:
|
|
while() {
|
|
key = rdkey(); //Read keyboard
|
|
if (key == $9B) //If ESCAPE pressed
|
|
break; //exit loop
|
|
echo(key); //Display character on screen
|
|
}
|
|
goto exit;
|
|
|