1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 06:29:32 +00:00
C02/apple1/chrsetv.c02

29 lines
371 B
Plaintext
Raw Normal View History

2018-01-28 19:52:58 +00:00
/******************************************
* 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;