2003-07-21 Richard Sandiford <rsandifo@redhat.com>

* disassemble.c (disassembler): Handle bfd_mach_h8300sxn.
This commit is contained in:
Alexandre Oliva 2004-06-27 06:31:22 +00:00
parent 0242f9ea60
commit a53b85e216
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-06-27 Alexandre Oliva <aoliva@redhat.com>
2003-07-21 Richard Sandiford <rsandifo@redhat.com>
* disassemble.c (disassembler): Handle bfd_mach_h8300sxn.
2004-06-26 Alan Modra <amodra@bigpond.net.au>
* ppc-opc.c (BH, XLBH_MASK): Define.

View File

@ -146,7 +146,8 @@ disassembler (abfd)
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_h8300sx)
|| bfd_get_mach (abfd) == bfd_mach_h8300sx
|| bfd_get_mach (abfd) == bfd_mach_h8300sxn)
disassemble = print_insn_h8300s;
else
disassemble = print_insn_h8300;