mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 03:30:55 +11:00
f6ded7712e
This is the first commit I do entirely in VE. It's a habit I'm planning on taking as it helps a lot to find usability issues.
17 lines
639 B
Plaintext
17 lines
639 B
Plaintext
Extra words
|
|
|
|
The Core words (B350) section contains the absolute minimum
|
|
needed to get a usable Forth interpreter with input buffer and
|
|
disk blocks access running. The goal here is to minimize the
|
|
binary size of a minimum Collapse OS install.
|
|
|
|
Extra words are words you will most likely want because they
|
|
are generally useful. They are so useful that they are part
|
|
of the Dictionary (B30).
|
|
|
|
Some programs need them, so they will automatically LOAD them.
|
|
Because more than one program can use the same extra words,
|
|
conditional loaders are recommended. If you want to load all
|
|
words do "152 LOAD" which conditionally loads all extra words.
|
|
|