about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-14 21:14:10 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-03-14 21:14:10 -0700
commit43e8194435e3e32c46b6edcd220356e8734f01ce (patch)
tree0aaf856b28ea0056dccd0cd36f9ad09f298865af
parent6525ccc8ec06cad36ca277dcc6cf93d50ef73744 (diff)
downloadmu-43e8194435e3e32c46b6edcd220356e8734f01ce.tar.gz
.
-rw-r--r--ex1.subx4
-rw-r--r--ex2.hex3
-rw-r--r--ex2.mu3
-rw-r--r--ex2.subx3
4 files changed, 3 insertions, 10 deletions
diff --git a/ex1.subx b/ex1.subx
index 502d8c4a..47612645 100644
--- a/ex1.subx
+++ b/ex1.subx
@@ -13,6 +13,8 @@
 == code
 
 main:
-  e9/jump main/disp32
+  {
+    eb/jump loop/disp8
+  }
 
 # vim:ft=subx
diff --git a/ex2.hex b/ex2.hex
index fb9cb971..6447b462 100644
--- a/ex2.hex
+++ b/ex2.hex
@@ -9,9 +9,6 @@
 #   qemu-system-i386 disk.img
 # Or:
 #   bochs -f baremetal/boot.bochsrc  # boot.bochsrc loads disk.img
-#
-# Expected output:
-#   html/baremetal.png
 
 # main:  (address 0x9400)
 
diff --git a/ex2.mu b/ex2.mu
index b1eafcf3..bfced514 100644
--- a/ex2.mu
+++ b/ex2.mu
@@ -6,9 +6,6 @@
 #   qemu-system-i386 disk.img
 # Or:
 #   bochs -f baremetal/boot.bochsrc               # boot.bochsrc loads disk.img
-#
-# Expected output:
-#   html/baremetal.png
 
 fn main {
   var y/eax: int <- copy 0
diff --git a/ex2.subx b/ex2.subx
index 277c2aad..8ce467bd 100644
--- a/ex2.subx
+++ b/ex2.subx
@@ -6,9 +6,6 @@
 #   qemu-system-i386 disk.img
 # Or:
 #   bochs -f baremetal/boot.bochsrc  # boot.bochsrc loads disk.img
-#
-# Expected output:
-#   html/baremetal.png
 
 == code