diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-04-23 21:49:28 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-04-23 21:49:28 -0700 |
commit | b7224ab44e73999412feccbce2d9494f8f689383 (patch) | |
tree | e25a57db7cc5e2a445371f88749bd4ebb46bae88 /shell | |
parent | fa8d337d90780c61bc63927cf1c3b2b208f1edc7 (diff) | |
download | mu-b7224ab44e73999412feccbce2d9494f8f689383.tar.gz |
.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/README.md | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/shell/README.md b/shell/README.md index 511a7348..37dd06b9 100644 --- a/shell/README.md +++ b/shell/README.md @@ -9,7 +9,7 @@ $ ./translate shell/*.mu # generates code.img 2. Run it: ```sh -$ qemu-system-i386 -enable-kvm code.img +$ qemu-system-i386 code.img ``` or: ``` @@ -34,7 +34,7 @@ $ cat iter.limg |dd of=data.img conv=notrunc Now run with both code and data disks: ```sh -$ qemu-system-i386 -enable-kvm -hda code.img -hdb data.img +$ qemu-system-i386 -hda code.img -hdb data.img ``` or: ``` @@ -47,6 +47,20 @@ a demo.](https://archive.org/details/akkartik-2min-2021-02-24) The bottom of the screen shows context-dependent keyboard shortcuts (there's no mouse in the Mu computer at the moment). +*Improvements* + +If your Qemu installation supports them, one of these commandline arguments +may speed up emulation: + +- `-enable-kvm` +- `-accel ___` (run with `-accel help` for a list of available options) + +As a complete example, here's the command I typically use on Linux: + +``` +$ qemu-system-i386 -enable-kvm -hda code.img -hdb data.img +``` + *Known issues* * There's no way to save to disk. |