DSPLLE: O is the mnemonic for overflow, not 0
This commit is contained in:
parent
4865b322d0
commit
e5d130c4b3
|
@ -289,7 +289,7 @@ bool Interpreter::CheckCondition(u8 condition) const
|
|||
return !IsLogicZero();
|
||||
case 0xd: // LZ - Logic Zero
|
||||
return IsLogicZero();
|
||||
case 0xe: // 0 - Overflow
|
||||
case 0xe: // O - Overflow
|
||||
return IsOverflow();
|
||||
default:
|
||||
return true;
|
||||
|
|
|
@ -65,7 +65,7 @@ void DSPEmitter::ReJitConditional(const UDSPInstruction opc,
|
|||
case 0xd: // LZ - Logic Zero
|
||||
TEST(16, R(EAX), Imm16(SR_LOGIC_ZERO));
|
||||
break;
|
||||
case 0xe: // 0 - Overflow
|
||||
case 0xe: // O - Overflow
|
||||
TEST(16, R(EAX), Imm16(SR_OVERFLOW));
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue