diff options
author | Jeff Law <law@redhat.com> | 1996-08-22 07:06:13 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-08-22 07:06:13 +0000 |
commit | 0bdf3144c614aaf34efe63ec563c13bc9cd7bff6 (patch) | |
tree | b10ebdd7b35ffa74ccec3a98504cfdd4fd931e86 /opcodes | |
parent | 088d5b730997bf1dfe1f5c3278d3951b58172b1f (diff) | |
download | gdb-0bdf3144c614aaf34efe63ec563c13bc9cd7bff6.zip gdb-0bdf3144c614aaf34efe63ec563c13bc9cd7bff6.tar.gz gdb-0bdf3144c614aaf34efe63ec563c13bc9cd7bff6.tar.bz2 |
* v850-opc.c (v850_opcodes): Fix order of displacement
and register for "set1", "clr1", "not1", and "tst1".
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/v850-opc.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 164b135..1cf2e84 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,4 +1,9 @@ start-sanitize-v850 +Thu Aug 22 01:05:24 1996 Jeffrey A Law (law@cygnus.com) + + * v850-opc.c (v850_opcodes): Fix order of displacement + and register for "set1", "clr1", "not1", and "tst1". + Wed Aug 21 18:46:26 1996 Jeffrey A Law (law@cygnus.com) * v850-opc.c (v850_operands): Add "B3" support. diff --git a/opcodes/v850-opc.c b/opcodes/v850-opc.c index d3cac63..0bdfd47 100644 --- a/opcodes/v850-opc.c +++ b/opcodes/v850-opc.c @@ -193,10 +193,10 @@ const struct v850_opcode v850_opcodes[] = { { "jr", one(0x0780), one(0xffe0), { D22 } }, /* bit manipulation instructions */ -{ "set1", two(0x07c0,0x0000), two(0xc7e0,0x0000), {B3, R1, D16} }, -{ "not1", two(0x47c0,0x0000), two(0xc7e0,0x0000), {B3, R1, D16} }, -{ "clr1", two(0x87c0,0x0000), two(0xc7e0,0x0000), {B3, R1, D16} }, -{ "tst1", two(0xc7c0,0x0000), two(0xc7e0,0x0000), {B3, R1, D16} }, +{ "set1", two(0x07c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1} }, +{ "not1", two(0x47c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1} }, +{ "clr1", two(0x87c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1} }, +{ "tst1", two(0xc7c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1} }, /* special instructions */ { "di", two(0x07e0,0x0160), two(0xffff,0xffff), {0} }, |