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

12345678910111213141516
  1. Boot words (B305)
  2. Then come the implementation of core Forth words in native
  3. assembly. Performance is not Collapse OS' primary design goal,
  4. so we try to keep this section to a minimum: we much prefer
  5. to implement our words in Forth.
  6. However, some words are in this section for performance
  7. reasons. Sometimes, the gain is too great to pass up.
  8. Core words (low) (B350)
  9. Then comes the part where we begin defining words in Forth.
  10. Core words are designed to be cross-compiled (B260), from a
  11. full Forth interpreter. This means that it has access to more
  12. than boot words. This comes with tricky limitations. (cont.)