xref: /openbsd-src/gnu/usr.bin/binutils/bfd/cpu-mmix.c (revision d2201f2f89f0be1a0be6f7568000ed297414a06d)
1*d2201f2fSdrahn /* BFD library support routines for MMIX.
2*d2201f2fSdrahn    Copyright 2001, 2002 Free Software Foundation, Inc.
3*d2201f2fSdrahn    Contributed by Hans-Peter Nilsson (hp@bitrange.com)
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 const bfd_arch_info_type
26*d2201f2fSdrahn bfd_mmix_arch =
27*d2201f2fSdrahn  {
28*d2201f2fSdrahn    64,				/* 64 bits in a word.  */
29*d2201f2fSdrahn    64,				/* 64 bits in an address.  */
30*d2201f2fSdrahn    8,				/* 8 bits in a byte.  */
31*d2201f2fSdrahn    bfd_arch_mmix,		/* Architecture.  */
32*d2201f2fSdrahn    0,				/* Machine number - 0 for now.  */
33*d2201f2fSdrahn    /* Sorry, these are by custom and creeping assumption lower-case.  */
34*d2201f2fSdrahn    "mmix",			/* Architecture name.  */
35*d2201f2fSdrahn    "mmix",			/* Printable name.  */
36*d2201f2fSdrahn    3,				/* Section align power.  */
37*d2201f2fSdrahn    TRUE,			/* This is the default architecture.  */
38*d2201f2fSdrahn    bfd_default_compatible,	/* Architecture comparison function.  */
39*d2201f2fSdrahn    bfd_default_scan,		/* String to architecture conversion.  */
40*d2201f2fSdrahn    NULL				/* Next in list.  */
41*d2201f2fSdrahn };
42