about summary refs log tree commit diff stats
path: root/044space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-29 01:35:06 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-29 01:35:06 -0700
commit10ffce9815b0242259730629668215b01dccbda1 (patch)
treec06a7d3ca0edecc7422587b53df8e9ef5d3316df /044space.cc
parent7082321a20e660579bedfc646f5424e6cf4ca897 (diff)
downloadmu-10ffce9815b0242259730629668215b01dccbda1.tar.gz
1882
Diffstat (limited to '044space.cc')
-rw-r--r--044space.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/044space.cc b/044space.cc
index 5c3f97c4..3a0fe57a 100644
--- a/044space.cc
+++ b/044space.cc
@@ -21,7 +21,7 @@ recipe main [
   # actual start of this recipe
   default-space:address:array:location <- copy 1000
   1:address:number <- copy 3
-  8:number/raw <- copy 1:address:number/lookup
+  8:number/raw <- copy *1:address:number
 ]
 +mem: storing 34 in location 8
 
@@ -76,7 +76,7 @@ recipe main [
   # actual start of this recipe
   default-space:address:array:location <- copy 1000
   1:address:point <- copy 12
-  9:number/raw <- get 1:address:point/lookup, 1:offset
+  9:number/raw <- get *1:address:point, 1:offset
 ]
 +mem: storing 35 in location 9
 
@@ -96,7 +96,7 @@ recipe main [
   # actual start of this recipe
   default-space:address:array:location <- copy 1000
   1:address:array:number <- copy 12
-  9:number/raw <- index 1:address:array:number/lookup, 1
+  9:number/raw <- index *1:address:array:number, 1
 ]
 +mem: storing 35 in location 9