mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[FAST486]
Actually, we should return FALSE if any exception occurred... svn path=/branches/ntvdm/; revision=62325
This commit is contained in:
parent
8abb2bdad6
commit
c3e55a625c
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue