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
192B

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