1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-07-06 12:28:57 +00:00
C02/apple2/a2test.c02

13 lines
162 B
Plaintext
Raw Normal View History

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