3 This code was written as part of the CMU Common Lisp project at
4 Carnegie Mellon University, and has been placed in the public domain.
8 #ifndef _HPPA_VALIDATE_H_
9 #define _HPPA_VALIDATE_H_
11 #define READ_ONLY_SPACE_START (0x20000000)
12 #define READ_ONLY_SPACE_SIZE (0x08000000)
14 #define STATIC_SPACE_START (0x28000000)
15 #define STATIC_SPACE_SIZE (0x08000000)
17 #define DYNAMIC_0_SPACE_START (0x30000000)
18 #define DYNAMIC_1_SPACE_START (0x50000000)
19 #define DYNAMIC_SPACE_SIZE (0x20000000)
21 #define CONTROL_STACK_START (0x70000000)
22 #define CONTROL_STACK_SIZE (0x00100000)
24 #define BINDING_STACK_START (0x71000000)
25 #define BINDING_STACK_SIZE (0x00100000)
27 #endif /* _HPPA_VALIDATE_H_ */