From f2a98176d6f26091b4da0a38ab2b72ef184e4e75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Tue, 28 Jan 2014 20:39:16 +0000 Subject: [PATCH] [NTVDM]: Add debug print for timer ticks to try to find why the emulator sometimes hangs... svn path=/branches/ntvdm/; revision=61867 --- subsystems/ntvdm/ntvdm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsystems/ntvdm/ntvdm.c b/subsystems/ntvdm/ntvdm.c index 9d5e6cfb565..004c42e7d90 100644 --- a/subsystems/ntvdm/ntvdm.c +++ b/subsystems/ntvdm/ntvdm.c @@ -331,7 +331,7 @@ INT wmain(INT argc, WCHAR *argv[]) #ifdef IPS_DISPLAY if ((CurrentTickCount - LastCyclePrintout) >= 1000) { - DPRINT1("NTVDM: %lu Instructions Per Second\n", Cycles); + DPRINT1("NTVDM: %lu Instructions Per Second; TimerTicks = %lu\n", Cycles, TimerTicks); LastCyclePrintout = CurrentTickCount; Cycles = 0; }