Mirror of CollapseOS
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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