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.

17 lines
730B

  1. Disk
  2. BLK> -- a Address of the current block variable.
  3. BLK( -- a Beginning addr of blk buf.
  4. BLK) -- a Ending addr of blk buf.
  5. COPY s d -- Copy contents of s block to d block.
  6. FLUSH -- Write current block to disk if dirty.
  7. FREEBLKS? a b -- List free blocks between blocks a and b.
  8. LIST n -- Prints the contents of the block n on screen
  9. in the form of 16 lines of 64 columns.
  10. LOAD n -- Interprets Forth code from block n
  11. LOAD+ n -- Relative load. Loads active block + n.
  12. LOADR n1 n2 -- Load block range between n1 and n2, inclusive.
  13. LOADR+ n1 n2 -- Relative ranged load.
  14. WIPE -- Empties current block
  15. WIPED? -- f Whether current block is empty