fix: gdt work I think

This commit is contained in:
2024-09-10 21:36:28 +02:00
parent bc99b99c82
commit 365ed0cc2e
4 changed files with 80 additions and 73 deletions

View File

@ -1,6 +1,8 @@
#include "gdt.h"
#include "shell.h"
#include "terminal.h"
#include "power.h"
#include "gdt.h"
#include <stdbool.h>
#include <stddef.h>
@ -22,6 +24,6 @@ void kernel_main(void)
/* Initialize terminal interface */
terminal_initialize();
/* initGdt(); */
initGdt();
shell_init();
}