Reorganisation of KeStartXtSystem() routine and early debug printing

This commit is contained in:
2023-01-04 23:08:59 +01:00
parent b7e5f1b5c1
commit 5730e8692e
4 changed files with 30 additions and 24 deletions

View File

@@ -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;