summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mahlemiut <bsr@xnet.co.nz>2017-03-12 00:02:19 +1300
committer mahlemiut <bsr@xnet.co.nz>2017-03-12 00:03:36 +1300
commit25405255b22795f0c00ee809bda006e4af6c297a (patch)
tree3c4ee7722465c7e206866e93a6ab9b9f76cb728d
parent3c8833b56b00f54a0e5460245047017b5817d02c (diff)
8x300dasm: correct JMP target address
-rw-r--r--src/devices/cpu/8x300/8x300dasm.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}