about summary refs log tree commit diff stats
path: root/shell/README.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-04-23 21:36:48 -0700
committerKartik Agaram <vc@akkartik.com>2021-04-23 21:36:48 -0700
commitfa8d337d90780c61bc63927cf1c3b2b208f1edc7 (patch)
tree335a0ae69f46fd3d570a6a25bdc9dcbc3feecb29 /shell/README.md
parent59151049263ce58a8c80c26d188c0852bb285b82 (diff)
downloadmu-fa8d337d90780c61bc63927cf1c3b2b208f1edc7.tar.gz
shell: some example definitions
Diffstat (limited to 'shell/README.md')
-rw-r--r--shell/README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/README.md b/shell/README.md
index 3da63cf4..511a7348 100644
--- a/shell/README.md
+++ b/shell/README.md
@@ -26,6 +26,12 @@ Load an s-expression into it:
 $ echo '(+ 1 1)' |dd of=data.img conv=notrunc
 ```
 
+You can also try one of the files of definitions in this directory (`*.limg`).
+
+```sh
+$ cat iter.limg |dd of=data.img conv=notrunc
+```
+
 Now run with both code and data disks:
 ```sh
 $ qemu-system-i386 -enable-kvm -hda code.img -hdb data.img