New command in sh : dmesg

This commit is contained in:
Adrien Bourmault 2020-02-06 14:17:27 +01:00
parent 245b02c76e
commit 379a3d95bf
1 changed files with 6 additions and 4 deletions

View File

@ -67,17 +67,19 @@ noreturn void BtStartKern(multiboot_info_t *mbInfo, uint mbMagic, void *codeSeg)
// Memory
MmInitMemoryMap();
MmInitHeap();
MmInitGdt();
MmInitPaging();
// Interrupts
KeSetupIDT();
KeEnableIRQs();
KeEnableRTC();
KeEnablePIT();
// Memory (2)
MmInitGdt();
MmInitPaging();
// Interrupt handlers
MmActivatePageHandler();
KeEnableRTC();
KeEnablePIT();
KeGetCpuInfos();
IoEnableKeyb();