Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

5 年前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 `master` branch of the project, which is the
  19. first incarnation of Collapse OS, written in z80 assembler. A
  20. [Forth reboot][forth-issue] is being worked on and will soon replace this
  21. branch. You can look at it on the `forth` 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. ## Organisation of this repository
  28. * `kernel`: Pieces of code to be assembled by the user into a kernel.
  29. * `apps`: Pieces of code to be assembled into "userspace" application.
  30. * `recipes`: collection of recipes that assemble parts together on a specific
  31. machine.
  32. * `doc`: User guide for when you've successfully installed Collapse OS.
  33. * `tools`: Tools for working with Collapse OS from "modern" environments. For
  34. example, tools for facilitating data upload to a Collapse OS machine
  35. through a serial port.
  36. * `emul`: Emulated applications, such as zasm and the shell.
  37. * `tests`: Automated test suite for the whole project.
  38. * `forth`: Forth is slowly taking over this project (see issue #4). It comes
  39. from this folder.
  40. ## Status
  41. The project unfinished but is progressing well! See [Collapse OS' website][web]
  42. for more information.
  43. ## Discussion
  44. For a general discussion of Collapse OS and the ecosystem of technologies and ideas that may develop around it refer to [r/collapseos][discussion]
  45. A more traditional [mailing list][listserv] and IRC (#collapseos on freenode) channels are also maintained.
  46. [web]: https://collapseos.org
  47. [jsemul]: https://schierlm.github.io/CollapseOS-Web-Emulator/
  48. [discussion]: https://www.reddit.com/r/collapseos
  49. [listserv]: http://lists.sonic.net/mailman/listinfo/collapseos
  50. [forth-issue]: https://github.com/hsoft/collapseos/issues/4