1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-16 04:38:45 +10:00
collapseos/blk/046
Virgil Dupras 79ce88c12c tools: add blkunpack
and remove cfspack, which will not ever be used again.
2020-04-16 19:44:17 -04:00

17 lines
247 B
Plaintext

Parameter Stack
DROP a --
DUP a -- a a
OVER a b -- a b a
ROT a b c -- b c a
SWAP a b -- b a
2DROP a a --
2DUP a b -- a b a b
2OVER a b c d -- a b c d a b
2SWAP a b c d -- c d a b