1*d2201f2fSdrahn /* BFD support for the Scenix IP2xxx processor. 2*d2201f2fSdrahn Copyright 2000, 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_ip2k_nonext_arch = 25*d2201f2fSdrahn { 26*d2201f2fSdrahn 32, /* Bits per word - not really true. */ 27*d2201f2fSdrahn 16, /* Bits per address. */ 28*d2201f2fSdrahn 8, /* Bits per byte. */ 29*d2201f2fSdrahn bfd_arch_ip2k, /* Architecture. */ 30*d2201f2fSdrahn bfd_mach_ip2022, /* Machine. */ 31*d2201f2fSdrahn "ip2k", /* Architecture name. */ 32*d2201f2fSdrahn "ip2022", /* Machine name. */ 33*d2201f2fSdrahn 1, /* Section align power. */ 34*d2201f2fSdrahn FALSE, /* The default ? */ 35*d2201f2fSdrahn bfd_default_compatible, /* Architecture comparison fn. */ 36*d2201f2fSdrahn bfd_default_scan, /* String to architecture convert fn. */ 37*d2201f2fSdrahn NULL /* Next in list. */ 38*d2201f2fSdrahn }; 39*d2201f2fSdrahn 40*d2201f2fSdrahn const bfd_arch_info_type bfd_ip2k_arch = 41*d2201f2fSdrahn { 42*d2201f2fSdrahn 32, /* Bits per word - not really true. */ 43*d2201f2fSdrahn 16, /* Bits per address. */ 44*d2201f2fSdrahn 8, /* Bits per byte. */ 45*d2201f2fSdrahn bfd_arch_ip2k, /* Architecture. */ 46*d2201f2fSdrahn bfd_mach_ip2022ext, /* Machine. */ 47*d2201f2fSdrahn "ip2k", /* Architecture name. */ 48*d2201f2fSdrahn "ip2022ext", /* Machine name. */ 49*d2201f2fSdrahn 1, /* Section align power. */ 50*d2201f2fSdrahn TRUE, /* The default ? */ 51*d2201f2fSdrahn bfd_default_compatible, /* Architecture comparison fn. */ 52*d2201f2fSdrahn bfd_default_scan, /* String to architecture convert fn. */ 53*d2201f2fSdrahn & bfd_ip2k_nonext_arch /* Next in list. */ 54*d2201f2fSdrahn }; 55