1999-05-03 07:29:11 +00:00
|
|
|
/* BFD library support routines for the Z800n architecture.
|
* aout-target.h, aoutf1.h, bfdio.c, bfdwin.c: Update copyright date.
* coff-apollo.c, coff-sparc.c, coff-w65.c, coff-we32k.c: Ditto.
* coff-z8k.c, coffgen.c, cpu-frv.c, cpu-h8500.c, cpu-hppa.c: Ditto.
* cpu-ia64-opc.c, cpu-m10300.c, cpu-mips.c, cpu-msp430.c: Ditto.
* cpu-rs6000.c, cpu-z8k.c, efi-app-ia32.c, elf32-am33lin.c: Ditto.
* gen-aout.c, hash.c, hp300hpux.c, init.c, mach-o.c: Ditto.
* nlm-target.h, nlm.c, som.h, stabs.c, sysdep.h, xsym.h: Ditto.
2003-11-04 11:30:54 +00:00
|
|
|
Copyright 1992, 1993, 1994, 2000, 2001, 2002, 2003
|
2002-11-30 08:39:46 +00:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
Hacked by Steve Chamberlain of Cygnus Support.
|
|
|
|
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-04 15:53:43 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "libbfd.h"
|
|
|
|
|
|
|
|
/* This routine is provided two arch_infos and returns whether
|
|
|
|
they'd be compatible */
|
|
|
|
|
|
|
|
static const bfd_arch_info_type *
|
2003-11-28 20:07:44 +00:00
|
|
|
compatible (const bfd_arch_info_type *a, const bfd_arch_info_type *b)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
if (a->arch != b->arch || a->mach != b->mach)
|
|
|
|
return NULL;
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const bfd_arch_info_type arch_info_struct[] =
|
|
|
|
{
|
2002-11-30 08:39:46 +00:00
|
|
|
{ 32, 16, 8, bfd_arch_z8k, bfd_mach_z8002, "z8k", "z8002", 1, FALSE,
|
2002-09-02 11:52:01 +00:00
|
|
|
compatible, bfd_default_scan, 0 }
|
1999-05-03 07:29:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const bfd_arch_info_type bfd_z8k_arch =
|
|
|
|
{
|
2002-11-30 08:39:46 +00:00
|
|
|
32, 32, 8, bfd_arch_z8k, bfd_mach_z8001, "z8k", "z8001", 1, TRUE,
|
2002-09-02 11:52:01 +00:00
|
|
|
compatible, bfd_default_scan, &arch_info_struct[0]
|
1999-05-03 07:29:11 +00:00
|
|
|
};
|