diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-10-20 19:07:52 -0300 |
|---|---|---|
| committer | Ac_K <Acoustik666@gmail.com> | 2018-10-20 22:07:52 +0000 |
| commit | 2cb8541462e3cc31e9a4ffe63f430168c0c747d1 (patch) | |
| tree | fa334b97c96e4541cf3bd6bc0913c70d57c4370d /Ryujinx.HLE/HOS/Kernel/KMemoryManager.cs | |
| parent | 0e1e094b7a8f0134831fc4cebdb0841b9c10fe6a (diff) | |
Print stack trace on invalid memory accesses (#461)
* Print stack trace on invalid memory accesses
* Rebased, change code region base address for 39-bits address space, print stack trace on break and undefined instructions too
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/KMemoryManager.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Kernel/KMemoryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/KMemoryManager.cs b/Ryujinx.HLE/HOS/Kernel/KMemoryManager.cs index 8871cbe7..8cf73785 100644 --- a/Ryujinx.HLE/HOS/Kernel/KMemoryManager.cs +++ b/Ryujinx.HLE/HOS/Kernel/KMemoryManager.cs @@ -91,7 +91,7 @@ namespace Ryujinx.HLE.HOS.Kernel break; case AddressSpaceType.Addr39Bits: - CodeRegionStart = 0; + CodeRegionStart = 0x8000000; CodeRegionSize = 0x80000000; MapRegionSize = 0x1000000000; HeapRegionSize = 0x180000000; |
