diff options
| author | 2018-01-13 16:24:05 -0500 | |
|---|---|---|
| committer | 2018-01-13 16:24:05 -0500 | |
| commit | 17af2937fe9fe4c6ec64ff613c5519bc5eb237f0 (patch) | |
| tree | 6f37a60c9fe015a85667f7d1849606b547dfedba | |
| parent | config: Default log filter to trace. (diff) | |
| download | yuzu-17af2937fe9fe4c6ec64ff613c5519bc5eb237f0.tar.gz yuzu-17af2937fe9fe4c6ec64ff613c5519bc5eb237f0.tar.xz yuzu-17af2937fe9fe4c6ec64ff613c5519bc5eb237f0.zip | |
arm_unicorn: Log unmapped memory access address.
Diffstat (limited to '')
| -rw-r--r-- | src/core/arm/unicorn/arm_unicorn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.cpp b/src/core/arm/unicorn/arm_unicorn.cpp index 0353454f5..13f6c658c 100644 --- a/src/core/arm/unicorn/arm_unicorn.cpp +++ b/src/core/arm/unicorn/arm_unicorn.cpp | |||
| @@ -52,7 +52,7 @@ 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"); | 55 | ASSERT_MSG(false, "Attempted to read from unmapped memory: 0x%llx", addr); |
| 56 | return {}; | 56 | return {}; |
| 57 | } | 57 | } |
| 58 | 58 | ||