summaryrefslogtreecommitdiff
path: root/opcodes/disassemble.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2003-10-10 22:13:49 +0000
committerMichael Snyder <msnyder@specifix.com>2003-10-10 22:13:49 +0000
commit03586dae5f19a04911b11646d195b18628477a23 (patch)
treefbb86e27714129f1badb8718a6ef56e24362370f /opcodes/disassemble.c
parent0e05764b855c2c6b6c27a8515dbcf920b1aefdc5 (diff)
downloadgdb-03586dae5f19a04911b11646d195b18628477a23.tar.gz
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/disassemble.c')
-rw-r--r--opcodes/disassemble.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c
index 2d1358eb172..14113b57366 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;