1139804Simp/* BFD support for the DLX Microprocessor architecture.
2185435Sbz   Copyright (C) 2002-2017 Free Software Foundation, Inc.
3185435Sbz   Hacked by Kuang Hwa Lin <kuang@sbcglobal.net>
4191673Sjamie
5185435Sbz   This file is part of BFD, the Binary File Descriptor library.
6190466Sjamie
7185404Sbz   This program is free software; you can redistribute it and/or modify
8185404Sbz   it under the terms of the GNU General Public License as published by
9185404Sbz   the Free Software Foundation; either version 3 of the License, or
10185404Sbz   (at your option) any later version.
11185404Sbz
12185404Sbz   This program is distributed in the hope that it will be useful,
13185404Sbz   but WITHOUT ANY WARRANTY; without even the implied warranty of
14185404Sbz   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15185404Sbz   GNU General Public License for more details.
16185404Sbz
17185404Sbz   You should have received a copy of the GNU General Public License
18185404Sbz   along with this program; if not, write to the Free Software
19185404Sbz   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20185404Sbz   MA 02110-1301, USA.  */
21185404Sbz
22185404Sbz#include "sysdep.h"
23185404Sbz#include "bfd.h"
24185404Sbz#include "libbfd.h"
25185404Sbz
26185404Sbzconst bfd_arch_info_type bfd_dlx_arch =
2746197Sphk  {
2846155Sphk    32,	/* 32 bits in a word.  */
29116182Sobrien    32,	/* 32 bits in an address.  */
30116182Sobrien    8,	/* 8 bits in a byte.  */
31116182Sobrien    bfd_arch_dlx,
32193066Sjamie    0,	/* Only 1 machine.  */
33185435Sbz    "dlx",
34185435Sbz    "dlx",
35185435Sbz    4,
36131177Spjd    TRUE, /* The one and only.  */
3746155Sphk    bfd_default_compatible,
3846155Sphk    bfd_default_scan,
3946155Sphk    bfd_arch_default_fill,
4046155Sphk    0,
4146155Sphk};
4246155Sphk