mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 17:32:01 +00:00
16 lines
223 B
Plaintext
16 lines
223 B
Plaintext
buffer[2048] buf
|
|
pointer ptr @ 254
|
|
byte foo
|
|
|
|
routine main
|
|
inputs buf
|
|
outputs buf, y, foo
|
|
trashes a, z, n, ptr
|
|
{
|
|
ld y, 0
|
|
copy ^buf, ptr
|
|
copy 123, [ptr] + y
|
|
copy [ptr] + y, foo
|
|
copy foo, [ptr] + y
|
|
}
|