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.8KB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. ## See it in action
  23. Michael Schierl has put together [a set of emulators running in the browser that
  24. run Collapse OS in different contexts][jsemul].
  25. Using those while following along with the [User Guide](doc/) is your quickest
  26. path to giving Collapse OS a try.
  27. ## Documentation
  28. Usage documentation is in-system. Run `0 LIST` for an introduction. You can
  29. also open `blk/000` in a modern text editor.
  30. See `/emul/README.md` for getting an emulated system running.
  31. ## Organisation of this repository
  32. * `forth`: Forth is slowly taking over this project (see issue #4). It comes
  33. from this folder.
  34. * `recipes`: collection of recipes that assemble parts together on a specific
  35. machine.
  36. * `blk`: Collapse OS filesystem's content. See `000` for intro.
  37. * `doc`: User guide for when you've successfully installed Collapse OS.
  38. * `tools`: Tools for working with Collapse OS from "modern" environments. For
  39. example, tools for facilitating data upload to a Collapse OS machine
  40. through a serial port.
  41. * `emul`: Emulated applications.
  42. * `tests`: Automated test suite for the whole project.
  43. ## Status
  44. The project unfinished but is progressing well! See [Collapse OS' website][web]
  45. for more information.
  46. ## Discussion
  47. For a general discussion of Collapse OS and the ecosystem of technologies and ideas that may develop around it refer to [r/collapseos][discussion]
  48. A more traditional [mailing list][listserv] and IRC (#collapseos on freenode) channels are also maintained.
  49. [libz80]: https://github.com/ggambetta/libz80
  50. [web]: https://collapseos.org
  51. [jsemul]: https://schierlm.github.io/CollapseOS-Web-Emulator/
  52. [discussion]: https://www.reddit.com/r/collapseos
  53. [listserv]: http://lists.sonic.net/mailman/listinfo/collapseos
  54. [forth-issue]: https://github.com/hsoft/collapseos/issues/4