mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-19 12:32:08 +00:00
13 lines
162 B
Plaintext
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;
|