Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
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.)