1
0
geforkt von xt-sys/exectos

Basic steps in XTOS boot protocol

Dieser Commit ist enthalten in:
2022-12-14 22:17:17 +01:00
Ursprung 8b9c6780d5
Commit 6871291c9a
2 geänderte Dateien mit 92 neuen und 3 gelöschten Zeilen

Datei anzeigen

@@ -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(;;);
}