From 9948864f1484806c83a25c6a60d9cd91a2875d09 Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 2 Jan 2024 23:15:59 -0500 Subject: h16: Correct disassembly of SMOV and SSTR --- src/devices/cpu/h16/h16dasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/h16/h16dasm.cpp b/src/devices/cpu/h16/h16dasm.cpp index a7741a39070..a8643555cb5 100644 --- a/src/devices/cpu/h16/h16dasm.cpp +++ b/src/devices/cpu/h16/h16dasm.cpp @@ -800,7 +800,7 @@ offs_t h16_disassembler::disassemble(std::ostream &stream, offs_t pc, const h16_ } else { - util::stream_format(stream, "S%s/%c.%c ", (xb1 & 0x30) == 0 ? "MOV" : "STR", "FB"[BIT(xb1, 6)], "BW"[BIT(op, 0)]); + util::stream_format(stream, "S%s/%c.%c ", (xb1 & 0x30) == 0 ? "STR" : "MOV", "FB"[BIT(xb1, 6)], "BW"[BIT(op, 0)]); format_register_to_register(stream, xb2); stream << ", "; format_register(stream, 0, xb1 & 0x0f); -- cgit v1.2.3