summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/devices/cpu/bcp/bcpdasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/bcp/bcpdasm.cpp b/src/devices/cpu/bcp/bcpdasm.cpp
index 84b77327f37..c9754d3d568 100644
--- a/src/devices/cpu/bcp/bcpdasm.cpp
+++ b/src/devices/cpu/bcp/bcpdasm.cpp
@@ -387,7 +387,7 @@ offs_t dp8344_disassembler::disassemble(std::ostream &stream, offs_t pc, const d
// C900-C9FF: SHL Rsd,b (2 T-states)
util::stream_format(stream, "%-8s", "shl");
format_register(stream, inst & 0x001f);
- util::stream_format(stream, ",%d", (inst & 0x00e0) >> 5);
+ util::stream_format(stream, ",%d", 8 - ((inst & 0x00e0) >> 5));
break;
case 0xa00: case 0xa80: