about summary refs log tree commit diff stats
path: root/cpp/016jump
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-18 00:01:43 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-18 00:02:15 -0700
commit15ab959d64e65c313ec9741a64e906f986597078 (patch)
tree3a43d9b15e136b6e6af49b4f5ab55ff31044068b /cpp/016jump
parent32f6079fc3f43e774f17eae7b36aa8c9a3706952 (diff)
downloadmu-15ab959d64e65c313ec9741a64e906f986597078.tar.gz
951 - done with break/loop
Diffstat (limited to 'cpp/016jump')
-rw-r--r--cpp/016jump3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/016jump b/cpp/016jump
index 827e70f4..9d192e96 100644
--- a/cpp/016jump
+++ b/cpp/016jump
@@ -7,8 +7,9 @@ assert(Next_recipe_number == JUMP);
 Next_recipe_number++;
 :(before "End Primitive Recipe Implementations")
 case JUMP: {
-  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].name;
+  trace("run") << "ingredient 0 is " << instructions[pc].ingredients[0].value;
   pc += instructions[pc].ingredients[0].value;
+  trace("run") << "pc now " << pc;
   break;
 }