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

19 lines
223 B
Plaintext
Raw Normal View History

2018-03-03 18:26:47 +00:00
/* C02 Apple II Test Program */
#include <appl2std.h02>
char c;
main:
loop:
c = plkey();
if (!c) goto loop;
newlin();
prbyte(c);
prchr(' ');
echo(c);
prchr(' ');
prchr(c);
goto loop;