about summary refs log tree commit diff stats
path: root/baremetal/ex4.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-02-10 22:34:08 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-02-10 22:34:08 -0800
commit08c55cb2b714eede20349137ac0ddcebac443a84 (patch)
tree8a9a2ea6ff3d008d9ee66b52830c265a4e4e2901 /baremetal/ex4.mu
parent2be221bce82e642359cdb5f902fba6af36d9b7fe (diff)
downloadmu-08c55cb2b714eede20349137ac0ddcebac443a84.tar.gz
7713
Diffstat (limited to 'baremetal/ex4.mu')
-rw-r--r--baremetal/ex4.mu3
1 files changed, 1 insertions, 2 deletions
diff --git a/baremetal/ex4.mu b/baremetal/ex4.mu
index ede48e09..5b883131 100644
--- a/baremetal/ex4.mu
+++ b/baremetal/ex4.mu
@@ -10,6 +10,5 @@
 # Expected output: letter 'A' in green near the top-left corner of screen
 
 fn main {
-  var g/eax: grapheme <- copy 0x41/A
-  draw-grapheme 0/screen, g, 2/row, 1/col, 0xa/fg, 0/bg
+  draw-codepoint 0/screen, 0x41/A, 2/row, 1/col, 0xa/fg, 0/bg
 }