summaryrefslogtreecommitdiff
path: root/src/core/arm/unicorn
diff options
context:
space:
mode:
authorGravatar mailwl2018-02-22 13:04:23 +0300
committerGravatar mailwl2018-02-22 13:04:23 +0300
commit910198a29a7d9679d4286a337aa223543545e798 (patch)
treedd17c952c72b055df24cd11cf923dff3980400df /src/core/arm/unicorn
parentMerge pull request #211 from shinyquagsire23/time_local (diff)
downloadyuzu-910198a29a7d9679d4286a337aa223543545e798.tar.gz
yuzu-910198a29a7d9679d4286a337aa223543545e798.tar.xz
yuzu-910198a29a7d9679d4286a337aa223543545e798.zip
Stub am::SetScreenShotPermission, and bsd::StartMonitoring functions
Diffstat (limited to 'src/core/arm/unicorn')
-rw-r--r--src/core/arm/unicorn/arm_unicorn.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.cpp b/src/core/arm/unicorn/arm_unicorn.cpp
index fd64eab39..5d2956bfd 100644
--- a/src/core/arm/unicorn/arm_unicorn.cpp
+++ b/src/core/arm/unicorn/arm_unicorn.cpp
@@ -52,7 +52,8 @@ static bool UnmappedMemoryHook(uc_engine* uc, uc_mem_type type, u64 addr, int si
52 void* user_data) { 52 void* user_data) {
53 ARM_Interface::ThreadContext ctx{}; 53 ARM_Interface::ThreadContext ctx{};
54 Core::CPU().SaveContext(ctx); 54 Core::CPU().SaveContext(ctx);
55 ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%llx", addr); 55 ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%llx, pc=0x%llx, lr=0x%llx", addr,
56 ctx.pc, ctx.cpu_registers[30]);
56 return {}; 57 return {};
57} 58}
58 59