start of page allocation

This commit is contained in:
Liam Kerr 2026-02-08 23:51:37 +00:00
parent a0973fe49d
commit e64cf1ef72
5 changed files with 52 additions and 1 deletions

7
src/kernel/memory.h Normal file
View file

@ -0,0 +1,7 @@
#ifndef KMEMORY_H
#define KMEMORY_H
void page_init();
void page_free(void *addr);
#endif