1
0
geforkt von xt-sys/exectos

Reorganisation of KeStartXtSystem() routine and early debug printing

Dieser Commit ist enthalten in:
2023-01-04 23:08:59 +01:00
Ursprung b7e5f1b5c1
Commit 5730e8692e
4 geänderte Dateien mit 30 neuen und 24 gelöschten Zeilen

Datei anzeigen

@@ -9,6 +9,9 @@
#include <xtos.h>
/* Kernel initialization block passed by boot loader */
PKERNEL_INITIALIZATION_BLOCK KeInitializationBlock;
/* Kernel own boot stack */
UCHAR KepKernelBootStackData[KERNEL_STACK_SIZE] = {0};
@@ -16,4 +19,4 @@ UCHAR KepKernelBootStackData[KERNEL_STACK_SIZE] = {0};
UCHAR KepKernelFaultStackData[KERNEL_STACK_SIZE] = {0};
/* Pointer to boot loader provided DbgPrint() routine */
VOID (*LdrPrint)(IN PWCHAR Format, IN ...) = NULL;
VOID (*LdrDbgPrint)(IN PWCHAR Format, IN ...) = NULL;