diff options
author | 2025-03-22 20:32:43 -0400 | |
---|---|---|
committer | 2025-03-22 20:32:43 -0400 | |
commit | 96688cfe03136304a4120b2a0348ad34377e5c60 (patch) | |
tree | 92086efc46a7afefe5774323ed298ce3163bfb95 /src/devices/cpu | |
parent | ada8249a0784f75ab283cd86531101ae00d318bf (diff) |
mn10300: Re-add missing LSR and ASR modes
Diffstat (limited to 'src/devices/cpu')
-rw-r--r-- | src/devices/cpu/mn10300/mn103dasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/mn10300/mn103dasm.cpp b/src/devices/cpu/mn10300/mn103dasm.cpp index 9467639f30c..8ffb5ca10eb 100644 --- a/src/devices/cpu/mn10300/mn103dasm.cpp +++ b/src/devices/cpu/mn10300/mn103dasm.cpp @@ -388,7 +388,7 @@ offs_t mn10300_disassembler::disassemble_f8(std::ostream &stream, offs_t pc, con util::stream_format(stream, ", d%d", BIT(op2, 0, 2)); return 3 | SUPPORTED; - case 0xc0: + case 0xc0: case 0xc4: case 0xc8: util::stream_format(stream, "%-8s%u, d%d", f_shift_ops[BIT(op2, 2, 2)], opcodes.r8(pc + 2), BIT(op2, 0, 2)); return 3 | SUPPORTED; |