about summary refs log tree commit diff stats
path: root/apps/ex4.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/ex4.mu')
-rw-r--r--apps/ex4.mu14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/ex4.mu b/apps/ex4.mu
new file mode 100644
index 00000000..9c3e28ee
--- /dev/null
+++ b/apps/ex4.mu
@@ -0,0 +1,14 @@
+# Draw a character using the built-in font (GNU unifont)
+#
+# To build a disk image:
+#   ./translate apps/ex4.mu        # emits code.img
+# To run:
+#   qemu-system-i386 code.img
+# Or:
+#   bochs -f bochsrc               # bochsrc loads code.img
+#
+# Expected output: letter 'A' in green near the top-left corner of screen
+
+fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
+  draw-code-point screen, 0x41/A, 2/row, 1/col, 0xa/fg, 0/bg
+}