diff options
author | Jeff Law <law@redhat.com> | 1996-12-06 22:40:31 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-12-06 22:40:31 +0000 |
commit | 4db788a66482e62b61ba824794a58d2b99169654 (patch) | |
tree | a791f9c198efae41a1cc735861d044d9184d6910 | |
parent | 8fbb3e909aa9267e76749484b4d98cc614c7e3ba (diff) | |
download | gdb-4db788a66482e62b61ba824794a58d2b99169654.zip gdb-4db788a66482e62b61ba824794a58d2b99169654.tar.gz gdb-4db788a66482e62b61ba824794a58d2b99169654.tar.bz2 |
* mn10300-dis.c (disassemble): Remove '$' register prefixing.
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/mn10300-dis.c | 20 |
2 files changed, 14 insertions, 10 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index d1582a1..28b8590 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +Fri Dec 6 14:48:09 1996 Jeffrey A Law (law@cygnus.com) + + * mn10300-dis.c (disassemble): Remove '$' register prefixing. + Fri Dec 6 17:34:39 1996 Ian Lance Taylor <ian@cygnus.com> * mips16-opc.c: Change opcode for entry/exit to avoid conflicting diff --git a/opcodes/mn10300-dis.c b/opcodes/mn10300-dis.c index d5ba7c4..e175e9a 100644 --- a/opcodes/mn10300-dis.c +++ b/opcodes/mn10300-dis.c @@ -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) { @@ -377,7 +377,7 @@ disassemble (memaddr, info, insn, extension, size) (*info->fprintf_func) (info->stream, "["); if (value & 0x80) { - (*info->fprintf_func) (info->stream, "$d2"); + (*info->fprintf_func) (info->stream, "d2"); comma = 1; } @@ -385,7 +385,7 @@ disassemble (memaddr, info, insn, extension, size) { if (comma) (*info->fprintf_func) (info->stream, ","); - (*info->fprintf_func) (info->stream, "$d3"); + (*info->fprintf_func) (info->stream, "d3"); comma = 1; } @@ -393,7 +393,7 @@ disassemble (memaddr, info, insn, extension, size) { if (comma) (*info->fprintf_func) (info->stream, ","); - (*info->fprintf_func) (info->stream, "$a2"); + (*info->fprintf_func) (info->stream, "a2"); comma = 1; } @@ -401,7 +401,7 @@ disassemble (memaddr, info, insn, extension, size) { if (comma) (*info->fprintf_func) (info->stream, ","); - (*info->fprintf_func) (info->stream, "$a3"); + (*info->fprintf_func) (info->stream, "a3"); comma = 1; } @@ -409,7 +409,7 @@ disassemble (memaddr, info, insn, extension, size) { if (comma) (*info->fprintf_func) (info->stream, ","); - (*info->fprintf_func) (info->stream, "$other"); + (*info->fprintf_func) (info->stream, "other"); comma = 1; } (*info->fprintf_func) (info->stream, "]"); |