about summary refs log tree commit diff stats
path: root/baremetal/shell
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-02-14 15:20:02 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-02-14 15:20:02 -0800
commit247fb5951a4dfdcfef8b431ec7f0b85c863575c7 (patch)
tree505dc787fed1c5737cacffe7caeb57bdfe6fd18d /baremetal/shell
parent72f9fdbd16c715e38362502c6c7af88f6da2d69d (diff)
downloadmu-247fb5951a4dfdcfef8b431ec7f0b85c863575c7.tar.gz
7744
Diffstat (limited to 'baremetal/shell')
-rw-r--r--baremetal/shell/line.mu10
1 files changed, 6 insertions, 4 deletions
diff --git a/baremetal/shell/line.mu b/baremetal/shell/line.mu
index a5df2af5..1b691423 100644
--- a/baremetal/shell/line.mu
+++ b/baremetal/shell/line.mu
@@ -134,7 +134,7 @@ fn render-word-with-stack-and-cursor screen: (addr screen), line: (addr line), c
   }
   var new-x/eax: int <- render-word screen, curr-word, x, y, render-cursor?
   var new-x-saved/edx: int <- copy new-x
-  add-to y, 1/word-stack-spacing
+  add-to y, 2/word-stack-spacing
   # compute stack until word
   var stack-storage: value-stack
   var stack/edi: (addr value-stack) <- address stack-storage
@@ -167,7 +167,8 @@ fn test-render-line-with-stack-singleton {
   var new-y/ecx: int <- copy 0
   new-x, new-y <- render-line-with-stack screen, line, 0/x, 0/y, 0/no-cursor
   check-screen-row screen, 0/y, "1  ", "F - test-render-line-with-stack-singleton/0"
-  check-screen-row screen, 1/y, " 1 ", "F - test-render-line-with-stack-singleton/1"
+  check-screen-row screen, 1/y, "   ", "F - test-render-line-with-stack-singleton/1"
+  check-screen-row screen, 2/y, " 1 ", "F - test-render-line-with-stack-singleton/2"
   # not bothering to test hash colors for numbers
 }
 
@@ -185,9 +186,10 @@ fn test-render-line-with-stack {
   var new-y/ecx: int <- copy 0
   new-x, new-y <- render-line-with-stack screen, line, 0/x, 0/y, 0/no-cursor
   check-screen-row screen, 0/y, "1   2 ", "F - test-render-line-with-stack/0"
+  check-screen-row screen, 1/y, "       ", "F - test-render-line-with-stack/1"
                                 #___ ___
-  check-screen-row screen, 1/y, " 1   2 ", "F - test-render-line-with-stack/1"
-  check-screen-row screen, 2/y, "     1 ", "F - test-render-line-with-stack/2"
+  check-screen-row screen, 2/y, " 1   2 ", "F - test-render-line-with-stack/2"
+  check-screen-row screen, 3/y, "     1 ", "F - test-render-line-with-stack/3"
   # not bothering to test hash colors for numbers
 }