1214571Sdim/* BFD support for the Toshiba Media Engine Processor.
2214571Sdim   Copyright (C) 2001, 2002, 2004, 2007 Free Software Foundation, Inc.
3214571Sdim
4214571Sdim   This file is part of BFD, the Binary File Descriptor library.
5214571Sdim
6214571Sdim   This program is free software; you can redistribute it and/or modify
7214571Sdim   it under the terms of the GNU General Public License as published by
8214571Sdim   the Free Software Foundation; either version 2 of the License, or
9214571Sdim   (at your option) any later version.
10214571Sdim
11214571Sdim   This program is distributed in the hope that it will be useful,
12214571Sdim   but WITHOUT ANY WARRANTY; without even the implied warranty of
13214571Sdim   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14214571Sdim   GNU General Public License for more details.
15214571Sdim
16214571Sdim   You should have received a copy of the GNU General Public License
17214571Sdim   along with this program; if not, write to the Free Software
18214571Sdim   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19214571Sdim
20214571Sdim#include "sysdep.h"
21214571Sdim#include "bfd.h"
22214571Sdim#include "libbfd.h"
23214571Sdim
24214571Sdim#define MA(x, n, def, y) { 32, 32, 8, bfd_arch_mep, x, "mep", n, \
25214571Sdim	2, def, bfd_default_compatible, bfd_default_scan, y }
26214571Sdim
27214571Sdimstatic const bfd_arch_info_type bfd_h1_arch = MA (bfd_mach_mep_h1, "h1", FALSE, NULL);
28214571Sdimconst bfd_arch_info_type bfd_mep_arch = MA (bfd_mach_mep, "mep", TRUE, & bfd_h1_arch);
29