about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-29 01:04:26 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-29 01:04:26 -0700
commit34c7221b847e9105b0db19bcf89d4e525c6a6765 (patch)
tree8bd8ad01932b3a61695ff3e3a7ea6e786e8233cd /apps
parent7e70d3ac0425ebecab15c83d73786ec4b3438e37 (diff)
downloadmu-34c7221b847e9105b0db19bcf89d4e525c6a6765.tar.gz
render wide glyphs in the font
Diffstat (limited to 'apps')
-rw-r--r--apps/ex4.mu2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/ex4.mu b/apps/ex4.mu
index f6c0bf8a..f5df8706 100644
--- a/apps/ex4.mu
+++ b/apps/ex4.mu
@@ -11,4 +11,6 @@
 
 fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
   var dummy/eax: int <- draw-code-point screen, 0x41/A, 2/row, 1/col, 0xa/fg, 0/bg
+  # wide glyph
+#?   var dummy/eax: int <- draw-code-point screen, 0x1b/esc, 2/row, 1/col, 0xa/fg, 0/bg
 }