Migrate KD subsystem to C++
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 32s
Builds / ExectOS (amd64, release) (push) Successful in 31s
Builds / ExectOS (i686, debug) (push) Successful in 28s
Builds / ExectOS (i686, release) (push) Successful in 26s

This commit is contained in:
2025-09-13 23:40:07 +02:00
parent 4592955da1
commit 79ec28641a
12 changed files with 453 additions and 406 deletions

View File

@@ -42,7 +42,7 @@ KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK Parameters)
if(DEBUG && BootInformation::GetDebugPrint())
{
/* Use loader's provided DbgPrint() routine for early printing to serial console */
KdSetPrintRoutine(BootInformation::GetDebugPrint());
KD::DebugIo::SetPrintRoutine(BootInformation::GetDebugPrint());
DebugPrint(L"Initializing ExectOS v%d.%d for %s\n", XTOS_VERSION_MAJOR, XTOS_VERSION_MINOR, _ARCH_NAME);
}
@@ -56,7 +56,7 @@ KeStartXtSystem(IN PKERNEL_INITIALIZATION_BLOCK Parameters)
if(DEBUG)
{
/* Initialize debug I/O */
KdInitializeDebugIoProviders();
KD::DebugIo::InitializeDebugIoProviders();
}
/* Announce kernel startup */