1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-10 00:28:59 +00:00
SixtyPical/eg/call.60p

19 lines
180 B
Plaintext
Raw Normal View History

routine chrout
inputs a
trashes a
@ 65490
routine print
trashes a, z, n
{
ld a, 65
call chrout
}
routine main
trashes a, z, n
{
call print
call print
}