Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
718B

  1. Glossary
  2. Stack notation: "<stack before> -- <stack after>". Rightmost is
  3. top of stack (TOS). For example, in "a b -- c d", b is TOS
  4. before, d is TOS after. "R:" means that the Return Stack is
  5. modified. "I:" prefix means "IMMEDIATE", that is, that this
  6. stack transformation is made at compile time.
  7. Word references (wordref): When we say we have a "word
  8. reference", it's a pointer to a word's *code link*. For example,
  9. the address that "' DUP" puts on the stack is a wordref, that
  10. is, a reference to the code link of the word DUP.
  11. PF: Parameter field. The area following the code link of a
  12. word. For example, "' H@ 1+" points to the PF of the word H@.
  13. (cont.)