diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-04-16 20:26:42 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-04-16 20:26:56 -0700 |
commit | f774677854ca2f0affcccb362fb2c6b1c407df44 (patch) | |
tree | b4cc48bdbed320caeac2cde54fcd3edeaf265040 /shell | |
parent | f66de6139270475828f1dffd1985d68325bef34d (diff) | |
download | mu-f774677854ca2f0affcccb362fb2c6b1c407df44.tar.gz |
.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/README.md | 6 |
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: ``` |