about summary refs log tree commit diff stats
path: root/apps/tile/word.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-11-15 20:24:41 -0800
committerKartik Agaram <vc@akkartik.com>2020-11-15 20:24:41 -0800
commita8dfb603fdd72c826679546053b5b6bf1dc01179 (patch)
tree378068ea1ea4538652c167861024c64ea88f8414 /apps/tile/word.mu
parent0879555213d6b24234d3ec11bbc98e210586ec16 (diff)
downloadmu-a8dfb603fdd72c826679546053b5b6bf1dc01179.tar.gz
7242
Diffstat (limited to 'apps/tile/word.mu')
-rw-r--r--apps/tile/word.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/word.mu b/apps/tile/word.mu
index 61c0646e..e01c8353 100644
--- a/apps/tile/word.mu
+++ b/apps/tile/word.mu
@@ -278,7 +278,7 @@ fn print-words-in-reverse screen: (addr screen), _words-ah: (addr handle word) {
   break-if-=
   # recurse
   var next-ah/ecx: (addr handle word) <- get words-a, next
-  print-words screen, next-ah
+  print-words-in-reverse screen, next-ah
   # print
   print-word screen, words-a
   print-string screen, " "