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

17 行
585B

  1. On a bare system (only boot+icore), this sequence will result
  2. in (c<) reading characters from memory starting from CURRENT
  3. (this is why we put CURRENT in BOOT C< PTR, it tracks current
  4. pos ).
  5. This means that you can put initialization code in source form
  6. right into your binary, right after your last compiled dict
  7. entry and it's going to be executed as such until you set a new
  8. (c<).
  9. Note that there is no EMIT in a bare system. You have to take
  10. care of supplying one before your load core.fs and its higher
  11. levels.
  12. (cont.)