mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
* h8300-dis.c (bfd_h8_disassemble): Print "exr" when
we're looking for and find EXR. So we disassemble andc/orc/xorc with exr correctly.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
Thu Jul 11 11:58:44 1996 Jeffrey A Law (law@cygnus.com)
|
Thu Jul 11 11:58:44 1996 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* h8300-dis.c (bfd_h8_disassemble): Print "exr" when
|
||||||
|
we're looking for and find EXR.
|
||||||
|
|
||||||
* h8300-dis.c (bfd_h8_disassemble): We don't have a match
|
* h8300-dis.c (bfd_h8_disassemble): We don't have a match
|
||||||
if we're looking for KBIT and we don't find it.
|
if we're looking for KBIT and we don't find it.
|
||||||
|
|
||||||
|
@ -358,9 +358,12 @@ bfd_h8_disassemble (addr, info, mode)
|
|||||||
|
|
||||||
else if (x & CCR)
|
else if (x & CCR)
|
||||||
{
|
{
|
||||||
|
|
||||||
fprintf (stream, "ccr");
|
fprintf (stream, "ccr");
|
||||||
}
|
}
|
||||||
|
else if (x & EXR)
|
||||||
|
{
|
||||||
|
fprintf (stream, "exr");
|
||||||
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
fprintf (stream, "Hmmmm %x", x);
|
fprintf (stream, "Hmmmm %x", x);
|
||||||
|
Reference in New Issue
Block a user