xref: /openbsd-src/gnu/usr.bin/binutils/bfd/cpu-pdp11.c (revision d2201f2f89f0be1a0be6f7568000ed297414a06d)
1*d2201f2fSdrahn /* BFD back-end for PDP-11 support.
2*d2201f2fSdrahn    Copyright 2001, 2002 Free Software Foundation, Inc.
3*d2201f2fSdrahn 
4*d2201f2fSdrahn This file is part of BFD, the Binary File Descriptor library.
5*d2201f2fSdrahn 
6*d2201f2fSdrahn This program is free software; you can redistribute it and/or modify
7*d2201f2fSdrahn it under the terms of the GNU General Public License as published by
8*d2201f2fSdrahn the Free Software Foundation; either version 2 of the License, or
9*d2201f2fSdrahn (at your option) any later version.
10*d2201f2fSdrahn 
11*d2201f2fSdrahn This program is distributed in the hope that it will be useful,
12*d2201f2fSdrahn but WITHOUT ANY WARRANTY; without even the implied warranty of
13*d2201f2fSdrahn MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14*d2201f2fSdrahn GNU General Public License for more details.
15*d2201f2fSdrahn 
16*d2201f2fSdrahn You should have received a copy of the GNU General Public License
17*d2201f2fSdrahn along with this program; if not, write to the Free Software
18*d2201f2fSdrahn Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19*d2201f2fSdrahn 
20*d2201f2fSdrahn #include "bfd.h"
21*d2201f2fSdrahn #include "sysdep.h"
22*d2201f2fSdrahn #include "libbfd.h"
23*d2201f2fSdrahn 
24*d2201f2fSdrahn const bfd_arch_info_type bfd_pdp11_arch =
25*d2201f2fSdrahn   {
26*d2201f2fSdrahn     16,	/* 16 bits in a word */
27*d2201f2fSdrahn     16,	/* 16 bits in an address */
28*d2201f2fSdrahn     8,	/* 8 bits in a byte */
29*d2201f2fSdrahn     bfd_arch_pdp11,
30*d2201f2fSdrahn     0,	/* only 1 machine */
31*d2201f2fSdrahn     "pdp11",
32*d2201f2fSdrahn     "pdp11",
33*d2201f2fSdrahn     1,		/* aligment = 16 bit */
34*d2201f2fSdrahn     TRUE, /* the one and only */
35*d2201f2fSdrahn     bfd_default_compatible,
36*d2201f2fSdrahn     bfd_default_scan ,
37*d2201f2fSdrahn     0,
38*d2201f2fSdrahn   };
39*d2201f2fSdrahn 
40