fix: irqs are handled correctly with regs->int_no (and the keyboard handler works)

This commit is contained in:
2024-10-09 18:03:17 +02:00
parent 4fb51d4356
commit e5d7b80ed5
4 changed files with 6 additions and 8 deletions

View File

@ -28,8 +28,8 @@ void kernel_main(void)
init_gdt();
init_idt();
init_memory();
/* load_drivers(); */
/* while (42) */
/* ; */
shell_init();
load_drivers();
while (42)
;
/* shell_init(); */
}