summaryrefslogtreecommitdiff
path: root/sys/include/vm/vm.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-06-04 17:42:10 -0400
committerIan Moffett <ian@osmora.org>2024-06-04 17:42:10 -0400
commit8d545ea74f1387c7c99b88ee12ed26fe84bf6061 (patch)
tree4de06173b0ebfa0f5eb91bdc80489e4660a939c0 /sys/include/vm/vm.h
parent45d9b05c8e5f18d566631260267b47ea779e7743 (diff)
kernel: vm: Add physical memory allocator
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/vm/vm.h')
-rw-r--r--sys/include/vm/vm.h4
1 files changed, 4 insertions, 0 deletions
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