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

  1. Dictionary
  2. A dictionary entry has this structure:
  3. - Xb name. Arbitrary long number of character (but can't be
  4. bigger than input buffer, of course). not null-terminated
  5. - 2b prev offset
  6. - 1b size + IMMEDIATE flag
  7. - 1b code pointer (always jumps in the <0x100 range)
  8. - Parameter field (PF)
  9. The prev offset is the number of bytes between the prev field
  10. and the previous word's code pointer.
  11. The size + flag indicate the size of the name field, with the
  12. 7th bit being the IMMEDIATE flag. (cont.)