Basic steps in XTOS boot protocol

このコミットが含まれているのは:
2022-12-14 22:17:17 +01:00
コミット 6871291c9a
2個のファイルの変更92行の追加3行の削除

ファイルの表示

@@ -18,8 +18,14 @@
*/
XTAPI
VOID
KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK LoaderBlock)
KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK Parameters)
{
/* Use XTLDR provided DbgPrint() routine for early printing to serial console */
VOID (*DbgPrint)(IN PWCHAR Format, IN ...) = Parameters->LoaderInformation.DbgPrint;
/* Print some message to serial console */
DbgPrint(L"Hello world from ExectOS kernel!\n");
/* Enter infinite kernel thread loop */
for(;;);
}