about summary refs log tree commit diff stats
path: root/baremetal/ex4.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-02-07 15:50:16 -0800
committerKartik Agaram <vc@akkartik.com>2021-02-07 15:50:16 -0800
commit8f34dfd1e09e9e33176bba8f05a2ec229cf3b56f (patch)
tree2a627da04cef70f856a712e9bd56d186c30aa8bc /baremetal/ex4.mu
parentf626421bc4f526c48b789914a3a1e088a9250278 (diff)
downloadmu-8f34dfd1e09e9e33176bba8f05a2ec229cf3b56f.tar.gz
7693 - baremetal: pass background color everywhere
Diffstat (limited to 'baremetal/ex4.mu')
-rw-r--r--baremetal/ex4.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/baremetal/ex4.mu b/baremetal/ex4.mu
index 2c09d15a..ede48e09 100644
--- a/baremetal/ex4.mu
+++ b/baremetal/ex4.mu
@@ -11,5 +11,5 @@
 
 fn main {
   var g/eax: grapheme <- copy 0x41/A
-  draw-grapheme 0/screen, g, 2/row, 1/col, 0xa/fg
+  draw-grapheme 0/screen, g, 2/row, 1/col, 0xa/fg, 0/bg
 }