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.

29 lines
979B

  1. # Frequently asked questions
  2. # What is the easiest way to run Collapse OS on a modern
  3. computer?
  4. Run the C VM in folder "/cvm". Run "make", then "./forth".
  5. See doc/usage.txt for the rest.
  6. # How do I use the different emulators?
  7. Ah, you've noticed that /emul contains quite a few emulators.
  8. Code in this folder only build emulators, not the binary to run
  9. under it. It's the /arch folder that contains the makefiles to
  10. build Collapse OS binaries to run under those.
  11. When a binary built in /arch has a corresponding emulator, the
  12. makefile has a "emul" target that you can use.
  13. For example, "cd arch/z80/rc2014 && make emul" builds RC2014's
  14. Collapse OS, the RC2014 emulator and then invokes the emulator.
  15. # How do I fill my SD card with Collapse OS' FS?
  16. Very easy. You see that "/cvm/blkfs" file? You dump it to your
  17. raw device. For example, if the device you get when you insert
  18. your SD card is "/dev/sdb", then you type "cat emul/blkfs | sudo
  19. tee /dev/sdb > /dev/null".