8x300dasm: correct JMP target address

This commit is contained in:
mahlemiut 2017-03-12 00:02:19 +13:00
parent 3c8833b56b
commit 25405255b2

View File

@ -122,7 +122,7 @@ CPU_DISASSEMBLE(n8x300)
}
break;
case 0x07:
util::stream_format(stream, "JMP %04XH", opcode & 0x1fff);
util::stream_format(stream, "JMP %04XH", (opcode & 0x1fff) << 1);
break;
}