diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-22 12:18:49 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-22 12:18:49 -0700 |
commit | 8b91d0cd3215c42525bfef6443a73987a1a72987 (patch) | |
tree | e92870e54f96411071fd550046e1ef7613af0faa | |
parent | df0b469f26025ec7f7f7cc88439a8b68c396b97c (diff) | |
download | mu-8b91d0cd3215c42525bfef6443a73987a1a72987.tar.gz |
1129
-rw-r--r-- | cpp/090debug | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/090debug b/cpp/090debug index cd5825a0..4f1a0796 100644 --- a/cpp/090debug +++ b/cpp/090debug @@ -1,10 +1,9 @@ //: Recipe to look at elements of containers. -:(before "End Globals") -const int _PRINT = 99; +:(before "End Primitive Recipe Declarations") +_PRINT, :(before "End Primitive Recipe Numbers") Recipe_number["$print"] = _PRINT; -assert(Next_recipe_number < _PRINT); :(before "End Primitive Recipe Implementations") case _PRINT: { if (isa_literal(instructions[pc].ingredients[0])) { |