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.)