mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
21 lines
354 B
Plaintext
21 lines
354 B
Plaintext
/************************************
|
|
* TESTFILE - Test file.h02 Library *
|
|
************************************/
|
|
|
|
#include "include/vic20.h02"
|
|
#include <string.h02>
|
|
#include <stdio.h02>
|
|
|
|
char c; //Character
|
|
char key; //Key read from keyboard
|
|
|
|
main:
|
|
c = 32;
|
|
|
|
loop:
|
|
prchr(c);
|
|
c++;
|
|
if (c < 128) goto loop;
|
|
|
|
goto exit;
|