Kernel: Move kmalloc and MMU to Memory directory

This commit is contained in:
Bananymous
2023-04-14 13:30:21 +03:00
parent 998ae511a3
commit fdb4eb6042
15 changed files with 16 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
#include <BAN/Errors.h>
#include <kernel/IDT.h>
#include <kernel/InterruptController.h>
#include <kernel/kmalloc.h>
#include <kernel/Memory/kmalloc.h>
#include <kernel/Panic.h>
#include <kernel/Scheduler.h>

View File

@@ -1,6 +1,6 @@
#include <BAN/Errors.h>
#include <kernel/kmalloc.h>
#include <kernel/MMU.h>
#include <kernel/Memory/kmalloc.h>
#include <kernel/Memory/MMU.h>
#define PAGE_SIZE 0x1000
#define PAGE_MASK ~(PAGE_SIZE - 1)