aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2003-10-10 22:13:49 +0000
committerMichael Snyder <msnyder@vmware.com>2003-10-10 22:13:49 +0000
commitd43ff6d27f2c037a7e7d8210a4e2588055fe53eb (patch)
tree3920bb09c319a4b429cd9746b8a26fa7e7985c03 /opcodes
parent74276724728047f5d17a4b95d79751ccbb10cf82 (diff)
downloadgdb-d43ff6d27f2c037a7e7d8210a4e2588055fe53eb.zip
gdb-d43ff6d27f2c037a7e7d8210a4e2588055fe53eb.tar.gz
gdb-d43ff6d27f2c037a7e7d8210a4e2588055fe53eb.tar.bz2
2003-06-03 Michael Snyder <msnyder@redhat.com>
and Bernd Schmidt <bernds@redhat.com> and Alexandre Oliva <aoliva@redhat.com> * disassemble.c (disassembler): Add support for h8300sx.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/disassemble.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c
index 2d1358e..14113b5 100644
--- a/opcodes/disassemble.c
+++ b/opcodes/disassemble.c
@@ -145,7 +145,8 @@ disassembler (abfd)
|| bfd_get_mach (abfd) == bfd_mach_h8300hn)
disassemble = print_insn_h8300h;
else if (bfd_get_mach (abfd) == bfd_mach_h8300s
- || bfd_get_mach (abfd) == bfd_mach_h8300sn)
+ || bfd_get_mach (abfd) == bfd_mach_h8300sn
+ || bfd_get_mach (abfd) == bfd_mach_h8300sx)
disassemble = print_insn_h8300s;
else
disassemble = print_insn_h8300;