mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
ITYM PowerPC::Write_U{8,16}, not Memory::
PowerPC does exceptions and hardware and stuff, Memory doesn't. I did not realize until a few minutes ago that there were two versions of these functions. This is why namespaces suck. Anyway, these were added by Mullin earlier this year.
This commit is contained in:
@ -559,7 +559,7 @@ void JitArmAsmRoutineManager::GenerateCommon()
|
|||||||
PUSH(5, R0, R1, R2, R3, _LR);
|
PUSH(5, R0, R1, R2, R3, _LR);
|
||||||
VMOV(R0, S0);
|
VMOV(R0, S0);
|
||||||
MOV(R1, R10);
|
MOV(R1, R10);
|
||||||
MOVI2R(R10, (u32)&Memory::Write_U8);
|
MOVI2R(R10, (u32)&PowerPC::Write_U8);
|
||||||
BL(R10);
|
BL(R10);
|
||||||
POP(5, R0, R1, R2, R3, _PC);
|
POP(5, R0, R1, R2, R3, _PC);
|
||||||
}
|
}
|
||||||
@ -614,7 +614,7 @@ void JitArmAsmRoutineManager::GenerateCommon()
|
|||||||
PUSH(5, R0, R1, R2, R3, _LR);
|
PUSH(5, R0, R1, R2, R3, _LR);
|
||||||
VMOV(R0, S0);
|
VMOV(R0, S0);
|
||||||
MOV(R1, R10);
|
MOV(R1, R10);
|
||||||
MOVI2R(R10, (u32)&Memory::Write_U16);
|
MOVI2R(R10, (u32)&PowerPC::Write_U16);
|
||||||
BL(R10);
|
BL(R10);
|
||||||
|
|
||||||
POP(5, R0, R1, R2, R3, _PC);
|
POP(5, R0, R1, R2, R3, _PC);
|
||||||
|
Reference in New Issue
Block a user