12345678910111213141516171819202122232425262728293031323334 |
- #ifndef _GPXE_MEMMAP_H
- #define _GPXE_MEMMAP_H
-
- #include <stdint.h>
-
-
-
-
- struct memory_region {
-
- uint64_t start;
-
- uint64_t end;
- };
-
-
- #define MAX_MEMORY_REGIONS 8
-
-
- struct memory_map {
-
- struct memory_region regions[MAX_MEMORY_REGIONS];
-
- unsigned int count;
- };
-
- extern void get_memmap ( struct memory_map *memmap );
-
- #endif
|