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.

11 lines
272B

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