add files

This commit is contained in:
2026-01-09 20:50:02 +01:00
parent b064038c2d
commit 15c861c81d
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include <cstdint>
#include "../memory/pageframe.h"
namespace PageFrameAllocator {
void init ();
void stats ();
PageFrame* alloc(bool kernel);
void free (PageFrame *frame);
void free (uintptr_t addr);
}