X86: Fix the constant detecting three byte opcodes in the predecoder.
--HG-- extra : rebase_source : b64c3d2348cb73177024695fb6e205d51bf1cda9
This commit is contained in:
@@ -186,7 +186,7 @@ namespace X86ISA
|
||||
DPRINTF(Predecoder, "Found two byte opcode.\n");
|
||||
emi.opcode.prefixA = nextByte;
|
||||
}
|
||||
else if(emi.opcode.num == 2 && (nextByte == 0x38 || nextByte == 0x3F))
|
||||
else if(emi.opcode.num == 2 && (nextByte == 0x38 || nextByte == 0x3A))
|
||||
{
|
||||
nextState = OpcodeState;
|
||||
DPRINTF(Predecoder, "Found three byte opcode.\n");
|
||||
|
||||
Reference in New Issue
Block a user