mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-05 12:06:10 +00:00
29 lines
371 B
Plaintext
29 lines
371 B
Plaintext
/******************************************
|
|
* CHRSET - Display Apple 1 Character Set *
|
|
******************************************/
|
|
|
|
#include <apple1.h>
|
|
#include <apple1.asm>
|
|
|
|
byte i, j;
|
|
|
|
main:
|
|
i = $20;
|
|
j = 0;
|
|
loop:
|
|
echo(i + j);
|
|
j = j + 8;
|
|
if (j < 64) goto loop;
|
|
echo($0D);
|
|
j = 0;
|
|
i = i + 8;
|
|
if (i<96) goto loop;
|
|
echo($0D);
|
|
goto exit;
|
|
|
|
|
|
|
|
|
|
|
|
|