diff options
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/m68k-dis.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index cf7e3c9864e..cc5ec75d9c0 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,9 @@ 2006-12-27 Kazu Hirata <kazu@codesourcery.com> + * m68k-dis.c (print_insn_arg): Add support for cac and mbb. + +2006-12-27 Kazu Hirata <kazu@codesourcery.com> + * m68k-opc.c (m68k_opcodes): Add sleep and trapx. 2006-12-15 H.J. Lu <hongjiu.lu@intel.com> diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c index 14d624f99ce..08a28384cd2 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--) |