summaryrefslogtreecommitdiff
path: root/opcodes/m68k-dis.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-12-27 07:15:02 +0000
committerKazu Hirata <kazu@codesourcery.com>2006-12-27 07:15:02 +0000
commitc26ccb04a62553d905c2cf6e8ccb33de26c12721 (patch)
tree34505ad5157d04f5ff45d51422346a3e5fda7396 /opcodes/m68k-dis.c
parentac80faef7f6356ec1b3716fdc0166fb083d65341 (diff)
downloadbinutils-redhat-c26ccb04a62553d905c2cf6e8ccb33de26c12721.tar.gz
gas/
* config/m68k-parse.h (m68k_register): Add CAC and MBB. * config/tc-m68k.c (fido_ctrl): New. (m68k_archs): Use fido_ctrl for -mfidoa. (m68k_cpus): Use fido_ctrl on fido-*-*. (m68k_ip): Add support for CAC and MBB. (init_table): Add CAC and MBB. opcodes/ * m68k-dis.c (print_insn_arg): Add support for cac and mbb.
Diffstat (limited to 'opcodes/m68k-dis.c')
-rw-r--r--opcodes/m68k-dis.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c
index 14d624f99c..08a28384cd 100644
--- a/opcodes/m68k-dis.c
+++ b/opcodes/m68k-dis.c
@@ -650,7 +650,10 @@ print_insn_arg (const char *d,
/* Should we be calling this psr like we do in case 'Y'? */
{"%mmusr",0x805},
- {"%urp", 0x806}, {"%srp", 0x807}, {"%pcr", 0x808}};
+ {"%urp", 0x806}, {"%srp", 0x807}, {"%pcr", 0x808},
+
+ /* Fido added these. */
+ {"%cac", 0xffe}, {"%mbb", 0xfff}};
val = fetch_arg (buffer, place, 12, info);
for (regno = sizeof names / sizeof names[0] - 1; regno >= 0; regno--)