Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
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 + ;