mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[NTVDM]: Display more detailed information about which unknown interruption was called.
svn path=/branches/ntvdm/; revision=60943
This commit is contained in:
parent
9ccaa9f1c4
commit
0d174d717c
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
#include "bop.h"
|
#include "bop.h"
|
||||||
#include "bios.h"
|
#include "bios.h"
|
||||||
|
#include "registers.h"
|
||||||
|
|
||||||
/* PRIVATE VARIABLES **********************************************************/
|
/* PRIVATE VARIABLES **********************************************************/
|
||||||
|
|
||||||
|
@ -123,7 +124,7 @@ VOID WINAPI Int32Dispatch(LPWORD Stack)
|
||||||
if (Int32Proc[IntNum] != NULL)
|
if (Int32Proc[IntNum] != NULL)
|
||||||
Int32Proc[IntNum](Stack);
|
Int32Proc[IntNum](Stack);
|
||||||
else
|
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)
|
VOID WINAPI InitializeInt32(WORD BiosSegment)
|
||||||
|
|
Loading…
Reference in a new issue