]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - include/aout/host.h
Eliminate ARCH_NUM_REGS.
[thirdparty/binutils-gdb.git] / include / aout / host.h
CommitLineData
252b5132
RH
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
12#define SEGMENT_SIZE 0x1000
13#endif /* Sony. */
14#ifdef is68k
15#define SEGMENT_SIZE 0x20000
16#endif
17#if defined(m68k) && defined(PORTAR)
18#define TARGET_PAGE_SIZE 0x400
19#define SEGMENT_SIZE TARGET_PAGE_SIZE
20#endif
21#endif /*!defined(SEGMENT_SIZE)*/
22