Core: Port Exclusive memory impl from yuzu

This commit is contained in:
SachinVin
2022-06-22 00:29:36 +05:30
committed by emufan4568
parent 79379f21a4
commit a9b96789d7
17 changed files with 459 additions and 15 deletions

View File

@ -122,6 +122,9 @@ public:
*/
virtual void InvalidateCacheRange(u32 start_address, std::size_t length) = 0;
/// Clears the exclusive monitor's state.
virtual void ClearExclusiveState() = 0;
/// Notify CPU emulation that page tables have changed
virtual void SetPageTable(const std::shared_ptr<Memory::PageTable>& page_table) = 0;