From 8776c5feceb732ac1a22226d4f841100852dc21d Mon Sep 17 00:00:00 2001 From: Denis Chertykov Date: Fri, 9 Jun 2000 17:58:33 +0000 Subject: * avr-dis.c (avr_operand): Bugfix for jmp/call address. --- opcodes/avr-dis.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'opcodes/avr-dis.c') 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': -- cgit v1.1