mirror of https://github.com/PCSX2/pcsx2.git
microVU: Fix mVUcustomSearch
Apparently NOT doesn't set flags
This commit is contained in:
parent
f29c2a5805
commit
3204b98aaf
|
@ -587,7 +587,7 @@ void mVUcustomSearch()
|
||||||
xVMOVUPS(ymm0, ptr[arg1reg]);
|
xVMOVUPS(ymm0, ptr[arg1reg]);
|
||||||
xVPCMP.EQD(ymm0, ymm0, ptr[arg2reg]);
|
xVPCMP.EQD(ymm0, ymm0, ptr[arg2reg]);
|
||||||
xVPMOVMSKB(eax, ymm0);
|
xVPMOVMSKB(eax, ymm0);
|
||||||
xNOT(eax);
|
xXOR(eax, 0xffffffff);
|
||||||
xForwardJNZ8 exitPoint;
|
xForwardJNZ8 exitPoint;
|
||||||
|
|
||||||
xVMOVUPS(ymm0, ptr[arg1reg + 0x20]);
|
xVMOVUPS(ymm0, ptr[arg1reg + 0x20]);
|
||||||
|
|
Loading…
Reference in New Issue