about summary refs log tree commit diff stats
path: root/prototypes/browse/10.mu
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/browse/10.mu')
-rw-r--r--prototypes/browse/10.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/prototypes/browse/10.mu b/prototypes/browse/10.mu
index a07f8aa8..5c760de4 100644
--- a/prototypes/browse/10.mu
+++ b/prototypes/browse/10.mu
@@ -75,7 +75,7 @@ $line-loop: {
       compare c, 0xa  # newline
       break-if-=  # no need to print newlines
       # print c
-      print-byte c
+      print-byte-to-screen c
       col <- increment
       loop
     }  # $char-loop
@@ -171,6 +171,6 @@ fn dump in: (addr buffered-file) {
   var c/eax: byte <- read-byte-buffered in
   compare c, 0xffffffff  # EOF marker
   break-if-=
-  print-byte c
+  print-byte-to-screen c
   loop
 }