[BOOT:MM] Begin work on memory manager

This commit is contained in:
2024-08-26 11:20:25 -04:00
parent 664bf6d713
commit 1581638c26
8 changed files with 279 additions and 7 deletions

27
BOOT/ENVIRON/INC/mm.h Normal file
View File

@@ -0,0 +1,27 @@
/*++
Copyright (c) 2024, Quinn Stephens.
Provided under the BSD 3-Clause license.
Module Name:
mm.h
Abstract:
Boot memory manager definitions.
--*/
#ifndef _MM_H
#define _MM_H
#include "bootlib.h"
NTSTATUS
MmPaInitialize (
IN PBOOT_MEMORY_INFO MemoryInfo,
IN ULONG MinimumAllocation
);
#endif