* Sync up to trunk head (r64716).
[reactos.git] / subsystems / ntvdm / cpu / cpu.c
index bd74409..662edfc 100644 (file)
@@ -124,10 +124,12 @@ VOID CpuSimulate(VOID)
         return;
     }
     CpuCallLevel++;
+    DPRINT("CpuSimulate --> Level %d\n", CpuCallLevel);
 
     CpuRunning = TRUE;
     while (VdmRunning && CpuRunning) ClockUpdate();
 
+    DPRINT("CpuSimulate <-- Level %d\n", CpuCallLevel);
     CpuCallLevel--;
     if (CpuCallLevel < 0) CpuCallLevel = 0;