mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-15 14:20:05 +00:00
arm_dynarmic: Print current instruction when ExceptionRaised
This commit is contained in:
parent
75f3d2ba31
commit
1817e30eff
@ -125,8 +125,8 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ExceptionRaised(VAddr pc, Dynarmic::A32::Exception exception) override {
|
void ExceptionRaised(VAddr pc, Dynarmic::A32::Exception exception) override {
|
||||||
ASSERT_MSG(false, "ExceptionRaised(exception = {}, pc = {:X})",
|
ASSERT_MSG(false, "ExceptionRaised(exception = {}, pc = {:08X}, code = {:08X})",
|
||||||
static_cast<size_t>(exception), pc);
|
static_cast<size_t>(exception), pc, MemoryReadCode(pc));
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddTicks(std::uint64_t ticks) override {
|
void AddTicks(std::uint64_t ticks) override {
|
||||||
|
Loading…
Reference in New Issue
Block a user