1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 05:41:34 +00:00
C02/apple1/chrset.c02

25 lines
323 B
Plaintext
Raw Permalink 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;
main:
i = $20;
loop:
echo(i);
i++;
if (i & $0F == 0) echo($0D);
if (i < $60) goto loop;
echo($0D);
goto exit;