xref: /openbsd-src/gnu/usr.bin/binutils/bfd/coff-u68k.c (revision 2159047f7a97bd07d66507696a8b038f6aef0509)
1*2159047fSniklas /* BFD back-end for Motorola 68000 COFF binaries having underscore with name.
2*2159047fSniklas    Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
3*2159047fSniklas    Written by Cygnus Support.
4*2159047fSniklas 
5*2159047fSniklas This file is part of BFD, the Binary File Descriptor library.
6*2159047fSniklas 
7*2159047fSniklas This program is free software; you can redistribute it and/or modify
8*2159047fSniklas it under the terms of the GNU General Public License as published by
9*2159047fSniklas the Free Software Foundation; either version 2 of the License, or
10*2159047fSniklas (at your option) any later version.
11*2159047fSniklas 
12*2159047fSniklas This program is distributed in the hope that it will be useful,
13*2159047fSniklas but WITHOUT ANY WARRANTY; without even the implied warranty of
14*2159047fSniklas MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*2159047fSniklas GNU General Public License for more details.
16*2159047fSniklas 
17*2159047fSniklas You should have received a copy of the GNU General Public License
18*2159047fSniklas along with this program; if not, write to the Free Software
19*2159047fSniklas Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20*2159047fSniklas 
21*2159047fSniklas #define TARGET_SYM	m68kcoffun_vec
22*2159047fSniklas #define TARGET_NAME	"coff-m68k-un"
23*2159047fSniklas 
24*2159047fSniklas #define NAMES_HAVE_UNDERSCORE
25*2159047fSniklas 
26*2159047fSniklas /* define this to not have multiple copy of m68k_rtype2howto
27*2159047fSniklas    in the executable file */
28*2159047fSniklas #define ONLY_DECLARE_RELOCS
29*2159047fSniklas 
30*2159047fSniklas /* This magic number indicates that the names have underscores.
31*2159047fSniklas    Other 68k magic numbers indicate that the names do not have
32*2159047fSniklas    underscores.  */
33*2159047fSniklas #define BADMAG(x) ((x).f_magic != MC68KBCSMAGIC)
34*2159047fSniklas 
35*2159047fSniklas #include "coff-m68k.c"
36