about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-13 23:14:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-13 23:14:20 -0700
commitdb0363462f42b05561853bd295fb4d39909a9f6c (patch)
treefd73bad30978e911ad2905700ef65103b444bbce /apps
parentd280bd8dac5555a6dd8fdc34b8e423f120f05887 (diff)
downloadmu-db0363462f42b05561853bd295fb4d39909a9f6c.tar.gz
primitive: read line from keyboard
Blocking.
Diffstat (limited to 'apps')
-rw-r--r--apps/rpn.mu20
1 files changed, 1 insertions, 19 deletions
diff --git a/apps/rpn.mu b/apps/rpn.mu
index 4fd8ccb6..7d98d549 100644
--- a/apps/rpn.mu
+++ b/apps/rpn.mu
@@ -19,28 +19,10 @@ fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk)
   var in-storage: (stream byte 0x80)
   var in/esi: (addr stream byte) <- address in-storage
   var y/ecx: int <- copy 0
-  var space/edx: code-point <- copy 0x20
   # read-eval-print loop
   {
-    # print prompt
     var x/eax: int <- draw-text-rightward screen, "> ", 0/x, 0x80/xmax, y, 3/fg/cyan, 0/bg
-    # read line from keyboard
-    clear-stream in
-    {
-      draw-cursor screen, space
-      var key/eax: byte <- read-key keyboard
-      compare key, 0xa/newline
-      break-if-=
-      compare key, 0
-      loop-if-=
-      var key2/eax: int <- copy key
-      append-byte in, key2
-      var c/eax: code-point <- copy key2
-      draw-code-point-at-cursor-over-full-screen screen, c, 0xf/fg, 0/bg
-      loop
-    }
-    # clear cursor
-    draw-code-point-at-cursor-over-full-screen screen, space, 3/fg/never-used, 0/bg
+    read-line-from-keyboard keyboard, in, screen, 0xf/fg 0/bg
     # parse and eval
     var out/eax: int <- simplify in
     # print