diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-19 10:38:23 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-19 10:38:23 -0700 |
commit | 33262afe8765131af6a4fffa8f8ddf6ac7ea3d58 (patch) | |
tree | c09fb0929a747db0f07411af4f1e9679ec0844a9 | |
parent | f0fbbf79dbf2d1a44a32778706866f454619303e (diff) | |
download | mu-33262afe8765131af6a4fffa8f8ddf6ac7ea3d58.tar.gz |
1407
-rw-r--r-- | 010vm.cc | 2 | ||||
-rw-r--r-- | 043space.cc | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/010vm.cc b/010vm.cc index a5069c45..7af7ba6f 100644 --- a/010vm.cc +++ b/010vm.cc @@ -154,7 +154,7 @@ assert(MAX_PRIMITIVE_RECIPES < 100); // level 0 is primitives; until 99 Next_recipe_number = 100; // End Load Recipes :(before "End Test Run Initialization") -assert(Next_recipe_number < 1000); // functions being tested didn't overflow into test space +assert(Next_recipe_number < 1000); // recipes being tested didn't overflow into test space :(before "End Setup") Next_recipe_number = 1000; // consistent new numbers for each test diff --git a/043space.cc b/043space.cc index 494e8215..37683ab8 100644 --- a/043space.cc +++ b/043space.cc @@ -1,4 +1,4 @@ -//: Spaces help isolate functions from each other. You can create them at will, +//: Spaces help isolate recipes from each other. You can create them at will, //: and all addresses in arguments are implicitly based on the 'default-space' //: (unless they have the /raw property) @@ -18,7 +18,7 @@ recipe main [ 3:number <- copy 34:literal # pretend array 1000:number <- copy 5:literal - # actual start of this function + # actual start of this recipe default-space:address:array:location <- copy 1000:literal 1:address:number <- copy 3:literal 8:number/raw <- copy 1:address:number/deref @@ -60,7 +60,7 @@ recipe main [ 13:number <- copy 35:literal # pretend array 1000:number <- copy 5:literal - # actual start of this function + # actual start of this recipe default-space:address:array:location <- copy 1000:literal 1:address:point <- copy 12:literal 9:number/raw <- get 1:address:point/deref, 1:offset @@ -80,7 +80,7 @@ recipe main [ 14:number <- copy 35:literal # pretend array 1000:number <- copy 5:literal - # actual start of this function + # actual start of this recipe default-space:address:array:location <- copy 1000:literal 1:address:array:number <- copy 12:literal 9:number/raw <- index 1:address:array:number/deref, 1:literal |