Mirror of CollapseOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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