about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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