From f70d15e6c1585e4742b0ae349ca2127d006825f0 Mon Sep 17 00:00:00 2001 From: Denis Chertykov Date: Fri, 9 Jun 2000 17:58:33 +0000 Subject: [PATCH] * avr-dis.c (avr_operand): Bugfix for jmp/call address. --- opcodes/ChangeLog | 4 ++++ opcodes/avr-dis.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 3009d85a7e..78ea691f8d 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +Fri Jun 9 21:49:02 2000 Denis Chertykov + + * avr-dis.c (avr_operand): Bugfix for jmp/call address. + Wed Jun 7 21:36:45 2000 Denis Chertykov * avr-dis.c: completely rewritten. diff --git a/opcodes/avr-dis.c b/opcodes/avr-dis.c index 1ffd218f48..a774d8b7c3 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': -- 2.11.0