Add support for h8300hn and h8300sn
[deliverable/binutils-gdb.git] / opcodes / disassemble.c
index 1408f39b1c145747f3b832494c0c1e939780b2e7..2d1358eb172107f733e9229018da24a3003864f3 100644 (file)
@@ -141,9 +141,11 @@ disassembler (abfd)
 #endif
 #ifdef ARCH_h8300
     case bfd_arch_h8300:
-      if (bfd_get_mach(abfd) == bfd_mach_h8300h)
+      if (bfd_get_mach (abfd) == bfd_mach_h8300h
+         || bfd_get_mach (abfd) == bfd_mach_h8300hn)
        disassemble = print_insn_h8300h;
-      else if (bfd_get_mach(abfd) == bfd_mach_h8300s)
+      else if (bfd_get_mach (abfd) == bfd_mach_h8300s
+              || bfd_get_mach (abfd) == bfd_mach_h8300sn)
        disassemble = print_insn_h8300s;
       else
        disassemble = print_insn_h8300;
This page took 0.023586 seconds and 4 git commands to generate.