diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/010vm | 2 | ||||
-rw-r--r-- | cpp/012transform | 2 | ||||
-rw-r--r-- | cpp/021call | 4 | ||||
-rw-r--r-- | cpp/022call_ingredient | 2 | ||||
-rw-r--r-- | cpp/026new | 2 | ||||
-rw-r--r-- | cpp/027space | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/cpp/010vm b/cpp/010vm index d6eead5e..54fc8906 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -12,7 +12,7 @@ int Next_recipe_number = 1; struct recipe { string name; vector<instruction> steps; - // End Recipe Fields + // End recipe Fields }; :(before "struct recipe") diff --git a/cpp/012transform b/cpp/012transform index 7fa979c7..bb61c6e0 100644 --- a/cpp/012transform +++ b/cpp/012transform @@ -4,7 +4,7 @@ //: The hope is that this framework of transform tools will provide a //: deconstructed alternative to conventional compilers. -:(before "End Recipe Fields") +:(before "End recipe Fields") size_t transformed_until; recipe() :transformed_until(-1) {} diff --git a/cpp/021call b/cpp/021call index a2379219..3683db12 100644 --- a/cpp/021call +++ b/cpp/021call @@ -15,7 +15,7 @@ recipe f [ struct call { recipe_number running_recipe; size_t pc; - // End Call Fields + // End call Fields call(recipe_number r) :running_recipe(r), pc(0) {} }; typedef stack<call> call_stack; @@ -23,7 +23,7 @@ typedef stack<call> call_stack; :(replace{} "struct routine") struct routine { call_stack calls; - // End Routine Fields + // End routine Fields routine(recipe_number r); }; :(code) diff --git a/cpp/022call_ingredient b/cpp/022call_ingredient index 3736177a..963c5fe8 100644 --- a/cpp/022call_ingredient +++ b/cpp/022call_ingredient @@ -12,7 +12,7 @@ recipe f [ +mem: location 12 is 2 +mem: storing 3 in location 13 -:(before "End Call Fields") +:(before "End call Fields") vector<vector<int> > ingredient_atoms; size_t next_ingredient_to_process; :(replace{} "call(recipe_number r)") diff --git a/cpp/026new b/cpp/026new index 69dfe8c7..2bef48e7 100644 --- a/cpp/026new +++ b/cpp/026new @@ -12,7 +12,7 @@ recipe main [ :(before "End Globals") const size_t Alloc_init = 1000; -:(before "End Routine Fields") +:(before "End routine Fields") size_t alloc; :(replace{} "routine::routine(recipe_number r)") routine::routine(recipe_number r) :alloc(Alloc_init) { diff --git a/cpp/027space b/cpp/027space index fed15bf6..7794db23 100644 --- a/cpp/027space +++ b/cpp/027space @@ -26,7 +26,7 @@ recipe main [ ] +mem: storing 34 in location 8 -:(before "End Call Fields") +:(before "End call Fields") size_t default_space; :(replace "call(recipe_number r) :running_recipe(r)") call(recipe_number r) :running_recipe(r), pc(0), next_ingredient_to_process(0), default_space(0) {} |