about summary refs log tree commit diff stats
path: root/apps/print-file.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-29 19:16:36 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-29 19:16:36 -0700
commit6c7f7abdb867084f1e7555105cfa140eae4f6372 (patch)
tree47918b44ecc85fcf3573189a3574f59014787514 /apps/print-file.mu
parent222548962c9ed85c9d5057757287d0b0b069af02 (diff)
downloadmu-6c7f7abdb867084f1e7555105cfa140eae4f6372.tar.gz
6600
Diffstat (limited to 'apps/print-file.mu')
-rw-r--r--apps/print-file.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/print-file.mu b/apps/print-file.mu
index ec9f9367..0fb21132 100644
--- a/apps/print-file.mu
+++ b/apps/print-file.mu
@@ -31,7 +31,7 @@ $main-body: {
         var c/eax: byte <- read-byte-buffered in-addr
         compare c, 0xffffffff  # EOF marker
         break-if-=
-        print-byte c
+        print-byte-to-screen c
         loop
       }
     }