Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
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.)