[Zion] Remove early_dbgln since dbgln no longer allocs.

This commit is contained in:
Drew Galbraith 2023-11-15 15:19:02 -08:00
parent 20d6d2aaaf
commit c5b9d20c7e
4 changed files with 3 additions and 20 deletions

View file

@ -18,11 +18,11 @@
#include "syscall/syscall.h"
extern "C" void zion() {
early_dbgln("[boot] Init GDT & IDT.");
dbgln("[boot] Init GDT & IDT.");
InitGdt();
InitIdt();
early_dbgln("[boot] Init Physical Memory Manager.");
dbgln("[boot] Init Physical Memory Manager.");
phys_mem::InitBootstrapPageAllocation();
KernelVmm kvmm;
KernelHeap heap;