mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Read memory in the jit dispatcher same as lw.
Just for consistency. One less op, maybe faster, probably same.
This commit is contained in:
parent
b30ab91379
commit
8438371941
1 changed files with 1 additions and 2 deletions
|
@ -99,8 +99,7 @@ void AsmRoutineManager::Generate(MIPSState *mips, MIPSComp::Jit *jit)
|
|||
#ifdef _M_IX86
|
||||
AND(32, R(EAX), Imm32(Memory::MEMVIEW32_MASK));
|
||||
_assert_msg_(CPU, Memory::base != 0, "Memory base bogus");
|
||||
MOV(32, R(EDX), Imm32((u32)Memory::base));
|
||||
MOV(32, R(EAX), MComplex(EDX, EAX, SCALE_1, 0));
|
||||
MOV(32, R(EAX), MDisp(EAX, (u32)Memory::base));
|
||||
#elif _M_X64
|
||||
MOV(32, R(EAX), MComplex(RBX, RAX, SCALE_1, 0));
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue