collapseos/blk/376

11 lines
272 B
Plaintext
Raw Normal View History

( n -- Fetches block n and write it to BLK( )
2020-05-15 04:49:16 +10:00
: BLK@* 0x34 RAM+ ;
( n -- Write back BLK( to storage at block n )
2020-05-15 04:49:16 +10:00
: BLK!* 0x36 RAM+ ;
( Current blk pointer in ( )
2020-05-15 04:49:16 +10:00
: BLK> 0x38 RAM+ ;
( Whether buffer is dirty )
2020-05-15 04:49:16 +10:00
: BLKDTY 0x3a RAM+ ;
: BLK( 0x3c RAM+ @ ;
: BLK) BLK( 1024 + ;