kern

view src/mem.h @ 17:098b1cb5eeaa

forgot to add a shitload of files
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 26 Mar 2011 21:39:14 +0200
parents
children 8be069e6bb05
line source
1 #ifndef MEM_H_
2 #define MEM_H_
4 #include "mboot.h"
6 /* maximum break for the early allocator */
7 #define MAX_BRK 0x400000
9 void init_mem(struct mboot_info *mb);
10 uint32_t alloc_phys_page(void);
12 #endif /* MEM_H_ */