Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
253B

  1. ( system c< simply reads source from binary, starting at
  2. LATEST. Convenient way to bootstrap a new system. )
  3. : (boot<)
  4. ( 2e == BOOT C< PTR )
  5. 0x2e RAM+ @ ( a )
  6. DUP C@ ( a c )
  7. SWAP 1 + ( c a+1 )
  8. 0x2e RAM+ ! ( c )
  9. ;