mirror of
https://github.com/Team-Resurgent/halo.git
synced 2026-04-30 10:48:22 -07:00
27 lines
435 B
C
27 lines
435 B
C
/*
|
|
PHYSICAL_MEMORY_MAP.H
|
|
|
|
header included in hcex build.
|
|
*/
|
|
|
|
#ifndef __PHYSICAL_MEMORY_MAP_H
|
|
#define __PHYSICAL_MEMORY_MAP_H
|
|
#pragma once
|
|
|
|
/* ---------- constants */
|
|
|
|
/* ---------- macros */
|
|
|
|
/* ---------- structures */
|
|
|
|
/* ---------- prototypes/PHYSICAL_MEMORY_MAP.C */
|
|
|
|
void physical_memory_allocate(void);
|
|
void physical_memory_verify(void);
|
|
|
|
/* ---------- globals */
|
|
|
|
/* ---------- public code */
|
|
|
|
#endif // __PHYSICAL_MEMORY_MAP_H
|