diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-12-27 07:15:02 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2006-12-27 07:15:02 +0000 |
commit | f7ec513bed7e6bf8c2b88b7fdb5cf3fe94523def (patch) | |
tree | cb5363f79a82d503bc37215ac9afbfa18a54f28f /opcodes | |
parent | 6bd025df59a8cb2a0f3b0fcfe21f60592a898c41 (diff) | |
download | gdb-f7ec513bed7e6bf8c2b88b7fdb5cf3fe94523def.zip gdb-f7ec513bed7e6bf8c2b88b7fdb5cf3fe94523def.tar.gz gdb-f7ec513bed7e6bf8c2b88b7fdb5cf3fe94523def.tar.bz2 |
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')
-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 cf7e3c9..cc5ec75 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 14d624f..08a2838 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--) |