about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-24 08:37:47 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-24 08:37:47 -0700
commit7e7d298bfdd17435616948ea7a6b7056953ef41f (patch)
tree6e1e1d1fbaae55e5c556216aeeef10f53a174d56 /apps
parent2d78516bf50f03c89d740021397d0a9a1910197a (diff)
downloadmu-7e7d298bfdd17435616948ea7a6b7056953ef41f.tar.gz
6848
Diffstat (limited to 'apps')
-rw-r--r--apps/tile/environment.mu15
1 files changed, 8 insertions, 7 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index 846bec98..3a72fe11 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -202,7 +202,7 @@ fn render _env: (addr environment) {
     compare curr-word, 0
     break-if-=
     move-cursor screen, 3, curr-col  # input-row
-    curr-col <- render-column screen, defs, line, curr-word, curr-col, cursor-word, cursor-col-a
+    curr-col <- render-column screen, defs, line, curr-word, 3, curr-col, cursor-word, cursor-col-a  # input-row
     var next-word-ah/edx: (addr handle word) <- get curr-word, next
     curr-word <- lookup *next-word-ah
     loop
@@ -212,15 +212,15 @@ fn render _env: (addr environment) {
 }
 
 # Render:
-#   - final-word
-#   - the stack result from interpreting first-world to final-word (inclusive)
-#     - unless final-word is truly the final word, in which case it might be incomplete
+#   - starting at top-row, left-col: final-word
+#   - starting somewhere below at left-col: the stack result from interpreting first-world to final-word (inclusive)
+#     unless final-word is truly the final word, in which case it might be incomplete
 #
 # Outputs:
 # - Return the farthest column written.
 # - If final-word is same as cursor-word, do some additional computation to set
 #   cursor-col-a.
-fn render-column screen: (addr screen), defs: (addr function), scratch: (addr line), final-word: (addr word), left-col: int, cursor-word: (addr word), cursor-col-a: (addr int) -> right-col/ecx: int {
+fn render-column screen: (addr screen), defs: (addr function), scratch: (addr line), final-word: (addr word), top-row: int, left-col: int, cursor-word: (addr word), cursor-col-a: (addr int) -> right-col/ecx: int {
   var max-width/ecx: int <- copy 0
   {
     # render stack for all but final column
@@ -238,7 +238,8 @@ fn render-column screen: (addr screen), defs: (addr function), scratch: (addr li
     initialize-int-stack stack-addr, 0x10  # max-words
     evaluate defs, scratch, final-word, stack-addr
     # render stack
-    var curr-row/edx: int <- copy 6  # input-row 3 + stack-margin-top 3
+    var curr-row/edx: int <- copy top-row
+    curr-row <- add 3  # stack-margin-top
     var _justify-threshold/eax: int <- max-stack-justify-threshold stack-addr
     var justify-threshold/esi: int <- copy _justify-threshold
     var i/eax: int <- int-stack-length stack-addr
@@ -262,7 +263,7 @@ fn render-column screen: (addr screen), defs: (addr function), scratch: (addr li
 
   # render word, initialize result
   reset-formatting screen
-  move-cursor screen, 3, left-col  # input-row
+  move-cursor screen, top-row, left-col
   print-word screen, final-word
   {
     var size/eax: int <- word-length final-word