]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gdb/bfd/i386aout.c
This commit was generated by cvs2svn to compensate for changes in r26238,
[FreeBSD/FreeBSD.git] / contrib / gdb / bfd / i386aout.c
1 /* BFD back-end for i386 a.out binaries.
2    Copyright 1990, 1991, 1992 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 #define N_HEADER_IN_TEXT(x) 0
28 #define BYTES_IN_WORD 4
29
30 #define N_TXTOFF(x) 0x20
31 #define N_TXTADDR(x) (N_MAGIC(x)==ZMAGIC ? 0x1020 : 0)
32
33 #define N_TXTSIZE(x) ((x).a_text)
34 #if 0
35 #define N_DATADDR(x) (N_MAGIC(x)==OMAGIC? (N_TXTADDR(x)+(x).a_text) : (SEGMENT_SIZE + ((0x1020+(x).a_text-1) & ~(SEGMENT_SIZE-1))))
36 #define NOSUBEXECB
37
38 #endif
39 #define TARGET_PAGE_SIZE 4096
40 #define SEGMENT_SIZE 0x400000
41 #define DEFAULT_ARCH bfd_arch_i386
42
43 #define MY(OP) CAT(i386aout_,OP)
44 #define TARGETNAME "a.out-i386"
45 #define NO_WRITE_HEADER_KLUDGE 1
46
47 #include "bfd.h"
48 #include "sysdep.h"
49 #include "libbfd.h"
50 #include "libaout.h"
51 static boolean MY(set_sizes)();
52 #define MY_backend_data &MY(backend_data)
53 static CONST struct aout_backend_data MY(backend_data) = {
54   0,                            /* zmagic contiguous */
55   1,                            /* text incl header */
56   0,                            /* exec_hdr_flags */
57   0,                            /* text vma? */
58   MY(set_sizes),
59   1,                            /* exec header not counted */
60   0,                            /* add_dynamic_symbols */
61   0,                            /* add_one_symbol */
62   0,                            /* link_dynamic_object */
63   0,                            /* write_dynamic_symbol */
64   0,                            /* check_dynamic_reloc */
65   0                             /* finish_dynamic_link */
66 };
67
68 #include "aout-target.h"