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

17 行
700B

  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
  9. example, the address that "' DUP" is a wordref, that is, a
  10. 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.)