1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 05:41:34 +00:00
C02/apple2/a2test.c02
2018-02-17 13:52:13 -05:00

14 lines
166 B
Plaintext

/* C02 Apple II Test Program */
#include <appl2std.h02>
char i;
main:
for (i=32; i:+; i++) {
if (!i&31) newlin();
prchr(i);
}
goto exit;