*** empty log message ***
[external/binutils.git] / bfd / coff-m88k.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
20 /* $Id$ */
21
22 #define M88 1
23 #include <ansidecl.h>
24 #include <sysdep.h>
25 #include "bfd.h"
26 #include "libbfd.h"
27 #include "obstack.h"
28 #include "m88k-bcs.h"
29 #include "libcoff.h"
30
31
32
33 static reloc_howto_type howto_table[] = 
34 {
35 /*      type    rtshift size    bitsize pc_rel  bitpos abs ovff sf  name partial inplace mask*/ 
36         R_PCR16L, 2,    1,      16,     true,   0, false, true, 0,"PCR16L", false, 0x0000ffff,0x0000ffff,
37         R_PCR26L, 2,    2,      26,     true,   0, false, true, 0,"PCR26L", false, 0x03ffffff,0x03ffffff,
38         R_VRT16, 0,     1,      16,     false,  0, false, true, 0,"VRT16", false, 0x0000ffff,0x0000ffff,
39         R_HVRT16,16,    1,      16,     false,  0, false, true, 0,"HVRT16", false, 0x0000ffff,0x0000ffff,
40         R_LVRT16, 0,    1,      16,     false,  0, false, true, 0,"LVRT16", false, 0x0000ffff,0x0000ffff,
41         R_VRT32,  0,    2,      32,     false,  0, false, true, 0,"VRT32", false, 0xffffffff,0xffffffff,
42 };
43
44
45
46 #define BADMAG(x) MC88BADMAG(x)
47 #include "coff-code.h"
48
49
50
51
52 #define coff_write_armap bsd_write_armap
53
54
55 bfd_target m88k_bcs_vec =
56 {
57   "m88kbcs",            /* name */
58   bfd_target_coff_flavour_enum,
59   true,                         /* data byte order is big */
60   true,                         /* header byte order is big */
61
62   (HAS_RELOC | EXEC_P |         /* object flags */
63    HAS_LINENO | HAS_DEBUG |
64    HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT),
65
66   (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
67   '/',                          /* ar_pad_char */
68   15,                           /* ar_max_namelen */
69
70   _do_getllong, _do_putllong, _do_getlshort, _do_putlshort, /* data */
71   _do_getblong, _do_putblong, _do_getbshort, _do_putbshort, /* hdrs */
72
73   {_bfd_dummy_target, coff_object_p, /* bfd_check_format */
74      bfd_generic_archive_p, _bfd_dummy_target},
75   {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */
76      bfd_false},
77
78      JUMP_TABLE(coff)
79
80   };
81
82
83