Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
289B

  1. S0 Returns address of PSP TOS. When PSP is empty,
  2. 'S == S0
  3. PICK Pick nth item from stack. "0 PICK" = DUP,
  4. "1 PICK" = OVER.
  5. ROLL Rotate PSP over n items. "1 ROLL" = SWAP,
  6. "2 ROLL" = ROT. 0 is noop.