Add stub routine for identifying processor
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-05 00:42:30 +01:00
parent c6cadbd655
commit 0b743a5f26
3 changed files with 21 additions and 2 deletions

View File

@@ -53,11 +53,20 @@ ArInitializeProcessor(VOID)
ArLoadInterruptDescriptorTable(&IdtDescriptor.Limit);
ArLoadTaskRegister((UINT)KGDT_SYS_TSS);
/* Enter passive IRQ level */
ProcessorBlock->Irql = PASSIVE_LEVEL;
/* Load FS segment */
ArLoadSegment(SEGMENT_FS, KGDT_R0_PB);
/* Enter passive IRQ level */
ProcessorBlock->Irql = PASSIVE_LEVEL;
/* Identify processor */
ArpIdentifyProcessor();
}
XTAPI
VOID
ArpIdentifyProcessor(VOID)
{
}
/**