mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[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:
parent
7e119cf40b
commit
cad18120fa
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue