summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/wtl3132.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/wtl3132.cpp')
-rw-r--r--src/devices/machine/wtl3132.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/wtl3132.cpp b/src/devices/machine/wtl3132.cpp
index 0be0cac8edd..bc7088aa24f 100644
--- a/src/devices/machine/wtl3132.cpp
+++ b/src/devices/machine/wtl3132.cpp
@@ -464,9 +464,9 @@ std::string wtl3132_device::disassemble(u64 const code)
switch (OPF(code, IOCT))
{
- case 1: return util::string_format("%-32s ; floadrc %4s", alu, reg(OPF(code, DADD))); break;
- case 2: return util::string_format("%-32s ; fstore %4s", alu, reg(OPF(code, DADD))); break;
- case 3: return util::string_format("%-32s ; fload %4s", alu, reg(OPF(code, DADD))); break;
+ case 1: return util::string_format("%-38s ; floadrc %4s", alu, reg(OPF(code, DADD))); break;
+ case 2: return util::string_format("%-38s ; fstore %4s", alu, reg(OPF(code, DADD))); break;
+ case 3: return util::string_format("%-38s ; fload %4s", alu, reg(OPF(code, DADD))); break;
default:
return alu;
}