Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
685B

  1. After we've loaded the high part of the core words, we're at
  2. the "wrapping up" part. We add what we call a "hook word" (an
  3. empty word with a single letter name) which doesn't cost us
  4. much and can be very useful if we need to augment the binary
  5. with more words, and at that point we have our future boot
  6. CURRENT, which PC yields. That is why we write it to the
  7. LATEST field of the stable ABI: This value will be used at
  8. boot.
  9. After the last word of the dictionary comes the "source init"
  10. part. The boot sequence is designed to interpret whatever comes
  11. after LATEST as Forth source, and this, until it reads ASCII
  12. EOT character (4). This is generally used for driver init.
  13. Good luck!