1 /* Parameters about the a.out format, based on the host system on which
2 the program is compiled. */
4 /* Address of data segment in memory after it is loaded.
5 It is up to you to define SEGMENT_SIZE
6 on machines not listed here. */
8 #if defined(hp300) || defined(pyr)
9 #define SEGMENT_SIZE page_size
12 #define SEGMENT_SIZE 0x1000
15 #define SEGMENT_SIZE 0x20000
17 #if defined(m68k) && defined(PORTAR)
18 #define TARGET_PAGE_SIZE 0x400
19 #define SEGMENT_SIZE TARGET_PAGE_SIZE
21 #endif /*!defined(SEGMENT_SIZE)*/