diff options
author | Nick Clifton <nickc@redhat.com> | 2002-05-28 14:08:47 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-05-28 14:08:47 +0000 |
commit | d172d4ba0352f8b593fec9165c65257c3b64836d (patch) | |
tree | c701d82c46f192626096a6136cd233630d62997a /bfd/cpu-dlx.c | |
parent | 69de2f89594c53dca9019e1e5b4a7a7567fc23cd (diff) | |
download | gdb-d172d4ba0352f8b593fec9165c65257c3b64836d.zip gdb-d172d4ba0352f8b593fec9165c65257c3b64836d.tar.gz gdb-d172d4ba0352f8b593fec9165c65257c3b64836d.tar.bz2 |
Add DLX target
Diffstat (limited to 'bfd/cpu-dlx.c')
-rw-r--r-- | bfd/cpu-dlx.c | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/bfd/cpu-dlx.c b/bfd/cpu-dlx.c new file mode 100644 index 0000000..2023ff5 --- /dev/null +++ b/bfd/cpu-dlx.c @@ -0,0 +1,39 @@ +/* BFD support for the DLX Microprocessor architecture. + Copyright 2002 Free Software Foundation, Inc. + Hacked by Kuang Hwa Lin <kuang@sbcglobal.net> + + 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 + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#include "bfd.h" +#include "sysdep.h" +#include "libbfd.h" + +const bfd_arch_info_type bfd_dlx_arch = + { + 32, /* 32 bits in a word. */ + 32, /* 32 bits in an address. */ + 8, /* 8 bits in a byte. */ + bfd_arch_dlx, + 0, /* Only 1 machine. */ + "dlx", + "dlx", + 4, + true, /* The one and only. */ + bfd_default_compatible, + bfd_default_scan , + 0, +}; |