CPU/CodeCache: Rewrite using new-rec's block management

This commit is contained in:
Stenzek
2023-10-04 00:19:17 +10:00
parent f82d08e223
commit 79e1ae3e54
29 changed files with 3865 additions and 2520 deletions

View File

@ -14,7 +14,7 @@ enum class HandlerResult
using Callback = HandlerResult (*)(void* exception_pc, void* fault_address, bool is_write);
using Handle = void*;
bool InstallHandler(const void* owner, void* start_pc, u32 code_size, Callback callback);
bool InstallHandler(const void* owner, Callback callback);
bool RemoveHandler(const void* owner);
} // namespace Common::PageFaultHandler