1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-01 18:29:34 +00:00
SixtyPical/eg/memloc.p60

25 lines
251 B
Plaintext
Raw Normal View History

byte foo
routine chrout
inputs a
trashes a
@ 65490
routine print
inputs foo
trashes a, z, n
{
ld a, foo
call chrout
}
routine main
trashes a, y, z, n, foo
{
ld y, 65
st y, foo
call print
inc foo
call print
}