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.

9 lines
255B

  1. : WIPE BLK( 1024 0 FILL BLK!! ;
  2. : WIPED? ( -- f )
  3. 1 ( f ) BLK) BLK( DO
  4. I C@ IF DROP 0 ( f ) LEAVE THEN LOOP ;
  5. : COPY ( src dst -- )
  6. FLUSH SWAP BLK@ BLK> ! BLK! ;
  7. : FREEBLKS? ( b1 b2 -- )
  8. 1+ SWAP DO I BLK@ WIPED? IF I . SPC THEN LOOP ;