This is the last one I gave to Telebit, minus all the print_msg's.
[deliverable/binutils-gdb.git] / bfd / coff-m88k.c
CommitLineData
a7fe4c59
SC
1/* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
2
3This file is part of BFD, the Binary File Diddler.
4
5BFD is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 1, or (at your option)
8any later version.
9
10BFD is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with BFD; see the file COPYING. If not, write to
17the 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"
9872a49c 27#include "obstack.h"
a7fe4c59 28#include "m88k-bcs.h"
9872a49c
SC
29#include "libcoff.h"
30
a7fe4c59
SC
31
32
33static reloc_howto_type howto_table[] =
34{
35/* type rtshift size bitsize pc_rel bitpos abs ovff sf name partial inplace mask*/
9872a49c
SC
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,
a7fe4c59
SC
42};
43
44
45
46#define BADMAG(x) MC88BADMAG(x)
47#include "coff-code.h"
48
49
50
9872a49c
SC
51
52#define coff_write_armap bsd_write_armap
53
54
a7fe4c59
SC
55bfd_target m88k_bcs_vec =
56{
9872a49c 57 "m88kbcs", /* name */
a7fe4c59 58 bfd_target_coff_flavour_enum,
9872a49c 59 true, /* data byte order is big */
a7fe4c59
SC
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 */
a7fe4c59
SC
67 '/', /* ar_pad_char */
68 15, /* ar_max_namelen */
a7fe4c59
SC
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},
9872a49c
SC
77
78 JUMP_TABLE(coff)
79
a7fe4c59
SC
80 };
81
82
83
This page took 0.044996 seconds and 4 git commands to generate.