mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-16 23:20:12 +00:00
armjit: VRAM comes before RAM, fix slowmem check.
Can't think of anything else, hopefully fixes #1021.
This commit is contained in:
parent
6aa346c540
commit
796d2c10c6
@ -101,13 +101,6 @@ namespace MIPSComp
|
||||
BIC(tempReg, tempReg, BIT_SCRATCH);
|
||||
|
||||
// If it was in that range, later compares don't matter.
|
||||
CMP(R0, AssumeMakeOperand2(PSP_GetKernelMemoryBase()));
|
||||
SetCC(CC_LO);
|
||||
BIC(tempReg, tempReg, BIT_RAM);
|
||||
SetCC(CC_HS);
|
||||
CMP(R0, AssumeMakeOperand2(PSP_GetUserMemoryEnd()));
|
||||
BIC(tempReg, tempReg, BIT_RAM);
|
||||
|
||||
CMP(R0, AssumeMakeOperand2(PSP_GetVidMemBase()));
|
||||
SetCC(CC_LO);
|
||||
BIC(tempReg, tempReg, BIT_VRAM);
|
||||
@ -115,6 +108,13 @@ namespace MIPSComp
|
||||
CMP(R0, AssumeMakeOperand2(PSP_GetVidMemEnd()));
|
||||
BIC(tempReg, tempReg, BIT_VRAM);
|
||||
|
||||
CMP(R0, AssumeMakeOperand2(PSP_GetKernelMemoryBase()));
|
||||
SetCC(CC_LO);
|
||||
BIC(tempReg, tempReg, BIT_RAM);
|
||||
SetCC(CC_HS);
|
||||
CMP(R0, AssumeMakeOperand2(PSP_GetUserMemoryEnd()));
|
||||
BIC(tempReg, tempReg, BIT_RAM);
|
||||
|
||||
// If we left any bit set, the address is OK.
|
||||
SetCC(CC_AL);
|
||||
CMP(tempReg, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user