Skip to content
Snippets Groups Projects
Commit d7f0afd4 authored by wlott's avatar wlott
Browse files

Decreased the sizes slightly so that the various segments end on a 32k

boundry.  This is so that I don't have to change some assumptions in the
sunos support code.
parent c145ed27
No related branches found
No related tags found
No related merge requests found
#define READ_ONLY_SPACE_START (0x00200000) #define READ_ONLY_SPACE_START (0x00200000)
#define READ_ONLY_SPACE_SIZE (0x0bdfe000) #define READ_ONLY_SPACE_SIZE (0x0bdf8000)
#define STATIC_SPACE_START (0x0c000000) #define STATIC_SPACE_START (0x0c000000)
#define STATIC_SPACE_SIZE (0x03ffe000) #define STATIC_SPACE_SIZE (0x03ff8000)
#define DYNAMIC_0_SPACE_START (0x10000000) #define DYNAMIC_0_SPACE_START (0x10000000)
#define DYNAMIC_1_SPACE_START (0x18000000) #define DYNAMIC_1_SPACE_START (0x18000000)
#define DYNAMIC_SPACE_SIZE (0x07ffe000) #define DYNAMIC_SPACE_SIZE (0x07ff8000)
#define CONTROL_STACK_START (0x00100000) #define CONTROL_STACK_START (0x00100000)
#define CONTROL_STACK_SIZE (0x0007e000) #define CONTROL_STACK_SIZE (0x00078000)
#define BINDING_STACK_START (0x00180000) #define BINDING_STACK_START (0x00180000)
#define BINDING_STACK_SIZE (0x0007e000) #define BINDING_STACK_SIZE (0x00078000)
#ifdef SUNOS #ifdef SUNOS
#define NUMBER_STACK_START (0xf7ef0000) #define NUMBER_STACK_START (0xf7ef0000)
...@@ -22,5 +22,5 @@ ...@@ -22,5 +22,5 @@
#endif #endif
#define NUMBER_STACK_SIZE (0x00100000) #define NUMBER_STACK_SIZE (0x00100000)
#define HOLES {0x0bffe000, 0x0fffe000, 0x17ffe000, 0x1fffe000} #define HOLES {0x0bff8000, 0x0fff8000, 0x17ff8000, 0x1fff8000}
#define HOLE_SIZE 0x2000 #define HOLE_SIZE 0x2000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment