about summary refs log tree commit diff stats
path: root/cpp/010vm
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/010vm')
-rw-r--r--cpp/010vm8
1 files changed, 5 insertions, 3 deletions
diff --git a/cpp/010vm b/cpp/010vm
index a21655ed..abb53732 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -139,13 +139,15 @@ void setup_recipes() {
 //: itself.
 :(before "End One-time Setup")
 setup_recipes();
+assert(Next_recipe_number < 100);  // level 0 is primitives; until 99
+Next_recipe_number = 100;
 // End Load Recipes
 // give tests a consistent starting point
-assert(Next_recipe_number < 100);
-Next_recipe_number = 100;
+assert(Next_recipe_number < 1000);
+Next_recipe_number = 1000;
 delete Trace_stream;  Trace_stream = new trace_stream;
 :(before "End Setup")
-Next_recipe_number = 100;  // consistent new numbers for each test
+Next_recipe_number = 1000;  // consistent new numbers for each test