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

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