1*d2201f2fSdrahn /* BFD support for the OpenRISC architecture. 2*d2201f2fSdrahn Copyright 2001, 2002 Free Software Foundation, Inc. 3*d2201f2fSdrahn Contributed by Johan Rydberg, jrydberg@opencores.org 4*d2201f2fSdrahn 5*d2201f2fSdrahn This file is part of BFD, the Binary File Descriptor library. 6*d2201f2fSdrahn 7*d2201f2fSdrahn This program is free software; you can redistribute it and/or modify 8*d2201f2fSdrahn it under the terms of the GNU General Public License as published by 9*d2201f2fSdrahn the Free Software Foundation; either version 2 of the License, or 10*d2201f2fSdrahn (at your option) any later version. 11*d2201f2fSdrahn 12*d2201f2fSdrahn This program is distributed in the hope that it will be useful, 13*d2201f2fSdrahn but WITHOUT ANY WARRANTY; without even the implied warranty of 14*d2201f2fSdrahn MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15*d2201f2fSdrahn GNU General Public License for more details. 16*d2201f2fSdrahn 17*d2201f2fSdrahn You should have received a copy of the GNU General Public License 18*d2201f2fSdrahn along with this program; if not, write to the Free Software 19*d2201f2fSdrahn Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 20*d2201f2fSdrahn 21*d2201f2fSdrahn #include "bfd.h" 22*d2201f2fSdrahn #include "sysdep.h" 23*d2201f2fSdrahn #include "libbfd.h" 24*d2201f2fSdrahn 25*d2201f2fSdrahn #define N(BITS_WORD, BITS_ADDR, NUMBER, PRINT, DEFAULT, NEXT) \ 26*d2201f2fSdrahn { \ 27*d2201f2fSdrahn BITS_WORD, /* bits in a word */ \ 28*d2201f2fSdrahn BITS_ADDR, /* bits in an address */ \ 29*d2201f2fSdrahn 8, /* 8 bits in a byte */ \ 30*d2201f2fSdrahn bfd_arch_openrisc, \ 31*d2201f2fSdrahn NUMBER, \ 32*d2201f2fSdrahn "openrisc", \ 33*d2201f2fSdrahn PRINT, \ 34*d2201f2fSdrahn 2, \ 35*d2201f2fSdrahn DEFAULT, \ 36*d2201f2fSdrahn bfd_default_compatible, \ 37*d2201f2fSdrahn bfd_default_scan, \ 38*d2201f2fSdrahn NEXT, \ 39*d2201f2fSdrahn } 40*d2201f2fSdrahn 41*d2201f2fSdrahn const bfd_arch_info_type bfd_openrisc_arch = 42*d2201f2fSdrahn N (32, 32, 0, "openrisc", TRUE, 0); 43