From 03586dae5f19a04911b11646d195b18628477a23 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Fri, 10 Oct 2003 22:13:49 +0000 Subject: [PATCH] 2003-06-03 Michael Snyder and Bernd Schmidt and Alexandre Oliva * disassemble.c (disassembler): Add support for h8300sx. --- opcodes/disassemble.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.11.0