mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[FAST486]
Fix previous fix. svn path=/branches/ntvdm/; revision=60985
This commit is contained in:
@@ -496,8 +496,8 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroup8F)
|
||||
if (!Fast486ParseModRegRm(State, AddressSize, &ModRegRm))
|
||||
{
|
||||
/* Exception occurred - restore SP */
|
||||
if (OperandSize) State->GeneralRegs[FAST486_REG_ESP].Long += sizeof(ULONG);
|
||||
else State->GeneralRegs[FAST486_REG_ESP].LowWord += sizeof(USHORT);
|
||||
if (OperandSize) State->GeneralRegs[FAST486_REG_ESP].Long -= sizeof(ULONG);
|
||||
else State->GeneralRegs[FAST486_REG_ESP].LowWord -= sizeof(USHORT);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user