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.

16 lines
545B

  1. Collapse OS file system
  2. This is a Forth-style filesystems which is very simple. It is a
  3. list of 1024 bytes block, organised in 16 lines of 64 columns
  4. each. You refer to blocks by numbers. You show them with LIST.
  5. You interpret them with LOAD.
  6. Conventions: When you see "(cont.)" at the bottom right of a
  7. block, it means that the next block continues the same kind of
  8. contents. This of course only work for informational text.
  9. Block numbers are abbreviated with prefix "B". "BX" means
  10. "block X".
  11. The master index of this filesystem is at B1.