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
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Collapse OS
  2. *Bootstrap post-collapse technology*
  3. Collapse OS is a Forth operating system and a collection of tools and
  4. documentation with a single purpose: preserve the ability to program micro-
  5. controllers through civilizational collapse.
  6. It it designed to:
  7. 1. Run on minimal and improvised machines.
  8. 2. Interface through improvised means (serial, keyboard, display).
  9. 3. Edit text files.
  10. 4. Compile assembler source files for a wide range of MCUs and CPUs.
  11. 5. Read and write from a wide range of storage devices.
  12. 6. Assemble itself and deploy to another machine.
  13. Additionally, the goal of this project is to be as self-contained as possible.
  14. With a copy of this project, a capable and creative person should be able to
  15. manage to build and install Collapse OS without external resources (i.e.
  16. internet) on a machine of her design, built from scavenged parts with low-tech
  17. tools.
  18. ## Getting started
  19. Documentation is in text files in `doc/`. Begin with `intro.txt`.
  20. Collapse OS can run on any POSIX platform and builds easily.
  21. See `/cvm/README.md` for instructions.
  22. Alternatively, there's also [Michael Schierl's JS Collapse OS emulator][jsemul]
  23. which is awesome and allows you to run Collapse OS from your browser, but it
  24. isn't always up to date. The "Javascript Forth" version is especially awesome:
  25. it's not a z80 emulator, but a *javascript port of Collapse OS*!
  26. ## Organisation of this repository
  27. * `blk`: Collapse OS filesystem's content. That's actually where Collapse OS'
  28. source code is located. Everything else is peripheral.
  29. * `cvm`: A C implementation of Collapse OS, allowing it to run natively on any
  30. POSIX platform.
  31. * `doc`: Documentation.
  32. * `arch`: collection of makefiles that assemble Collapse OS on different
  33. machines.
  34. * `tools`: Tools for working with Collapse OS from "modern" environments. For
  35. example, tools for facilitating data upload to a Collapse OS machine
  36. through a serial port.
  37. * `emul`: Tools for running Collapse OS in an emulated environment.
  38. * `tests`: Automated test suite for the whole project.
  39. ## Status
  40. The project unfinished but is progressing well! See [Collapse OS' website][web]
  41. for more information.
  42. ## Looking for the assembler version?
  43. The Forth-based Collapse OS is the second incarnation of the concept. The first
  44. one was entirely written in z80 assembly. If you're interested in that
  45. incarnation, checkout the `z80asm` branch.
  46. [web]: https://collapseos.org
  47. [jsemul]: https://schierlm.github.io/CollapseOS-Web-Emulator/