Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
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.)