Add debug screen clear at end of kernel initialization

This commit is contained in:
2025-09-01 16:27:28 +02:00
父節點 84ac8f00e0
當前提交 5ff9303bd1
共有 2 個文件被更改,包括 2 次插入0 次删除

查看文件

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

查看文件

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