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

  1. : BLKMEM+ 0x59 RAM+ @ + ;
  2. ( n -- Fetches block n and write it to BLK( )
  3. : BLK@* 0 BLKMEM+ ;
  4. ( n -- Write back BLK( to storage at block n )
  5. : BLK!* 2 BLKMEM+ ;
  6. ( Current blk pointer in ( )
  7. : BLK> 4 BLKMEM+ ;
  8. ( Whether buffer is dirty )
  9. : BLKDTY 6 BLKMEM+ ;
  10. : BLK( 8 BLKMEM+ ;
  11. : BLK) BLK( 1024 + ;