about summary refs log tree commit diff stats
path: root/shell/README.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-22 09:16:48 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-22 09:16:48 -0700
commit8a66b599401904b7fb01e747469c31d2a97928d7 (patch)
tree438ba47b910658d920731b40101d61956913d00e /shell/README.md
parent7a7191cc3e33ca29996583ae07f6543678c62ee7 (diff)
downloadmu-8a66b599401904b7fb01e747469c31d2a97928d7.tar.gz
faster emulation
Thanks Maxwell Bernstein for pointing this out 🤦‍♂️
Diffstat (limited to 'shell/README.md')
-rw-r--r--shell/README.md4
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:
 ```