Author: aandrejevic
Date: Tue Feb 25 00:26:00 2014
New Revision: 62325
URL:
http://svn.reactos.org/svn/reactos?rev=62325&view=rev
Log:
[FAST486]
Actually, we should return FALSE if any exception occurred...
Modified:
branches/ntvdm/lib/fast486/opcodes.c
Modified: branches/ntvdm/lib/fast486/opcodes.c
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/fast486/opcodes.c?rev…
==============================================================================
--- branches/ntvdm/lib/fast486/opcodes.c [iso-8859-1] (original)
+++ branches/ntvdm/lib/fast486/opcodes.c [iso-8859-1] Tue Feb 25 00:26:00 2014
@@ -4244,7 +4244,7 @@
{
/* Call the VM86 monitor */
Fast486ExceptionWithErrorCode(State, FAST486_EXCEPTION_GP, 0);
- return TRUE;
+ return FALSE;
}
/* Push the flags */
@@ -4273,7 +4273,7 @@
{
/* Call the VM86 monitor */
Fast486ExceptionWithErrorCode(State, FAST486_EXCEPTION_GP, 0);
- return TRUE;
+ return FALSE;
}
State->Flags.Cf = NewFlags.Cf;