Rename KepArchInitialize() routine to KepInitializeMachine()

This commit is contained in:
2023-10-29 10:38:23 +01:00
parent f05a262da2
commit 6d63750fc2
5 changed files with 11 additions and 7 deletions

View File

@@ -18,7 +18,7 @@
*/
XTAPI
VOID
KepArchInitialize(VOID)
KepInitializeMachine(VOID)
{
/* Re-enable IDE interrupts */
HlIoPortOutByte(0x376, 0);
@@ -36,7 +36,9 @@ XTAPI
VOID
KepStartKernel(VOID)
{
DebugPrint(L"Hello from new kernel stack!\n");
/* Print debug message */
DebugPrint(L"Starting ExectOS ...\n");
for(;;);
}