diff options
author | Liam <byteslice@airmail.cc> | 2023-11-17 20:57:39 +0200 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2023-11-25 00:46:15 -0500 |
commit | 4766baddf3501695b6048ed78f251f4ec28ae0aa (patch) | |
tree | 963df957037a5155d919973c4a66d12a34df58dd /src/common/host_memory.h | |
parent | 448d4815decea4b3b29c768f3507c240932d1999 (diff) |
host_memory: Switch to FreeRegionManager
Diffstat (limited to 'src/common/host_memory.h')
-rw-r--r-- | src/common/host_memory.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/host_memory.h b/src/common/host_memory.h index 447975ded..4014a1962 100644 --- a/src/common/host_memory.h +++ b/src/common/host_memory.h @@ -37,6 +37,8 @@ public: void Protect(size_t virtual_offset, size_t length, bool read, bool write); + void EnableDirectMappedAddress(); + [[nodiscard]] u8* BackingBasePointer() noexcept { return backing_base; } |