1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-10 15:28:56 +00:00
SixtyPical/eg/vector.60p
2018-02-07 13:43:41 +00:00

32 lines
345 B
Plaintext

vector routine
trashes a, z, n
print
routine chrout
inputs a
trashes a
@ 65490
routine printa
trashes a, z, n
{
ld a, 65
call chrout
}
routine printb
trashes a, z, n
{
ld a, 66
call chrout
}
routine main
trashes print, a, z, n
{
copy printa, print
call print
copy printb, print
call print
}