* mn10300-dis.c (disassemble): Prefix registers with '%'.

This commit is contained in:
Jeff Law
1996-11-25 18:21:08 +00:00
parent 9e73a716d3
commit 11cd057a41
2 changed files with 14 additions and 10 deletions

View File

@ -1,3 +1,7 @@
Mon Nov 25 11:17:01 1996 Jeffrey A Law (law@cygnus.com)
* mn10300-dis.c (disassemble): Prefix registers with '%'.
Wed Nov 20 10:37:13 1996 Jeffrey A Law (law@cygnus.com) Wed Nov 20 10:37:13 1996 Jeffrey A Law (law@cygnus.com)
* mn10300-dis.c (disassemble): Handle register lists. * mn10300-dis.c (disassemble): Handle register lists.

View File

@ -333,24 +333,24 @@ disassemble (memaddr, info, insn, extension, size)
{ {
value = ((insn >> (operand->shift + extra_shift)) value = ((insn >> (operand->shift + extra_shift))
& ((1 << operand->bits) - 1)); & ((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) else if ((operand->flags & MN10300_OPERAND_AREG) != 0)
{ {
value = ((insn >> (operand->shift + extra_shift)) value = ((insn >> (operand->shift + extra_shift))
& ((1 << operand->bits) - 1)); & ((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) 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) 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) 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) else if ((operand->flags & MN10300_OPERAND_PAREN) != 0)
{ {
@ -377,7 +377,7 @@ disassemble (memaddr, info, insn, extension, size)
(*info->fprintf_func) (info->stream, "["); (*info->fprintf_func) (info->stream, "[");
if (value & 0x80) if (value & 0x80)
{ {
(*info->fprintf_func) (info->stream, "d2"); (*info->fprintf_func) (info->stream, "%d2");
comma = 1; comma = 1;
} }
@ -385,7 +385,7 @@ disassemble (memaddr, info, insn, extension, size)
{ {
if (comma) if (comma)
(*info->fprintf_func) (info->stream, ","); (*info->fprintf_func) (info->stream, ",");
(*info->fprintf_func) (info->stream, "d3"); (*info->fprintf_func) (info->stream, "%d3");
comma = 1; comma = 1;
} }
@ -393,7 +393,7 @@ disassemble (memaddr, info, insn, extension, size)
{ {
if (comma) if (comma)
(*info->fprintf_func) (info->stream, ","); (*info->fprintf_func) (info->stream, ",");
(*info->fprintf_func) (info->stream, "a2"); (*info->fprintf_func) (info->stream, "%a2");
comma = 1; comma = 1;
} }
@ -401,7 +401,7 @@ disassemble (memaddr, info, insn, extension, size)
{ {
if (comma) if (comma)
(*info->fprintf_func) (info->stream, ","); (*info->fprintf_func) (info->stream, ",");
(*info->fprintf_func) (info->stream, "a3"); (*info->fprintf_func) (info->stream, "%a3");
comma = 1; comma = 1;
} }
@ -409,7 +409,7 @@ disassemble (memaddr, info, insn, extension, size)
{ {
if (comma) if (comma)
(*info->fprintf_func) (info->stream, ","); (*info->fprintf_func) (info->stream, ",");
(*info->fprintf_func) (info->stream, "other"); (*info->fprintf_func) (info->stream, "%other");
comma = 1; comma = 1;
} }
(*info->fprintf_func) (info->stream, "]"); (*info->fprintf_func) (info->stream, "]");