1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 06:29:32 +00:00
C02/apple2/a2test.c02
2018-02-14 23:42:10 -05:00

13 lines
162 B
Plaintext

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