1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

New command in sh : dmesg

This commit is contained in:
Adrien Bourmault 2020-02-06 14:17:27 +01:00
parent 245b02c76e
commit 379a3d95bf

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