diff options
Diffstat (limited to 'cpp/013run')
-rw-r--r-- | cpp/013run | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/013run b/cpp/013run index 63a27e48..0a1f6529 100644 --- a/cpp/013run +++ b/cpp/013run @@ -45,14 +45,14 @@ void run(routine rr) { trace("run") << "instruction " << recipe_name(rr) << '/' << pc; //? cout << "operation " << instructions[pc].operation << '\n'; //? 3 switch (instructions[pc].operation) { - // Primitive Recipe Implementations. + // Primitive Recipe Implementations case COPY: { trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name; vector<int> data = read_memory(instructions[pc].ingredients[0]); write_memory(instructions[pc].products[0], data); break; } - // End Primitive Recipe Implementations. + // End Primitive Recipe Implementations default: { cout << "not a primitive op: " << instructions[pc].operation << '\n'; } @@ -156,7 +156,7 @@ size_t size_of(const reagent& r) { return size_of(r.types); } size_t size_of(const vector<type_number>& types) { - // End size_of(types) Cases. + // End size_of(types) Cases return 1; } |