1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 06:29:32 +00:00
C02/apple1/echo.c02

17 lines
335 B
Plaintext
Raw Permalink Normal View History

2018-01-28 19:52:58 +00:00
/***************************************
* ECHO - Demo program for the Apple 1 *
* Echos typed keys to display *
* ESC key aborts to monitor *
***************************************/
#include <apple1.h02>
char key; //Key value
main:
key = getkey();
if (key == 155) goto exit;
echo(key);
goto main;