Correcting bug
This commit is contained in:
parent
f4055f9586
commit
7dc39cf628
|
@ -67,6 +67,8 @@ noreturn void BtStartKern(multiboot_info_t *mbInfo, uint mbMagic, void *codeSeg)
|
|||
// Memory
|
||||
MmInitMemoryMap();
|
||||
MmInitHeap();
|
||||
MmInitGdt();
|
||||
MmInitPaging();
|
||||
|
||||
// Interrupts
|
||||
KeSetupIDT();
|
||||
|
@ -74,10 +76,6 @@ noreturn void BtStartKern(multiboot_info_t *mbInfo, uint mbMagic, void *codeSeg)
|
|||
KeEnableRTC();
|
||||
KeEnablePIT();
|
||||
|
||||
// Memory (2)
|
||||
MmInitGdt();
|
||||
MmInitPaging();
|
||||
|
||||
// Interrupt handlers
|
||||
MmActivatePageHandler();
|
||||
KeGetCpuInfos();
|
||||
|
|
Loading…
Reference in New Issue