diff options
-rw-r--r-- | cpp/012run | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/012run b/cpp/012run index 12e5696e..70317745 100644 --- a/cpp/012run +++ b/cpp/012run @@ -72,6 +72,8 @@ void run(routine rr) { } // End Primitive Recipe Implementations. default: { + // unknown op = try to call a defined recipe + // TODO: this should be later, in the same layer as next_ingredient //? cout << "non primitive op: " << instructions[pc].operation << '\n'; //? 1 if (Recipe.find(instructions[pc].operation) == Recipe.end()) { raise << "undefined operation " << instructions[pc].operation << '\n'; |