#define KERNEL_STACK_SIZE 0x100000UL
#define KERNEL_STACK_END 0x3ffff0UL
+#define USR_EXEC 0x400000UL
+#define USR_EXEC_SIZE 0x20000000UL
+#define USR_EXEC_END 0x203fffffUL
+
+#define USR_MMAP 0x20400000UL
+#define USR_MMAP_SIZE 0x9f800000UL
+#define USR_MMAP_END 0xbfbfffffUL
+
+#define USR_STACK 0xbfc00000UL
+#define USR_STACK_SIZE 0x400000UL
+#define USR_STACK_END 0xbffffff0UL
+
#define KERNEL_EXEC 0xc0000000UL
#define KERNEL_EXEC_SIZE 0x4000000UL
#define KERNEL_EXEC_END 0xc3ffffffUL