Added little endian a.out.
[deliverable/binutils-gdb.git] / bfd / targets.c
1 /* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
2
3 This file is part of BFD, the Binary File Diddler.
4
5 BFD is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 1, or (at your option)
8 any later version.
9
10 BFD is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with BFD; see the file COPYING. If not, write to
17 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
18
19 /* $Id$ */
20
21
22 /* This -*- C -*- source file will someday be machine-generated */
23
24 /*** Defines the target vector through which operations dispatch */
25 #include "sysdep.h"
26 #include "bfd.h"
27 #include "libbfd.h"
28
29 extern bfd_target aoutvec;
30 extern bfd_target aout_little_vec;
31 extern bfd_target srec_vec;
32 extern bfd_target b_out_vec_little_host;
33 extern bfd_target b_out_vec_big_host;
34 extern bfd_target icoff_little_vec;
35 extern bfd_target icoff_big_vec;
36 extern bfd_target ieee_vec;
37 extern bfd_target oasys_vec;
38 extern bfd_target m88k_bcs_vec;
39
40 bfd_target *target_vector[] = {
41 &aout_little_vec,
42 &ieee_vec,
43 &oasys_vec,
44 &icoff_big_vec,
45 &aoutvec,
46 &icoff_little_vec,
47 &m88k_bcs_vec,
48 &b_out_vec_big_host,
49 &b_out_vec_little_host,
50 &srec_vec,
51 NULL,
52 };
This page took 0.03341 seconds and 5 git commands to generate.