about summary refs log tree commit diff stats
path: root/mu_instructions
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-03-24 03:49:37 -0700
committerKartik Agaram <vc@akkartik.com>2020-03-24 03:49:56 -0700
commitbe19cb8772aee45c596126078a72e510cf66b471 (patch)
tree3c0d43056bf30a1e4f25320c7108b55c1db17880 /mu_instructions
parente25b9e0a4d931141bf191340639d7232c235cdaf (diff)
downloadmu-be19cb8772aee45c596126078a72e510cf66b471.tar.gz
6164
Diffstat (limited to 'mu_instructions')
-rw-r--r--mu_instructions4
1 files changed, 2 insertions, 2 deletions
diff --git a/mu_instructions b/mu_instructions
index 7b2d53b3..6a450ec0 100644
--- a/mu_instructions
+++ b/mu_instructions
@@ -154,8 +154,8 @@ be provided in an earlier 'var' declaration.
 
 Address operations
 
-var/reg: (addr T) <- address var: T
-  => "8d/copy-address *(ebp+" var.stack-offset ") " reg "/r32"
+var/reg: (addr T) <- address var2: T
+  => "8d/copy-address *(ebp+" var2.stack-offset ") " reg "/r32"
 
 Array operations (TODO: bounds-checking)