[NTVDM]: Add debug print for timer ticks to try to find why the emulator sometimes hangs...

svn path=/branches/ntvdm/; revision=61867
This commit is contained in:
Hermès Bélusca-Maïto 2014-01-28 20:39:16 +00:00
parent 03d8479401
commit f2a98176d6

View file

@ -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;
}