1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-11-22 17:32:01 +00:00
SixtyPical/eg/rudiments/buffer.60p

16 lines
230 B
Plaintext
Raw Normal View History

buffer[2048] buf
pointer ptr @ 254
byte foo
2018-09-09 14:03:43 +00:00
define main routine
inputs buf
outputs buf, y, foo
trashes a, z, n, ptr
{
ld y, 0
copy ^buf, ptr
2017-11-24 16:56:55 +00:00
copy 123, [ptr] + y
copy [ptr] + y, foo
copy foo, [ptr] + y
}