about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-30 00:41:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-30 00:41:11 -0700
commita479f0d0837be5fec7e92ef806cc50b9c17ed50c (patch)
treed0a45509c4fc3706b8f5733eb76c342a0f4e65e3 /apps
parentc970190021a0aeb2b73558a9095f63a774f439ba (diff)
downloadmu-a479f0d0837be5fec7e92ef806cc50b9c17ed50c.tar.gz
.
Open question fixed.
Diffstat (limited to 'apps')
-rw-r--r--apps/ex14.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/ex14.mu b/apps/ex14.mu
index 600aded5..4a2d5dd7 100644
--- a/apps/ex14.mu
+++ b/apps/ex14.mu
@@ -23,5 +23,5 @@ fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk)
   var text-storage: (stream byte 0x200)
   var text/esi: (addr stream byte) <- address text-storage
   load-sectors data-disk, 0/lba, 1/num-sectors, text
-  var dummy/eax: int <- draw-stream-rightward screen, text, 1/x 0x80/xmax 0/y, 0xa/fg, 0/bg
+  var dummy/eax: int <- draw-stream-rightward screen, text, 0/x 0x80/xmax 0/y, 0xa/fg, 0/bg
 }