1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2025-02-16 14:30:33 +00:00
C02/apple2/a2echo.c02

19 lines
223 B
Plaintext
Raw Normal View History

2018-03-03 13:26:47 -05: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;