about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-09-04 13:57:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-09-04 13:57:20 -0700
commitcfdee0a6fac625774d435ccc03dcfa8c527d0f45 (patch)
tree813c1cd5cc67fc6d0478780a80ee793a6e72ba25 /apps
parent66d5a8735c401676167956d6f034569e27483cf5 (diff)
downloadmu-cfdee0a6fac625774d435ccc03dcfa8c527d0f45.tar.gz
fix apps/ex7.mu
I'm increasingly missing CI.
Diffstat (limited to 'apps')
-rw-r--r--apps/ex7.mu3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/ex7.mu b/apps/ex7.mu
index b41b6f72..61b9ac20 100644
--- a/apps/ex7.mu
+++ b/apps/ex7.mu
@@ -9,10 +9,9 @@
 # k, l.
 
 fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
-  var space/eax: grapheme <- copy 0x20
   set-cursor-position screen, 0, 0
   {
-    draw-cursor screen, space
+    draw-cursor screen, 0x20/space
     var key/eax: byte <- read-key keyboard
     {
       compare key, 0x68/h