diff options
author | Mai M <mathew1800@gmail.com> | 2021-06-11 14:26:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 14:26:54 -0400 |
commit | 9951322e5a37a604e185ae7013af7c4cfc5c35f8 (patch) | |
tree | 6d765e2d635990de4acb98c1e2b6ce125546f629 /src/common/page_table.h | |
parent | 0c0c1a039ec73937db4bc24e0bcbc478e3e6704b (diff) | |
parent | 7f85abb28120fbb57bb813b828ee42f2a2031990 (diff) |
Merge pull request #6422 from FernandoS27/i-am-the-senate
Implement/Port Fastmem from Citra to Yuzu
Diffstat (limited to 'src/common/page_table.h')
-rw-r--r-- | src/common/page_table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/page_table.h b/src/common/page_table.h index e92b66b2b..8267e8b4d 100644 --- a/src/common/page_table.h +++ b/src/common/page_table.h @@ -111,6 +111,8 @@ struct PageTable { VirtualBuffer<u64> backing_addr; size_t current_address_space_width_in_bits; + + u8* fastmem_arena; }; } // namespace Common |