mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
arm_dynarmic_64: Log the instruction when an exception is raised
This commit is contained in:
parent
e0af4cdf98
commit
f2df941e8d
1 changed files with 2 additions and 2 deletions
|
@ -98,8 +98,8 @@ public:
|
|||
}
|
||||
[[fallthrough]];
|
||||
default:
|
||||
ASSERT_MSG(false, "ExceptionRaised(exception = {}, pc = {:X})",
|
||||
static_cast<std::size_t>(exception), pc);
|
||||
ASSERT_MSG(false, "ExceptionRaised(exception = {}, pc = {:08X}, code = {:08X})",
|
||||
static_cast<std::size_t>(exception), pc, MemoryReadCode(pc));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue