[NTVDM]: Silence interrupt calls dprints.
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Thu, 2 Oct 2014 00:03:55 +0000 (00:03 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Thu, 2 Oct 2014 00:03:55 +0000 (00:03 +0000)
svn path=/trunk/; revision=64446

reactos/subsystems/ntvdm/cpu/bop.c
reactos/subsystems/ntvdm/int32.c

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