about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--apps/tile/environment.mu8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index 5661ce54..cb36a4ca 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -1552,15 +1552,17 @@ fn clear-canvas _env: (addr environment) {
   print-string screen, "primitives:"
   start-col <- add 2
   move-cursor screen, 2, start-col
-  print-string screen, "+ - * len open read"
+  print-string screen, "+ - * len"
   move-cursor screen, 3, start-col
+  print-string screen, "open read"
+  move-cursor screen, 4, start-col
   print-string screen, "dup swap"
   # currently defined functions
   start-col <- subtract 2
-  move-cursor screen, 5, start-col
+  move-cursor screen, 6, start-col
   print-string screen, "functions:"
   start-col <- add 2
-  var row/ebx: int <- copy 6
+  var row/ebx: int <- copy 7
   var functions/esi: (addr handle function) <- get env, functions
   {
     var curr/eax: (addr function) <- lookup *functions