From 3be168d44e469adcbb3d283999fce4bfe7ffa261 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 14 Sep 2025 15:28:12 -0400 Subject: os: vm: Add physical memory manager Signed-off-by: Ian Moffett --- src/sys/include/vm/vm.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/sys/include/vm/vm.h') diff --git a/src/sys/include/vm/vm.h b/src/sys/include/vm/vm.h index ba76b98..476ff27 100644 --- a/src/sys/include/vm/vm.h +++ b/src/sys/include/vm/vm.h @@ -38,4 +38,6 @@ #define VIRT_TO_PHYS(VIRT) ((uintptr_t)(VIRT) - VM_HIGHER_HALF) #define DEFAULT_PAGESIZE 4096 +void vm_init(void); + #endif /* !_VM_H_ */ -- cgit v1.2.3