summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/vt50/vt50dasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/vt50/vt50dasm.cpp')
-rw-r--r--src/devices/cpu/vt50/vt50dasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/vt50/vt50dasm.cpp b/src/devices/cpu/vt50/vt50dasm.cpp
index 9b2e603e0c4..69d0d5b68f8 100644
--- a/src/devices/cpu/vt50/vt50dasm.cpp
+++ b/src/devices/cpu/vt50/vt50dasm.cpp
@@ -103,7 +103,7 @@ offs_t vt5x_disassembler::disassemble(std::ostream &stream, offs_t pc, const vt5
if (m_jumps_h[1][(opcode & 0160) >> 4] != nullptr)
util::stream_format(stream, "/%sJ", m_jumps_h[1][(opcode & 0160) >> 4]);
- u16 nextpc = pc + 2;
+ u16 nextpc = pc + 1;
if ((opcode & 0164) == 0124) // IROM!TRUJ adjustment
nextpc += 0400;
util::stream_format(stream, " %04o", (nextpc & 01400) | opcodes.r8(pc + 1));