From 8a66b599401904b7fb01e747469c31d2a97928d7 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 22 Apr 2021 09:16:48 -0700 Subject: [PATCH] faster emulation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks Maxwell Bernstein for pointing this out 🤦‍♂️ --- shell/README.md | 4 ++-- 1 file 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: ```