summaryrefslogtreecommitdiff
path: root/src/core/arm
diff options
context:
space:
mode:
authorGravatar bunnei2018-02-23 21:09:56 -0800
committerGravatar GitHub2018-02-23 21:09:56 -0800
commitc45173c9a64d9f2e4430ee5f2463a1db8351c722 (patch)
tree16c49a79d6d8408fb36266fe63d0bf00ec6af25d /src/core/arm
parentMerge pull request #217 from shinyquagsire23/time-s-missing (diff)
parentStub more functions (diff)
downloadyuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar.gz
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar.xz
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.zip
Merge pull request #212 from mailwl/stubs
Stub some functions
Diffstat (limited to 'src/core/arm')
-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