feature: start to implement keyboard handler and better isrs/irqs

This commit is contained in:
2024-10-09 17:54:29 +02:00
parent 0812a06350
commit 4fb51d4356
11 changed files with 451 additions and 141 deletions

View File

@ -1,3 +1,4 @@
#include "drivers.h"
#include "gdt.h"
#include "idt.h"
#include "kprintf.h"
@ -27,5 +28,8 @@ void kernel_main(void)
init_gdt();
init_idt();
init_memory();
/* load_drivers(); */
/* while (42) */
/* ; */
shell_init();
}