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.

13 lines
624B

  1. (cont.) The code pointer point to "word routines". These
  2. routines expect to be called with IY pointing to the PF. They
  3. themselves are expected to end by jumping to the address at
  4. (IP). They will usually do so with "jp next". They are 1b
  5. because all those routines live in the first 0x100 bytes of
  6. the boot binary. The 0 MSB is assumed.
  7. That's for "regular" words (words that are part of the dict
  8. chain). There are also "special words", for example NUMBER,
  9. LIT, FBR, that have a slightly different structure. They're
  10. also a pointer to an executable, but as for the other fields,
  11. the only one they have is the "flags" field.