about summary refs log tree commit diff stats
path: root/apps/tile/rpn.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-24 20:44:13 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-24 20:44:13 -0700
commita04f816cff4a2a558a522b859f8339637db6b726 (patch)
treec71cb553e4d6fcbdf4e23bbd719ba26133cdcd4f /apps/tile/rpn.mu
parentb27a1a2523ed0733329832b7010a7939e3b72114 (diff)
downloadmu-a04f816cff4a2a558a522b859f8339637db6b726.tar.gz
6852 - tile: placeholder for lexical scopes
Diffstat (limited to 'apps/tile/rpn.mu')
-rw-r--r--apps/tile/rpn.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/rpn.mu b/apps/tile/rpn.mu
index 79339918..4f9a926c 100644
--- a/apps/tile/rpn.mu
+++ b/apps/tile/rpn.mu
@@ -1,4 +1,4 @@
-fn evaluate defs: (addr function), scratch: (addr line), end: (addr word), out: (addr int-stack) {
+fn evaluate defs: (addr function), bindings: (addr table), scratch: (addr line), end: (addr word), out: (addr int-stack) {
   var line/eax: (addr line) <- copy scratch
   var word-ah/eax: (addr handle word) <- get line, data
   var curr/eax: (addr word) <- lookup *word-ah