Stub am::SetScreenShotPermission, and bsd::StartMonitoring functions

This commit is contained in:
mailwl 2018-02-22 13:04:23 +03:00
parent 7f0ecbf859
commit 910198a29a
5 changed files with 22 additions and 1 deletions

View file

@ -52,7 +52,8 @@ 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: 0x%llx", addr);
ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%llx, pc=0x%llx, lr=0x%llx", addr,
ctx.pc, ctx.cpu_registers[30]);
return {};
}