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-16 20:26:42 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-16 20:26:56 -0700
commitf774677854ca2f0affcccb362fb2c6b1c407df44 (patch)
treeb4cc48bdbed320caeac2cde54fcd3edeaf265040 /shell/README.md
parentf66de6139270475828f1dffd1985d68325bef34d (diff)
downloadmu-f774677854ca2f0affcccb362fb2c6b1c407df44.tar.gz
.
Diffstat (limited to 'shell/README.md')
-rw-r--r--shell/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/README.md b/shell/README.md
index 76ecccea..d6072bf8 100644
--- a/shell/README.md
+++ b/shell/README.md
@@ -4,12 +4,12 @@ Currently runs a tiny subset of Lisp. Steps to run it from the top-level:
 
 1. Build it:
 ```sh
-$ ./translate shell/*.mu      # generates disk.img
+$ ./translate shell/*.mu      # generates code.img
 ```
 
 2. Run it:
 ```sh
-$ qemu-system-i386 disk.img
+$ qemu-system-i386 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 disk.img -hdb data.img
+$ qemu-system-i386 -hda code.img -hdb data.img
 ```
 or:
 ```