blob: fa3c1781ebd6c07bc85cdc1f9a6329861e17856f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <apos/sizes.h>
/* --- START ARCH USER CONFIG VALUES --- */
/* physical address to which the kernel will be loaded */
#define PM_KERN 0x83800000
/* --- END ARCH USER CONFIG VALUES --- */
/* don't touch >:( */
#define PM_STACK_BASE (PM_KERN + SZ_2M)
#define PM_STACK_TOP (PM_STACK_BASE + SZ_2M - 2)
#define VM_KERN (-SZ_1G)
#define TMP_PTE (-SZ_2G)
#define ROOT_PTE (0)
#define ROOT_REGION (SZ_4K)
|