diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-07 16:59:19 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-07 16:59:19 +0000 |
commit | cfafcfa374967fc0e54235dbc7ddea95ab898b60 (patch) | |
tree | 216d883aeedb284cd9ac3fcc386318a4db9d900b /include | |
parent | 86c18d92d22108ff92060a6b880f925848af7916 (diff) | |
download | gdb-cfafcfa374967fc0e54235dbc7ddea95ab898b60.zip gdb-cfafcfa374967fc0e54235dbc7ddea95ab898b60.tar.gz gdb-cfafcfa374967fc0e54235dbc7ddea95ab898b60.tar.bz2 |
Fixed encoding of mtacc instruction.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 8 | ||||
-rwxr-xr-x | include/a29k-opcode.h | 7 |
2 files changed, 13 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 822c1f6..bed26f9 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,11 @@ +Thu Nov 7 08:58:26 1991 Steve Chamberlain (sac at cygnus.com) + + * a29k-opcode.h: fixed encoding of mtacc + +Sun Nov 3 11:54:22 1991 Per Bothner (bothner at cygnus.com) + + * bfd.h: Updated from ../bfd/bfd-in.h (q.v). + Fri Nov 1 11:13:53 1991 John Gilmore (gnu at cygnus.com) * internalcoff.h: Add x_csect defines. diff --git a/include/a29k-opcode.h b/include/a29k-opcode.h index da87dbd..ac37b49 100755 --- a/include/a29k-opcode.h +++ b/include/a29k-opcode.h @@ -206,7 +206,7 @@ static CONST struct a29k_opcode a29k_opcodes[] = { "mfacc", 0xe9000100, "c,d,f" }, { "mfsr", 0xc6000000, "c,s" }, { "mftlb", 0xb6000000, "c,a" }, -{ "mtacc", 0xe8010000, "c,d,f" }, +{ "mtacc", 0xe8010000, "a,d,f" }, { "mtsr", 0xce000000, "s,b" }, { "mtsrim", 0x04000000, "s,x" }, { "mttlb", 0xbe000000, "a,b" }, @@ -287,7 +287,10 @@ CONST unsigned int num_opcodes = (((sizeof a29k_opcodes) / (sizeof a29k_opcodes[ /* * $Log$ - * Revision 1.4 1991/08/06 07:20:27 rich + * Revision 1.5 1991/11/07 16:59:19 sac + * Fixed encoding of mtacc instruction. + * + * Revision 1.4 1991/08/06 07:20:27 rich * Fixing CONST declarations. * * Revision 1.3 1991/08/05 22:31:05 rich |