Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
585B

  1. On a bare system (only boot+icore), this sequence will result
  2. in (c<) reading characters from memory starting from CURRENT
  3. (this is why we put CURRENT in BOOT C< PTR, it tracks current
  4. pos ).
  5. This means that you can put initialization code in source form
  6. right into your binary, right after your last compiled dict
  7. entry and it's going to be executed as such until you set a new
  8. (c<).
  9. Note that there is no EMIT in a bare system. You have to take
  10. care of supplying one before your load core.fs and its higher
  11. levels.
  12. (cont.)