diff options
| author | 2020-01-06 11:56:59 -0500 | |
|---|---|---|
| committer | 2020-01-06 11:56:59 -0500 | |
| commit | 09908207fb8eda39cf4bf05b11a2059d554a0079 (patch) | |
| tree | f7d6114076c393aee9c06d3d8c8cfbced06f4b80 /src/core/arm | |
| parent | Merge pull request #3257 from degasus/no_busy_loops (diff) | |
| parent | core/memory + arm/dynarmic: Use a global offset within our arm page table. (diff) | |
| download | yuzu-09908207fb8eda39cf4bf05b11a2059d554a0079.tar.gz yuzu-09908207fb8eda39cf4bf05b11a2059d554a0079.tar.xz yuzu-09908207fb8eda39cf4bf05b11a2059d554a0079.zip | |
Merge pull request #3261 from degasus/page_table
core/memory + arm/dynarmic: Use a global offset within our arm page table.
Diffstat (limited to 'src/core/arm')
| -rw-r--r-- | src/core/arm/dynarmic/arm_dynarmic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/arm/dynarmic/arm_dynarmic.cpp b/src/core/arm/dynarmic/arm_dynarmic.cpp index f8c7f0efd..e825c0526 100644 --- a/src/core/arm/dynarmic/arm_dynarmic.cpp +++ b/src/core/arm/dynarmic/arm_dynarmic.cpp | |||
| @@ -141,6 +141,7 @@ std::unique_ptr<Dynarmic::A64::Jit> ARM_Dynarmic::MakeJit(Common::PageTable& pag | |||
| 141 | config.page_table = reinterpret_cast<void**>(page_table.pointers.data()); | 141 | config.page_table = reinterpret_cast<void**>(page_table.pointers.data()); |
| 142 | config.page_table_address_space_bits = address_space_bits; | 142 | config.page_table_address_space_bits = address_space_bits; |
| 143 | config.silently_mirror_page_table = false; | 143 | config.silently_mirror_page_table = false; |
| 144 | config.absolute_offset_page_table = true; | ||
| 144 | 145 | ||
| 145 | // Multi-process state | 146 | // Multi-process state |
| 146 | config.processor_id = core_index; | 147 | config.processor_id = core_index; |