diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-04-22 09:16:48 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-04-22 09:16:48 -0700 |
commit | 8a66b599401904b7fb01e747469c31d2a97928d7 (patch) | |
tree | 438ba47b910658d920731b40101d61956913d00e /shell | |
parent | 7a7191cc3e33ca29996583ae07f6543678c62ee7 (diff) | |
download | mu-8a66b599401904b7fb01e747469c31d2a97928d7.tar.gz |
faster emulation
Thanks Maxwell Bernstein for pointing this out 🤦♂️
Diffstat (limited to 'shell')
-rw-r--r-- | shell/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/README.md b/shell/README.md index d6072bf8..3da63cf4 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 code.img +$ qemu-system-i386 -enable-kvm code.img ``` or: ``` @@ -28,7 +28,7 @@ $ echo '(+ 1 1)' |dd of=data.img conv=notrunc Now run with both code and data disks: ```sh -$ qemu-system-i386 -hda code.img -hdb data.img +$ qemu-system-i386 -enable-kvm -hda code.img -hdb data.img ``` or: ``` |