* mn10300-dis.c (disassemble): Use '$' instead of '%' for
authorJeff Law <law@redhat.com>
Mon, 25 Nov 1996 18:46:06 +0000 (18:46 +0000)
committerJeff Law <law@redhat.com>
Mon, 25 Nov 1996 18:46:06 +0000 (18:46 +0000)
        register prefix.
It's easier for the assembler...

opcodes/ChangeLog
opcodes/mn10300-dis.c

index c4085149173bf5c8e3c85d944c3a9f4535051fbd..1627e053810232b0b9aa1fb7af651347f47f881e 100644 (file)
@@ -1,5 +1,8 @@
 Mon Nov 25 11:17:01 1996  Jeffrey A Law  (law@cygnus.com)
 
+       * mn10300-dis.c (disassemble): Use '$' instead of '%' for 
+       register prefix.
+
        * mn10300-dis.c (disassemble): Prefix registers with '%'.
 
 Wed Nov 20 10:37:13 1996  Jeffrey A Law  (law@cygnus.com)
index d1e0724ce1ae63f10306e5ec0e6c0089c6d8779b..9ed8327b5129c448327af54c365e7e2ca0fc9832 100644 (file)
@@ -333,24 +333,24 @@ disassemble (memaddr, info, insn, extension, size)
                {
                  value = ((insn >> (operand->shift + extra_shift))
                           & ((1 << operand->bits) - 1));
-                 (*info->fprintf_func) (info->stream, "%%d%d", value);
+                 (*info->fprintf_func) (info->stream, "$d%d", value);
                }
 
              else if ((operand->flags & MN10300_OPERAND_AREG) != 0)
                {
                  value = ((insn >> (operand->shift + extra_shift))
                           & ((1 << operand->bits) - 1));
-                 (*info->fprintf_func) (info->stream, "%%a%d", value);
+                 (*info->fprintf_func) (info->stream, "$a%d", value);
                }
 
              else if ((operand->flags & MN10300_OPERAND_SP) != 0)
-               (*info->fprintf_func) (info->stream, "%%sp");
+               (*info->fprintf_func) (info->stream, "$sp");
 
              else if ((operand->flags & MN10300_OPERAND_PSW) != 0)
-               (*info->fprintf_func) (info->stream, "%%psw");
+               (*info->fprintf_func) (info->stream, "$psw");
 
              else if ((operand->flags & MN10300_OPERAND_MDR) != 0)
-               (*info->fprintf_func) (info->stream, "%%mdr");
+               (*info->fprintf_func) (info->stream, "$mdr");
 
              else if ((operand->flags & MN10300_OPERAND_PAREN) != 0)
                {