diff options
-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: ``` |