* h8300-dis.c (bfd_h8_disassemble): Print "exr" when
authorJeff Law <law@redhat.com>
Thu, 11 Jul 1996 18:30:02 +0000 (18:30 +0000)
committerJeff Law <law@redhat.com>
Thu, 11 Jul 1996 18:30:02 +0000 (18:30 +0000)
        we're looking for and find EXR.
So we disassemble andc/orc/xorc with exr correctly.

opcodes/ChangeLog
opcodes/h8300-dis.c

index e1cdd6c7f28ad63b8b30b84c08fa8fade256564d..a6af4aca079de0f199de5090784c68ba4c38d810 100644 (file)
@@ -1,5 +1,8 @@
 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
        if we're looking for KBIT and we don't find it.
 
index 975aba114d4b598b7925f5670ea26ce387aad96f..7481019252d85e727e23abf6885229294a97cb01 100644 (file)
@@ -358,9 +358,12 @@ bfd_h8_disassemble (addr, info, mode)
 
                        else if (x & CCR)
                          {
-
                            fprintf (stream, "ccr");
                          }
+                       else if (x & EXR)
+                         {
+                           fprintf (stream, "exr");
+                         }
 
                        else
                          fprintf (stream, "Hmmmm %x", x);
This page took 0.028393 seconds and 4 git commands to generate.