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
710B

  1. (cont.)
  2. 0x2b: doesWord. This word is created by "DOES>" and is followed
  3. by a 2-byte value as well as the adress where "DOES>" was
  4. compiled. At that address is an atom list exactly like in a
  5. compiled word. Upon execution, after having pushed its cell
  6. addr to PSP, it execute its reference exactly like a
  7. compiledWord.
  8. 0x20: numberWord. No word is actually compiled with this
  9. routine, but atoms are. Atoms with a reference to the number
  10. words routine are followed, *in the atom list*, of a 2-byte
  11. number. Upon execution, that number is fetched and IP is
  12. avdanced by an extra 2 bytes.
  13. 0x24: addrWord. Exactly like a numberWord, except that it is
  14. treated differently by meta-tools. (cont.)