Revert "PPCCache: Avoid Global System Accessor"

This reverts commit cf74c0d683.
This commit is contained in:
Nayla Hanegan 2024-08-23 17:59:45 -04:00
commit d08c3b9026
12 changed files with 118 additions and 119 deletions

View file

@ -1082,14 +1082,6 @@ public:
ABI_CallFunction(func);
}
template <typename FunctionPointer>
void ABI_CallFunctionPP(FunctionPointer func, const void* param1, const void* param2)
{
MOV(64, R(ABI_PARAM1), Imm64(reinterpret_cast<u64>(param1)));
MOV(64, R(ABI_PARAM2), Imm64(reinterpret_cast<u64>(param2)));
ABI_CallFunction(func);
}
template <typename FunctionPointer>
void ABI_CallFunctionPC(FunctionPointer func, const void* param1, u32 param2)
{