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.

14 lines
207B

  1. : BLK! ( -- )
  2. BLK> @ BLK!* @ EXECUTE
  3. 0 BLKDTY !
  4. ;
  5. : FLUSH BLKDTY @ IF BLK! THEN ;
  6. : BLK@ ( n -- )
  7. FLUSH
  8. DUP BLK> @ = IF DROP EXIT THEN
  9. DUP BLK> ! BLK@* @ EXECUTE
  10. ;
  11. : BLK!! 1 BLKDTY ! ;