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

17 行
594B

  1. 5. Core words (high)
  2. Boot code (B280)
  3. This part contains core routines that underpins Forth fundamen-
  4. tal structures: dict navigation and search, PSP/RSP bounds
  5. checks, word types (atom, native, literals, "does type"), etc.
  6. It also of course does core initialization: set RSP/PSP, HERE
  7. CURRENT, then find BOOT and call it (see B89).
  8. It also contains what we call the "stable ABI" in its first
  9. 0x100 bytes. The beginning og the dict is intertwined in this
  10. layer because EXIT, (br), (?br) and (loop) are part of the
  11. stable ABI.
  12. (cont.)