From: Michael Snyder Date: Fri, 10 Oct 2003 22:13:49 +0000 (+0000) Subject: 2003-06-03 Michael Snyder X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=d43ff6d27f2c037a7e7d8210a4e2588055fe53eb;p=deliverable%2Fbinutils-gdb.git 2003-06-03 Michael Snyder and Bernd Schmidt and Alexandre Oliva * disassemble.c (disassembler): Add support for h8300sx. --- diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c index 2d1358eb17..14113b5736 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;