zeroing bss and changing init ordering

This commit is contained in:
Liam Kerr 2026-02-11 00:12:14 +00:00
parent df0e78ede2
commit 19d981c878
3 changed files with 18 additions and 7 deletions

View file

@ -8,14 +8,13 @@
void kmain()
{
kputs("----------------------");
kprintf("Hello, from %s!", "SquidgeOS");
kputs("----------------------");
knewline();
zero_bss();
plic_init();
uart_init();
page_init();
interrupt_init();
kpanic_force();
kputs("----------------------");
kprintf("Hello, from %s!", "SquidgeOS");
kputs("----------------------");
knewline();
}