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.

README.md 2.5KB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Collapse OS
  2. *Bootstrap post-collapse technology*
  3. Collapse OS is a z80 kernel and a collection of programs, tools and
  4. documentation that allows you to assemble an OS that, when completed, will be
  5. able to:
  6. 1. Run on minimal and improvised machines.
  7. 2. Interface through improvised means (serial, keyboard, display).
  8. 3. Edit text files.
  9. 4. Compile assembler source files for a wide range of MCUs and CPUs.
  10. 5. Read and write from a wide range of storage devices.
  11. 6. Replicate itself.
  12. Additionally, the goal of this project is to be as self-contained as possible.
  13. With a copy of this project, a capable and creative person should be able to
  14. manage to build and install Collapse OS without external resources (i.e.
  15. internet) on a machine of her design, built from scavenged parts with low-tech
  16. tools.
  17. ## Forth reboot in process
  18. You are currently looking at the `forth` branch of the project, which is a
  19. Forth reboot of Collapse OS. You can see why I'm doing this in the [related
  20. github issue][forth-issue].
  21. Documentation is lacking, it's not ready yet, this is a WIP branch.
  22. ## Getting started
  23. Usage documentation is in-system, so access to documentation requires you to
  24. run Collapse OS. Fortunately, doing so in an emulator is easy.
  25. See `/emul/README.md` for getting an emulated system running.
  26. Then, run `0 LIST` for an introduction, follow instructions from there.
  27. ## Organisation of this repository
  28. * `blk`: Collapse OS filesystem's content. That's actually where Collapse OS'
  29. source code is located. Everything else is peripheral.
  30. * `recipes`: collection of recipes that assemble Collapse OS on a specific
  31. machine.
  32. * `tools`: Tools for working with Collapse OS from "modern" environments. For
  33. example, tools for facilitating data upload to a Collapse OS machine
  34. through a serial port.
  35. * `emul`: Tools for running Collapse OS in an emulated environment.
  36. * `tests`: Automated test suite for the whole project.
  37. ## Status
  38. The project unfinished but is progressing well! See [Collapse OS' website][web]
  39. for more information.
  40. ## Discussion
  41. For a general discussion of Collapse OS and the ecosystem of technologies and
  42. ideas that may develop around it refer to [r/collapseos][discussion]
  43. A more traditional [mailing list][listserv] and IRC (#collapseos on freenode)
  44. channels are also maintained.
  45. [web]: https://collapseos.org
  46. [discussion]: https://www.reddit.com/r/collapseos
  47. [listserv]: http://lists.sonic.net/mailman/listinfo/collapseos
  48. [forth-issue]: https://github.com/hsoft/collapseos/issues/4