diff options
author | Michael Snyder <msnyder@vmware.com> | 2003-05-16 23:39:24 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2003-05-16 23:39:24 +0000 |
commit | 5d1db417cabc9c212b1e149eeb8cac486e8264bd (patch) | |
tree | a93a5d020cd89bdea443db4c5152138082a5c132 /bfd/cpu-h8300.c | |
parent | cf662e211d1a0312f56370b1fe624ea8f4217311 (diff) | |
download | gdb-5d1db417cabc9c212b1e149eeb8cac486e8264bd.zip gdb-5d1db417cabc9c212b1e149eeb8cac486e8264bd.tar.gz gdb-5d1db417cabc9c212b1e149eeb8cac486e8264bd.tar.bz2 |
2003-05-16 Michael Snyder <msnyder@redhat.com>
From Bernd Schmidt <bernds@redhat.com>
* archures.c (bfd_mach_h8300sx): New.
* bfd-in2.h: Regenerate.
* cpu-h8300.c (h8300_scan)): Add support for h8300sx.
(h8300sx_info_struct): New.
(h8300s_info_struct): Link to it.
* elf32-h8300.c (elf32_h8_mach): Add support for h8300sx.
(elf32_h8_final_write_processing): Likewise.
(elf32_h8_relax_section): Likewise.
Diffstat (limited to 'bfd/cpu-h8300.c')
-rw-r--r-- | bfd/cpu-h8300.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/bfd/cpu-h8300.c b/bfd/cpu-h8300.c index 2a5c604..f61e757 100644 --- a/bfd/cpu-h8300.c +++ b/bfd/cpu-h8300.c @@ -81,6 +81,9 @@ h8300_scan (info, string) if (*string == 'n' || *string == 'N') return (info->mach == bfd_mach_h8300sn); + if (*string == 'x' || *string == 'X') + return (info->mach == bfd_mach_h8300sx); + return (info->mach == bfd_mach_h8300s); } else @@ -103,6 +106,22 @@ compatible (in, out) return in; } +static const bfd_arch_info_type h8300sx_info_struct = +{ + 32, /* 32 bits in a word */ + 32, /* 32 bits in an address */ + 8, /* 8 bits in a byte */ + bfd_arch_h8300, + bfd_mach_h8300sx, + "h8300sx", /* arch_name */ + "h8300sx", /* printable name */ + 1, + FALSE, /* the default machine */ + compatible, + h8300_scan, + 0 +}; + static const bfd_arch_info_type h8300sn_info_struct = { 32, /* 32 bits in a word. */ @@ -116,7 +135,7 @@ static const bfd_arch_info_type h8300sn_info_struct = FALSE, /* The default machine. */ compatible, h8300_scan, - 0 + &h8300sx_info_struct }; |