[NTVDM]: DPRINT the CPU level for diagnostics purposes.

svn path=/trunk/; revision=64517
This commit is contained in:
Hermès Bélusca-Maïto 2014-10-04 00:18:39 +00:00
parent d01ad886a0
commit 317ae30716

View file

@ -124,10 +124,12 @@ VOID CpuSimulate(VOID)
return;
}
CpuCallLevel++;
DPRINT1("CpuSimulate --> Level %d\n", CpuCallLevel);
CpuRunning = TRUE;
while (VdmRunning && CpuRunning) ClockUpdate();
DPRINT1("CpuSimulate <-- Level %d\n", CpuCallLevel);
CpuCallLevel--;
if (CpuCallLevel < 0) CpuCallLevel = 0;