Improve the debug messages when invalid instructions are found (again)

This commit is contained in:
2025-12-22 22:46:45 +01:00
parent 2b5eb96187
commit 7a22570a0f

View File

@@ -78,7 +78,7 @@ impl Core {
}
}
} else {
eprintln!("Invalid Instruction {:08x}", instr.0);
eprintln!("Invalid Instruction {:08x} at PC: {:x}", instr.0, self.pc);
break;
}
}