Mirror of CollapseOS
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
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.)