stos: mm: Add PMM groundwork

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-22 05:12:42 +00:00
parent 6ac2b8842a
commit d59d66973d
4 changed files with 123 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: Physical memory management
* Author: Chloe M.
*/
#ifndef _MM_PMM_H_
#define _MM_PMM_H_ 1
#include <stdef.h>
/*
* Initialize the physical memory management
*/
VOID MmInitPmm(VOID);
#endif /* !_MM_PMM_H_ */