[NTVDM]: Silence interrupt calls dprints.

svn path=/trunk/; revision=64446
This commit is contained in:
Hermès Bélusca-Maïto 2014-10-02 00:03:55 +00:00
parent 91d04ae3c1
commit 47ed7c7a70
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@
/* INCLUDES *******************************************************************/ /* INCLUDES *******************************************************************/
// #define NDEBUG #define NDEBUG
#include "emulator.h" #include "emulator.h"
#include "bop.h" #include "bop.h"
@ -44,7 +44,7 @@ VOID WINAPI EmulatorBiosOperation(PFAST486_STATE State, UCHAR BopCode)
if (BopProc[BopCode] != NULL) if (BopProc[BopCode] != NULL)
BopProc[BopCode](Stack); BopProc[BopCode](Stack);
else else
DPRINT("Invalid BOP code: 0x%02X\n", BopCode); DPRINT1("Invalid BOP code: 0x%02X\n", BopCode);
} }
/* EOF */ /* EOF */

View file

@ -9,7 +9,7 @@
/* INCLUDES *******************************************************************/ /* INCLUDES *******************************************************************/
// #define NDEBUG #define NDEBUG
#include "emulator.h" #include "emulator.h"
#include "int32.h" #include "int32.h"