summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/v850/v850dasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/v850/v850dasm.cpp')
-rw-r--r--src/devices/cpu/v850/v850dasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/v850/v850dasm.cpp b/src/devices/cpu/v850/v850dasm.cpp
index 90630aed35b..204684d6a88 100644
--- a/src/devices/cpu/v850/v850dasm.cpp
+++ b/src/devices/cpu/v850/v850dasm.cpp
@@ -991,7 +991,7 @@ offs_t v850_disassembler::disassemble(std::ostream &stream, offs_t pc, const v85
{
s16 disp9 = s8((opcode & 0xf800) >> 8 | (opcode & 0x0070) >> 4) * 2;
util::stream_format(stream, "%-8s0x%08X", s_bconds[BIT(opcode, 0, 4)], pc + disp9);
- return 2 | SUPPORTED;
+ return 2 | (BIT(opcode, 0, 4) != 0b0101 ? STEP_COND : 0) | SUPPORTED;
}
case 0b1100: