]>
Commit | Line | Data |
---|---|---|
df77307a JG |
1 | /* Parameters about the a.out format, based on the host system on which |
2 | the program is compiled. */ | |
3 | ||
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. */ | |
7 | #ifndef SEGMENT_SIZE | |
8 | #if defined(hp300) || defined(pyr) | |
9 | #define SEGMENT_SIZE page_size | |
10 | #endif | |
11 | #ifdef sony | |
23adc117 | 12 | #define SEGMENT_SIZE 0x1000 |
df77307a JG |
13 | #endif /* Sony. */ |
14 | #ifdef is68k | |
15 | #define SEGMENT_SIZE 0x20000 | |
16 | #endif | |
17 | #if defined(m68k) && defined(PORTAR) | |
18 | #define PAGE_SIZE 0x400 | |
19 | #define SEGMENT_SIZE PAGE_SIZE | |
20 | #endif | |
21 | #endif /*!defined(SEGMENT_SIZE)*/ | |
22 |