about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-05-27 01:41:35 -0700
committerKartik Agaram <vc@akkartik.com>2020-05-27 01:41:35 -0700
commit415354264b0fb9d8914fb8edf219b84aa7a1e1d1 (patch)
tree23aac394f60e23d8d6eac6ac77b9011a00a5c5d9 /apps
parent9511ff5cd7aeef4ccf501920e6969d2b15ecf2d5 (diff)
downloadmu-415354264b0fb9d8914fb8edf219b84aa7a1e1d1.tar.gz
6410 - primitives for raw keyboard input
Diffstat (limited to 'apps')
-rw-r--r--apps/tui.mu (renamed from apps/screen.mu)9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/screen.mu b/apps/tui.mu
index 4f36809e..e2f97609 100644
--- a/apps/screen.mu
+++ b/apps/tui.mu
@@ -16,5 +16,14 @@ fn main -> exit-status/ebx: int {
   print-string " rows, "
   print-int32-to-screen ncols
   print-string " rows\n"
+
+  print-string "press a key to see its code: "
+  enable-keyboard-immediate-mode
+  var x/eax: byte <- read-key
+  enable-keyboard-type-mode
+  enable-screen-type-mode
+  print-string "You pressed "
+  print-int32-to-screen x
+  print-string "\n"
   exit-status <- copy 0
 }