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.

17 lines
486B

  1. Parameter Stack
  2. DROP a --
  3. DUP a -- a a
  4. OVER a b -- a b a
  5. ROT a b c -- b c a
  6. SWAP a b -- b a
  7. 2DROP a a --
  8. 2DUP a b -- a b a b
  9. 2OVER a b c d -- a b c d a b
  10. 2SWAP a b c d -- c d a b
  11. 'S Returns current stack pointer, not counting the
  12. push it's making right now.
  13. S0 Returns address of PSP TOS. When PSP is empty,
  14. 'S == S0
  15. (cont.)