From 132d72d28a63e58ec7f5e6fc955be140ee5844b0 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 11 Oct 2021 21:35:16 -0700 Subject: . --- html/apps/ex7.mu.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'html/apps/ex7.mu.html') diff --git a/html/apps/ex7.mu.html b/html/apps/ex7.mu.html index 50d9d4b5..ebc5a800 100644 --- a/html/apps/ex7.mu.html +++ b/html/apps/ex7.mu.html @@ -66,34 +66,34 @@ if ('onhashchange' in window) { 8 # Expected output: an interactive game a bit like "snakes". Try pressing h, j, 9 # k, l. 10 -11 fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) { -12 set-cursor-position screen, 0, 0 +11 fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) { +12 set-cursor-position screen, 0, 0 13 { -14 draw-cursor screen, 0x20/space +14 draw-cursor screen, 0x20/space 15 var key/eax: byte <- read-key keyboard 16 { 17 compare key, 0x80/left-arrow 18 break-if-!= -19 draw-code-point-at-cursor screen, 0x2d/dash, 0x31/fg, 0/bg +19 draw-code-point-at-cursor screen, 0x2d/dash, 0x31/fg, 0/bg 20 move-cursor-left 0 21 } 22 { 23 compare key, 0x81/down-arrow 24 break-if-!= -25 draw-code-point-at-cursor screen, 0x7c/vertical-bar, 0x31/fg, 0/bg +25 draw-code-point-at-cursor screen, 0x7c/vertical-bar, 0x31/fg, 0/bg 26 move-cursor-down 0 27 } 28 { 29 compare key, 0x82/up-arrow 30 break-if-!= -31 draw-code-point-at-cursor screen, 0x7c/vertical-bar, 0x31/fg, 0/bg +31 draw-code-point-at-cursor screen, 0x7c/vertical-bar, 0x31/fg, 0/bg 32 move-cursor-up 0 33 } 34 { 35 compare key, 0x83/right-arrow 36 break-if-!= 37 var g/eax: code-point <- copy 0x2d/dash -38 draw-code-point-at-cursor screen, 0x2d/dash, 0x31/fg, 0/bg +38 draw-code-point-at-cursor screen, 0x2d/dash, 0x31/fg, 0/bg 39 move-cursor-right 0 40 } 41 loop -- cgit 1.4.1-2-gfad0