Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
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.)