about summary refs log tree commit diff stats
path: root/baremetal/rpn.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-23 11:16:38 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-23 11:16:38 -0800
commit34599e2c63a203c47a656412d82ee1d91fcfee39 (patch)
tree262aee9cce581a11ce8efd8e08a665bae4d4e827 /baremetal/rpn.mu
parent4254408a385f90ffe212e85a7b405054f4e73f5e (diff)
downloadmu-34599e2c63a203c47a656412d82ee1d91fcfee39.tar.gz
7550
Diffstat (limited to 'baremetal/rpn.mu')
-rw-r--r--baremetal/rpn.mu5
1 files changed, 2 insertions, 3 deletions
diff --git a/baremetal/rpn.mu b/baremetal/rpn.mu
index 0944b42b..aea6b0fa 100644
--- a/baremetal/rpn.mu
+++ b/baremetal/rpn.mu
@@ -1,7 +1,8 @@
 # Integer arithmetic using postfix notation
 #
 # Limitations:
-#   No division yet.
+#   '+' and '*' temporarily not available until the keyboard driver supports the shift key
+#   Division not implemented yet.
 #
 # To build:
 #   $ ./translate_mu_baremetal baremetal/rpn.mu
@@ -13,8 +14,6 @@
 #   > 5 3 -
 #   2
 #
-# '+' and '*' not supported yet because they require the shift key.
-#
 # Error handling is non-existent. This is just a prototype.
 
 fn main -> _/ebx: int {