[SOFT386]

Fix the BOP opcode. It's LES AX, SP not LES AX, BP.


svn path=/branches/ntvdm/; revision=60396
This commit is contained in:
Aleksandar Andrejevic 2013-09-28 00:46:04 +00:00
parent 7e119cf40b
commit cad18120fa

View file

@ -4503,7 +4503,7 @@ SOFT386_OPCODE_HANDLER(Soft386OpcodeLdsLes)
/* Check if this is a BOP and the host supports BOPs */
if ((Opcode == 0xC4)
&& (ModRegRm.Register == SOFT386_REG_EAX)
&& (ModRegRm.SecondRegister == SOFT386_REG_EBP)
&& (ModRegRm.SecondRegister == SOFT386_REG_ESP)
&& (State->BopCallback != NULL))
{
USHORT BopCode;