2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

arm_unicorn: Log unmapped memory access address.

This commit is contained in:
bunnei 2018-01-13 16:24:05 -05:00
parent 95ce471774
commit 17af2937fe

View file

@ -52,7 +52,7 @@ static bool UnmappedMemoryHook(uc_engine* uc, uc_mem_type type, u64 addr, int si
void* user_data) {
ARM_Interface::ThreadContext ctx{};
Core::CPU().SaveContext(ctx);
ASSERT_MSG(false, "Attempted to read from unmapped memory");
ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%llx", addr);
return {};
}