Author: hbelusca Date: Mon Nov 11 17:05:02 2013 New Revision: 60943
URL: http://svn.reactos.org/svn/reactos?rev=60943&view=rev Log: [NTVDM]: Display more detailed information about which unknown interruption was called.
Modified: branches/ntvdm/subsystems/ntvdm/int32.c
Modified: branches/ntvdm/subsystems/ntvdm/int32.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/subsystems/ntvdm/int32.c?r... ============================================================================== --- branches/ntvdm/subsystems/ntvdm/int32.c [iso-8859-1] (original) +++ branches/ntvdm/subsystems/ntvdm/int32.c [iso-8859-1] Mon Nov 11 17:05:02 2013 @@ -16,6 +16,7 @@
#include "bop.h" #include "bios.h" +#include "registers.h"
/* PRIVATE VARIABLES **********************************************************/
@@ -123,7 +124,7 @@ if (Int32Proc[IntNum] != NULL) Int32Proc[IntNum](Stack); else - DPRINT1("Unhandled 32-bit interrupt: 0x%02X\n", IntNum); + DPRINT1("Unhandled 32-bit interrupt: 0x%02X, AX = 0x%04X\n", IntNum, getAX()); }
VOID WINAPI InitializeInt32(WORD BiosSegment)