summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m32c/m32cdasm.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-12-27 05:35:56 +1100
committer Vas Crabb <vas@vastheman.com>2020-12-27 05:35:56 +1100
commit43f569e58f26d23032b950ebcbd02f352532ba95 (patch)
tree6dfcb34f89f539c2a5d177e9970debf841189727 /src/devices/cpu/m32c/m32cdasm.cpp
parenta5e6f4ea8d468f8f8e50ad5199a9f8aa9a81e9f1 (diff)
srcclean for 0.227
Diffstat (limited to 'src/devices/cpu/m32c/m32cdasm.cpp')
-rw-r--r--src/devices/cpu/m32c/m32cdasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m32c/m32cdasm.cpp b/src/devices/cpu/m32c/m32cdasm.cpp
index 8a4b9422c2c..9c687a37f47 100644
--- a/src/devices/cpu/m32c/m32cdasm.cpp
+++ b/src/devices/cpu/m32c/m32cdasm.cpp
@@ -399,7 +399,7 @@ void m32c_disassembler::dasm_00000001(std::ostream &stream, offs_t &pc, const m3
dasm_immediate_mode(stream, pc, opcodes, (op2 & 0x0e) << 1 | BIT(op3, 6, 2), BIT(op2, 0), indirect_dest, 2, true);
}
else
- {
+ {
util::stream_format(stream, "%-11s", util::string_format("%sad%c.%c ", BIT(op3, 5) ? "d" : "", BIT(op3, 4) ? 'd' : 'c', BIT(op2, 0) ? 'w' : 'b'));
dasm_immediate_mode(stream, pc, opcodes, (op2 & 0x0e) << 1 | BIT(op3, 6, 2), BIT(op2, 0), indirect_dest, 1, !BIT(op3, 5));
}