1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-29 05:29:34 +00:00
SixtyPical/eg/call.60p
2015-10-17 18:11:23 +01:00

19 lines
180 B
Plaintext

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
}