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.

17 lines
390B

  1. : LOAD+ BLK> @ + LOAD ;
  2. ( b1 b2 -- )
  3. : LOADR 1+ SWAP DO I DUP . NL LOAD LOOP ;
  4. : LOADR+ BLK> @ + SWAP BLK> @ + SWAP LOADR ;
  5. ( Now, adev stuff )
  6. SYSVARS 0x3e + :** A@
  7. SYSVARS 0x40 + :** A!
  8. SYSVARS 0x42 + :** A,
  9. ( src dst u -- )
  10. : AMOVE
  11. ( u ) 0 DO
  12. SWAP DUP I + A@ ( dst src x )
  13. ROT TUCK I + ( src dst x dst )
  14. A! ( src dst )
  15. LOOP 2DROP ;