diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-10-13 23:14:20 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-10-13 23:14:20 -0700 |
commit | db0363462f42b05561853bd295fb4d39909a9f6c (patch) | |
tree | fd73bad30978e911ad2905700ef65103b444bbce /apps | |
parent | d280bd8dac5555a6dd8fdc34b8e423f120f05887 (diff) | |
download | mu-db0363462f42b05561853bd295fb4d39909a9f6c.tar.gz |
primitive: read line from keyboard
Blocking.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/rpn.mu | 20 |
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 |