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
506B

  1. Initialization sequence
  2. On boot, we jump to the "main" routine in B289 which does
  3. very few things.
  4. 1. Set SP to PS_ADDR and IX to RS_ADDR
  5. 2. Sets HERE to SYSVARS+0x80.
  6. 3. Sets CURRENT to value of LATEST field in stable ABI.
  7. 4. Execute the word referred to by 0x04 (BOOT) in stable ABI.
  8. In a normal system, BOOT is in core words at B396 and does a
  9. few things:
  10. 1. Initialize all overrides to 0.
  11. 2. Write LATEST in BOOT C< PTR ( see below )
  12. 3. Set "C<*", the word that C< calls to (boot<). (cont.)