Add debug screen clear at end of kernel initialization

This commit is contained in:
2025-09-01 16:27:28 +02:00
parent 84ac8f00e0
commit 5ff9303bd1
2 changed files with 2 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ KepStartKernel(VOID)
CurrentProcess->ActiveProcessors |= (ULONG_PTR)1 << Prcb->CpuNumber;
/* Enter infinite loop */
HlClearScreen(0x7F7F7FFF);
DebugPrint(L"KepStartKernel() finished. Entering infinite loop.\n");
for(;;);
}