diff options
Diffstat (limited to 'sys/vm/vm_init.c')
-rw-r--r-- | sys/vm/vm_init.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index 255821a..3e9718d 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -29,8 +29,15 @@ #include <sys/limine.h> #include <vm/vm.h> +#include <vm/physmem.h> volatile struct limine_hhdm_request g_hhdm_request = { .id = LIMINE_HHDM_REQUEST, .revision = 0 }; + +void +vm_init(void) +{ + vm_physmem_init(); +} |