diff options
author | Denis Chertykov <denisc@overta.ru> | 2000-06-09 17:58:33 +0000 |
---|---|---|
committer | Denis Chertykov <denisc@overta.ru> | 2000-06-09 17:58:33 +0000 |
commit | 8776c5feceb732ac1a22226d4f841100852dc21d (patch) | |
tree | 59c2050ce1e847db45e1ede98aa702637c5897c3 /opcodes | |
parent | ce844ae26dc0f1d3e30fe5b93db9d4b2e65bf8ab (diff) | |
download | gdb-8776c5feceb732ac1a22226d4f841100852dc21d.zip gdb-8776c5feceb732ac1a22226d4f841100852dc21d.tar.gz gdb-8776c5feceb732ac1a22226d4f841100852dc21d.tar.bz2 |
* avr-dis.c (avr_operand): Bugfix for jmp/call address.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/avr-dis.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 3009d85..78ea691 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +Fri Jun 9 21:49:02 2000 Denis Chertykov <denisc@overta.ru> + + * avr-dis.c (avr_operand): Bugfix for jmp/call address. + Wed Jun 7 21:36:45 2000 Denis Chertykov <denisc@overta.ru> * avr-dis.c: completely rewritten. diff --git a/opcodes/avr-dis.c b/opcodes/avr-dis.c index 1ffd218..a774d8b 100644 --- a/opcodes/avr-dis.c +++ b/opcodes/avr-dis.c @@ -135,7 +135,8 @@ avr_operand (insn, insn2, pc, constraint, buf, comment, regs) break; case 'h': - sprintf (buf, "0x%x%x", (insn & 1) | ((insn & (0x1f << 4)) >> 3), insn2); + sprintf (buf, "0x%x", + ((((insn & 1) | ((insn & 0x1f0) >> 3)) << 16) | insn2) * 2); break; case 'L': |