about summary refs log tree commit diff stats
path: root/ex4.mu
diff options
context:
space:
mode:
Diffstat (limited to 'ex4.mu')
-rw-r--r--ex4.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/ex4.mu b/ex4.mu
index 8f0cbd7a..eb3fc899 100644
--- a/ex4.mu
+++ b/ex4.mu
@@ -9,6 +9,6 @@
 #
 # Expected output: letter 'A' in green near the top-left corner of screen
 
-fn main {
-  draw-codepoint 0/screen, 0x41/A, 2/row, 1/col, 0xa/fg, 0/bg
+fn main screen: (addr screen), keyboard: (addr keyboard) {
+  draw-codepoint screen, 0x41/A, 2/row, 1/col, 0xa/fg, 0/bg
 }