1
0
feito fork de xt-sys/exectos

Rename KepArchInitialize() routine to KepInitializeMachine()

Esse commit está contido em:
2023-10-29 10:38:23 +01:00
commit 6d63750fc2
5 arquivos alterados com 11 adições e 7 exclusões

Ver arquivo

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