about summary refs log tree commit diff stats
path: root/baremetal/400.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-12 23:52:24 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-12 23:52:24 -0800
commit4413168269ad3d3f31fdc60669bb812f54a3d01e (patch)
treeb9b3c6e7b0852b332f6facf3e8501b44d7dc4050 /baremetal/400.mu
parent8a81faecbe3c4bb2dbcbfc427f694b7932a1c5e5 (diff)
downloadmu-4413168269ad3d3f31fdc60669bb812f54a3d01e.tar.gz
7507 - baremetal: drawing text down then right
Diffstat (limited to 'baremetal/400.mu')
-rw-r--r--baremetal/400.mu1
1 files changed, 1 insertions, 0 deletions
diff --git a/baremetal/400.mu b/baremetal/400.mu
index 2adb3254..c32497b8 100644
--- a/baremetal/400.mu
+++ b/baremetal/400.mu
@@ -1,6 +1,7 @@
 sig pixel screen: (addr screen), x: int, y: int, color: int
 sig read-key kbd: (addr keyboard) -> _/eax: byte
 sig draw-grapheme screen: (addr screen), g: grapheme, x: int, y: int, color: int
+sig cursor-position screen: (addr screen) -> _/eax: int, _/ecx: int
 sig clear-stream f: (addr stream _)
 sig rewind-stream f: (addr stream _)
 sig write f: (addr stream byte), s: (addr array byte)