13 /** A usable memory region */
14 struct memory_region {
15 /** Physical start address */
17 /** Physical end address */
21 /** Maximum number of memory regions we expect to encounter */
22 #define MAX_MEMORY_REGIONS 8
27 struct memory_region regions[MAX_MEMORY_REGIONS];
28 /** Number of used regions */
32 extern void get_memmap ( struct memory_map *memmap );
34 #endif /* _MEMMAP_H */