From 25405255b22795f0c00ee809bda006e4af6c297a Mon Sep 17 00:00:00 2001 From: mahlemiut Date: Sun, 12 Mar 2017 00:02:19 +1300 Subject: 8x300dasm: correct JMP target address --- src/devices/cpu/8x300/8x300dasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/8x300/8x300dasm.cpp b/src/devices/cpu/8x300/8x300dasm.cpp index db6f3d2cd00..a6375072a49 100644 --- a/src/devices/cpu/8x300/8x300dasm.cpp +++ b/src/devices/cpu/8x300/8x300dasm.cpp @@ -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; } -- cgit v1.2.3