diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2004-06-27 06:31:22 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2004-06-27 06:31:22 +0000 |
commit | a53b85e216049b3cb9b26c5a78ef437115183225 (patch) | |
tree | b2e44e059b66d6f053c422f8a2fb22045b0de5dc /opcodes | |
parent | 0242f9ea6044f72ea80bb38484e67be61ba81f8f (diff) | |
download | gdb-a53b85e216049b3cb9b26c5a78ef437115183225.zip gdb-a53b85e216049b3cb9b26c5a78ef437115183225.tar.gz gdb-a53b85e216049b3cb9b26c5a78ef437115183225.tar.bz2 |
2003-07-21 Richard Sandiford <rsandifo@redhat.com>
* disassemble.c (disassembler): Handle bfd_mach_h8300sxn.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/disassemble.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index bf176d7..fd4e6e0 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -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. diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c index d5b17be..b9cf575 100644 --- a/opcodes/disassemble.c +++ b/opcodes/disassemble.c @@ -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; |