aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/runtime.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/runtime.c b/src/runtime.c
index acc0062..ccda9d0 100644
--- a/src/runtime.c
+++ b/src/runtime.c
@@ -379,7 +379,6 @@ void vm_print_all(vm_t *vm, FILE *fp)
err_t vm_jump(vm_t *vm, word w)
{
- printf("vm_jump: w=%lu\n", w);
if (w >= vm->program.max)
return ERR_INVALID_PROGRAM_ADDRESS;
vm->program.ptr = w;