From: Michael Snyder Date: Fri, 10 Oct 2003 22:13:49 +0000 (+0000) Subject: 2003-06-03 Michael Snyder X-Git-Tag: gdb_6_1-branchpoint~1232 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d43ff6d27f2c037a7e7d8210a4e2588055fe53eb;p=thirdparty%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 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;