diff options
Diffstat (limited to 'tests/A32/testenv.h')
-rw-r--r-- | tests/A32/testenv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/A32/testenv.h b/tests/A32/testenv.h index a1968ff3..f4db4de4 100644 --- a/tests/A32/testenv.h +++ b/tests/A32/testenv.h @@ -78,7 +78,7 @@ public: MemoryWrite32(vaddr + 4, static_cast<u32>(value >> 32)); } - void InterpreterFallback(u32 pc, size_t num_instructions) override { ASSERT_MSG(false, "InterpreterFallback({:08x}, {})", pc, num_instructions); } + void InterpreterFallback(u32 pc, size_t num_instructions) override { ASSERT_MSG(false, "InterpreterFallback({:08x}, {}) code = {:08x}", pc, num_instructions, MemoryReadCode(pc)); } void CallSVC(std::uint32_t swi) override { ASSERT_MSG(false, "CallSVC({})", swi); } |