Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
520B

  1. : INTERPRET
  2. BEGIN
  3. WORD DUP C@ EOT? IF DROP EXIT THEN
  4. (find) NOT IF (parse) ELSE EXECUTE THEN
  5. C<? NOT IF (ok) THEN
  6. AGAIN ;
  7. ( Read from BOOT C< PTR and inc it. )
  8. : (boot<)
  9. ( 2e == BOOT C< PTR )
  10. 0x2e ( BOOT C< PTR ) RAM+ @ DUP C@ ( a c )
  11. SWAP 1 + 0x2e RAM+ ! ( c ) ;
  12. ( pre-comment for tight LOAD: The 0x08==I check after INTERPRET
  13. is to check whether we're restoring to "_", the word above.
  14. if yes, then we're in a nested load. Also, the 1 in 0x06 is
  15. to avoid tons of "ok" displays. )