mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-04 22:05:21 +00:00
17 lines
245 B
Plaintext
17 lines
245 B
Plaintext
word one
|
|
word table[256] many
|
|
|
|
routine main
|
|
inputs one, many
|
|
outputs one, many
|
|
trashes a, x, y, n, z
|
|
{
|
|
ld x, 0
|
|
ld y, 0
|
|
copy 777, one
|
|
copy one, many + x
|
|
copy one, many + y
|
|
copy many + x, one
|
|
copy many + y, one
|
|
}
|