]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - bfd/i386bsd.c
support for 386bsd a.out files
[thirdparty/binutils-gdb.git] / bfd / i386bsd.c
1 /* BFD back-end for i386 a.out binaries.
2 Copyright (C) 1990, 1991 Free Software Foundation, Inc.
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 /* The only 386 aout system we have here is GO32 from DJ.
22 These numbers make BFD work with that. If your aout 386 system
23 doesn't work with these, we'll have to split them into different
24 files. Send me (sac@cygnus.com) the runes to make it work on your
25 system, and I'll stick it in for the next release.
26
27 */
28 #define TARGET_IS_LITTLE_ENDIAN_P
29 #define N_HEADER_IN_TEXT(x) 0
30 #define BYTES_IN_WORD 4
31 #define ARCH 32
32
33 #if 0
34 #define N_TXTOFF(x) 0x20
35 #define N_TXTADDR(x) (N_MAGIC(x)==ZMAGIC ? 0x1020 : 0)
36 #else
37 #define N_TXTOFF(x) (N_MAGIC(x)==ZMAGIC ? 0x1000 : 0x20)
38 #define N_TXTADDR(x) 0
39 #endif
40
41 #define N_TXTSIZE(x) ((x).a_text)
42 #if 0
43 #define N_DATADDR(x) (N_MAGIC(x)==OMAGIC? (N_TXTADDR(x)+(x).a_text) : (SEGMENT_SIZE + ((0x1020+(x).a_text-1) & ~(SEGMENT_SIZE-1))))
44 #define NOSUBEXECB
45
46 #endif
47 #define PAGE_SIZE 4096
48 #define SEGMENT_SIZE PAGE_SIZE
49 #define DEFAULT_ARCH bfd_arch_i386
50
51 #define MY(OP) CAT(i386bsd_,OP)
52 #define TARGETNAME "a.out-i386-bsd"
53
54 #include "bfd.h"
55 #include "sysdep.h"
56 #include "libbfd.h"
57 #include "libaout.h"
58 #include "aout-target.h"