Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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