about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-12-29 20:50:11 -0800
committerKartik Agaram <vc@akkartik.com>2020-12-29 20:50:11 -0800
commit562476d7509a17f6155dc8bead6bd2565fde48cb (patch)
treeb4c415c9a7480414e0a7aaee1b8e3e17a7a54d01
parent6b11049d1367b10dac44627c7450b2238638cbca (diff)
downloadmu-562476d7509a17f6155dc8bead6bd2565fde48cb.tar.gz
7467
-rw-r--r--baremetal/ex2.hex3
-rw-r--r--baremetal/ex2.subx5
2 files changed, 7 insertions, 1 deletions
diff --git a/baremetal/ex2.hex b/baremetal/ex2.hex
index 46ff3a7a..52150b7f 100644
--- a/baremetal/ex2.hex
+++ b/baremetal/ex2.hex
@@ -9,6 +9,9 @@
 #   qemu-system-i386 disk.img
 # Or:
 #   bochs -f baremetal/boot.bochsrc  # boot.bochsrc loads disk.img
+#
+# Expected output:
+#   html/baremetal.png
 
 # main:  (address 0x8800)
 
diff --git a/baremetal/ex2.subx b/baremetal/ex2.subx
index 19fc3ba3..5f007327 100644
--- a/baremetal/ex2.subx
+++ b/baremetal/ex2.subx
@@ -6,13 +6,16 @@
 #   qemu-system-i386 disk.img
 # Or:
 #   bochs -f baremetal/boot.bochsrc  # boot.bochsrc loads disk.img
+#
+# Expected output:
+#   html/baremetal.png
 
 # main:  (address 0x8800)
 
 == code
 
 # ecx <- start of video memory
-8b/-> 0/mod/indirect 5/rm32/use-disp32 0x7f28/disp32/video-memory  1/r32/ecx
+8b/-> *0x7f28 1/r32/ecx
 
 # eax <- final pixel of video memory
 8d/copy-address *(ecx + 0x0bffff) 0/r32/eax  # 0xbffff = 1024*768 - 1
='n181' href='#n181'>181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222