summaryrefslogtreecommitdiffstats
path: root/src/include/mem.h
blob: e8f633b25aa18e01d5d167a5a3961972def44b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MEM_H
#define MEM_H

struct mem_range {
	unsigned long basek;
	unsigned long sizek;
};

/* mem_range arrays are non-overlapping, in ascending order and null terminated */

struct mem_range *sizeram(void);

#endif /* MEM_H */