Remove unnecessary log message

This commit is contained in:
2023-10-23 03:11:05 +01:00
parent 9496da9d93
commit 587f31a63b

View File

@@ -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;