[FAST486]

Actually, we should return FALSE if any exception occurred...


svn path=/branches/ntvdm/; revision=62325
This commit is contained in:
Aleksandar Andrejevic 2014-02-25 00:26:00 +00:00
parent 8abb2bdad6
commit c3e55a625c

View file

@ -4244,7 +4244,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodePushFlags)
{
/* Call the VM86 monitor */
Fast486ExceptionWithErrorCode(State, FAST486_EXCEPTION_GP, 0);
return TRUE;
return FALSE;
}
/* Push the flags */
@ -4273,7 +4273,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodePopFlags)
{
/* Call the VM86 monitor */
Fast486ExceptionWithErrorCode(State, FAST486_EXCEPTION_GP, 0);
return TRUE;
return FALSE;
}
State->Flags.Cf = NewFlags.Cf;