about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-12-30 08:32:52 -0800
committerKartik Agaram <vc@akkartik.com>2020-12-30 08:32:52 -0800
commitd0bc0d2673c41da7b5007766a7015df99020c353 (patch)
treee5d8897bf5f83d2d7d4d3dfe930f0ffbc2f40979 /README.md
parentce667598a26b743662800c9e10270ce029e5634c (diff)
downloadmu-d0bc0d2673c41da7b5007766a7015df99020c353.tar.gz
7475
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 6d241c68..7191d1ce 100644
--- a/README.md
+++ b/README.md
@@ -121,6 +121,13 @@ keyboard directly without an OS. You can make things like this with them:
 
 <img alt='screenshot of a Mu program running without any intervening Operating System' src='html/baremetal.png'>
 
+To reproduce it:
+
+```sh
+$ ./translate_mu_baremetal baremetal/ex2.mu  # emit disk.img
+$ qemu-system-i386 disk.img
+```
+
 ## Syntax
 
 The entire stack shares certain properties and conventions. Programs consist
@@ -135,13 +142,6 @@ Here's an example program in Mu:
 
 <img alt='ex2.mu' src='html/ex2.mu.png' width='400px'>
 
-To reproduce it:
-
-```sh
-$ ./translate_mu_baremetal baremetal/ex2.mu  # emit disk.img
-$ qemu-system-i386 disk.img
-```
-
 [More details on Mu syntax &rarr;](mu.md)
 
 Here's an example program in SubX: