Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
617B

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