diff options
author | 2019-07-16 10:18:21 +0700 | |
---|---|---|
committer | 2019-07-16 10:18:21 +0700 | |
commit | 2d8207f9178b01f45fec6c08ffd35bc7dafa5772 (patch) | |
tree | fe45cc1977538704481b08f4395eb6cdea1a1f84 /src | |
parent | 94db324f015f2629d2ec20376860ee3ee6a41586 (diff) |
wtl3132: cosmetic fix (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/machine/wtl3132.cpp | 6 |
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; } |