diff options
author | Jeff Law <law@redhat.com> | 1996-08-23 20:27:25 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-08-23 20:27:25 +0000 |
commit | 18c97701b42fb70b0ddfefac81e1d644418bdc51 (patch) | |
tree | 5cc7df8bd61bb6c63ce4c53d35e12618c5d005b1 /opcodes | |
parent | 8289ed0b657405ed9095093e513ae7766fba9828 (diff) | |
download | gdb-18c97701b42fb70b0ddfefac81e1d644418bdc51.zip gdb-18c97701b42fb70b0ddfefac81e1d644418bdc51.tar.gz gdb-18c97701b42fb70b0ddfefac81e1d644418bdc51.tar.bz2 |
* v850-opc.c (v850_opcodes): Fix opcode numbers for "mov"
with immediate operand, "movhi". Tweak "ldsr".
More fixes.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 3 | ||||
-rw-r--r-- | opcodes/v850-opc.c | 11 |
2 files changed, 7 insertions, 7 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 825f8f3..42d1243 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,6 +1,9 @@ start-sanitize-v850 Fri Aug 23 00:27:01 1996 Jeffrey A Law (law@cygnus.com) + * v850-opc.c (v850_opcodes): Fix opcode numbers for "mov" + with immediate operand, "movhi". Tweak "ldsr". + * v850-opc.c (v850_opcodes): Get ld.[bhw] and st.[bhw] correct. Get sld.[bhw] and sst.[bhw] closer. diff --git a/opcodes/v850-opc.c b/opcodes/v850-opc.c index 902b33c..faa20a3 100644 --- a/opcodes/v850-opc.c +++ b/opcodes/v850-opc.c @@ -74,10 +74,7 @@ const struct v850_operand v850_operands[] = { /* System register operands. */ #define SR1 (D8+1) - { 5, 0, 0, 0, V850_OPERAND_SRG }, - -#define SR2 (SR1+1) - { 5, 11, 0, 0, V850_OPERAND_SRG }, + { 5, 0, 0, 0, V850_OPERAND_SRG } } ; @@ -145,9 +142,9 @@ const struct v850_opcode v850_opcodes[] = { /* arithmetic operation instructions */ { "mov", OP(0x00), OP_MASK, IF1, 2 }, -{ "mov", OP(0x08), OP_MASK, IF2, 2 }, +{ "mov", OP(0x10), OP_MASK, IF2, 2 }, { "movea", OP(0x31), OP_MASK, IF6, 4 }, -{ "movhi", OP(0x31), OP_MASK, IF6, 4 }, +{ "movhi", OP(0x32), OP_MASK, IF6, 4 }, { "add", OP(0x0e), OP_MASK, IF1, 2 }, { "add", OP(0x12), OP_MASK, IF2, 2 }, { "addi", OP(0x30), OP_MASK, IF6, 4 }, @@ -226,7 +223,7 @@ const struct v850_opcode v850_opcodes[] = { { "halt", two(0x07e0,0x0120), two(0xffff,0xffff), {0}, 4 }, { "reti", two(0x07e0,0x0140), two(0xffff,0xffff), {0}, 4 }, { "trap", two(0x07e0,0x0100), two(0xffe0,0xffff), {I5U}, 4 }, -{ "ldsr", two(0x07e0,0x0020), two(0x07e0,0xffff), {R1,SR2}, 4 }, +{ "ldsr", two(0x07e0,0x0020), two(0x07e0,0xffff), {R2,SR1}, 4 }, { "stsr", two(0x07e0,0x0040), two(0x07e0,0xffff), {SR1,R2}, 4 }, { "nop", one(0x00), one(0xff), {0}, 2 }, |