kern

view src/mem.h @ 18:096807345aa2

fixed the stupid mistake. forgot to page-align the page directory
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 27 Mar 2011 06:28:26 +0300
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_ */