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.

16 lines
282B

  1. : RAM+ [ RAMSTART LITN ] + ;
  2. : BIN+ [ BIN( @ LITN ] + ;
  3. : HERE 0x04 RAM+ ;
  4. : CURRENT* 0x51 RAM+ ;
  5. : CURRENT CURRENT* @ ;
  6. ( w -- a f )
  7. : (find) CURRENT @ SWAP _find ;
  8. : QUIT
  9. (resRS)
  10. 0 0x08 RAM+ ! ( 08 == C<* override )
  11. LIT< INTERPRET (find) DROP EXECUTE
  12. ;
  13. 1 19 LOADR+