mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-15 17:08:51 +00:00
14 lines
166 B
Plaintext
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;
|
|
|