arm_dynarmic_64: Log the instruction when an exception is raised

This commit is contained in:
Morph 2020-06-22 07:00:24 -04:00
parent e0af4cdf98
commit f2df941e8d

View File

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