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