feature: enable paging and load page directory

This commit is contained in:
2024-09-18 17:14:06 +02:00
parent 65a59534b4
commit ddf3cfff68
5 changed files with 74 additions and 4 deletions

View File

@ -1,8 +1,7 @@
#include "gdt.h"
#include "memory.h"
#include "shell.h"
#include "terminal.h"
/* #include "power.h" */
#include "gdt.h"
#include <stdbool.h>
#include <stddef.h>
@ -21,9 +20,8 @@
void kernel_main(void)
{
/* Initialize terminal interface */
terminal_initialize();
init_gdt();
init_memory();
shell_init();
}