mirror of https://github.com/PCSX2/pcsx2.git
Took out the code i accidently put back in from testing
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4053 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
e37d6b2905
commit
9e4041a8e3
|
@ -449,39 +449,6 @@ void recOR_(int info)
|
||||||
|
|
||||||
EERECOMPILE_CODE0(OR, XMMINFO_READS|XMMINFO_READT|XMMINFO_WRITED);
|
EERECOMPILE_CODE0(OR, XMMINFO_READS|XMMINFO_READT|XMMINFO_WRITED);
|
||||||
|
|
||||||
void recLogicalOp(int info, int op)
|
|
||||||
{
|
|
||||||
pxAssert( !(info & PROCESS_EE_XMM) );
|
|
||||||
|
|
||||||
if( _Rd_ == _Rs_ || _Rd_ == _Rt_ ) {
|
|
||||||
int vreg = _Rd_ == _Rs_ ? _Rt_ : _Rs_;
|
|
||||||
MOV32MtoR(EAX, (int)&cpuRegs.GPR.r[ vreg ]);
|
|
||||||
MOV32MtoR(EDX, (int)&cpuRegs.GPR.r[ vreg ] + 4 );
|
|
||||||
LogicalOp32RtoM((int)&cpuRegs.GPR.r[ _Rd_ ], EAX, op );
|
|
||||||
LogicalOp32RtoM((int)&cpuRegs.GPR.r[ _Rd_ ] + 4, EDX, op );
|
|
||||||
if( op == 3 ) {
|
|
||||||
NOT32M((int)&cpuRegs.GPR.r[ _Rd_ ]);
|
|
||||||
NOT32M((int)&cpuRegs.GPR.r[ _Rd_ ]+4);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
MOV32MtoR(EAX, (int)&cpuRegs.GPR.r[ _Rs_ ]);
|
|
||||||
MOV32MtoR(ECX, (int)&cpuRegs.GPR.r[ _Rs_ ] + 4 );
|
|
||||||
LogicalOp32MtoR(EAX, (int)&cpuRegs.GPR.r[ _Rt_ ], op );
|
|
||||||
LogicalOp32MtoR(ECX, (int)&cpuRegs.GPR.r[ _Rt_ ] + 4, op );
|
|
||||||
|
|
||||||
if( op == 3 ) {
|
|
||||||
NOT32R(EAX);
|
|
||||||
NOT32R(ECX);
|
|
||||||
}
|
|
||||||
|
|
||||||
MOV32RtoM((int)&cpuRegs.GPR.r[ _Rd_ ], EAX);
|
|
||||||
MOV32RtoM((int)&cpuRegs.GPR.r[ _Rd_ ]+4, ECX);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//// XOR
|
//// XOR
|
||||||
void recXOR_const()
|
void recXOR_const()
|
||||||
{
|
{
|
||||||
|
@ -522,7 +489,6 @@ void recXOR_(int info)
|
||||||
pxAssert( !(info & PROCESS_EE_XMM) );
|
pxAssert( !(info & PROCESS_EE_XMM) );
|
||||||
|
|
||||||
int rs = _Rs_, rt = _Rt_;
|
int rs = _Rs_, rt = _Rt_;
|
||||||
|
|
||||||
if (_Rd_ == _Rt_)
|
if (_Rd_ == _Rt_)
|
||||||
rs = _Rt_, rt = _Rs_;
|
rs = _Rt_, rt = _Rs_;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue