From 8d545ea74f1387c7c99b88ee12ed26fe84bf6061 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 4 Jun 2024 17:42:10 -0400 Subject: kernel: vm: Add physical memory allocator Signed-off-by: Ian Moffett --- sys/include/vm/vm.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sys/include/vm/vm.h') diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h index a4a073f..a2caa8c 100644 --- a/sys/include/vm/vm.h +++ b/sys/include/vm/vm.h @@ -39,4 +39,8 @@ extern volatile struct limine_hhdm_request g_hhdm_request; #define PHYS_TO_VIRT(phys) (void *)((uintptr_t)phys + VM_HIGHER_HALF) #define VIRT_TO_PHYS(virt) ((uintptr_t)virt - VM_HIGHER_HALF) +#define DEFAULT_PAGESIZE 4096 + +void vm_init(void); + #endif -- cgit v1.2.3