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