Mirror of CollapseOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
516B

  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 RAMEND (RAMSTART+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.)