summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/ns32000
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-03-23 08:53:44 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-03-23 08:54:22 -0400
commitee9aacb008aa85a1cf01df3cf39c4b935d8fcf6f (patch)
treeabb8cca08b92bea4d1e397e0bac5b165a5d2a6d6 /src/devices/cpu/ns32000
parente7e395153a60ed6cbc0e63f97344d306fa4454c7 (diff)
ns32000dasm.cpp: Fix another catastrophic opcode format bug (nw)
Diffstat (limited to 'src/devices/cpu/ns32000')
-rw-r--r--src/devices/cpu/ns32000/ns32000dasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/ns32000/ns32000dasm.cpp b/src/devices/cpu/ns32000/ns32000dasm.cpp
index 51fee05dd9a..8bc25f48c60 100644
--- a/src/devices/cpu/ns32000/ns32000dasm.cpp
+++ b/src/devices/cpu/ns32000/ns32000dasm.cpp
@@ -784,7 +784,7 @@ offs_t ns32000_disassembler::disassemble(std::ostream &stream, offs_t pc, const
case 0x0b: /* Format 11 */
pc += 3;
- mnemonic = mnemonic_index(Format11[Format11op(opcode)], nullptr, fType[Format11f(opcode)]);
+ mnemonic = mnemonic_index(Format11[Format11op(opcode)], "", fType[Format11f(opcode)]);
switch (Format11op(opcode))
{
case 0x00: case 0x01: case 0x02: case 0x04: case 0x05 : case 0x08: case 0x0c : case 0x0d: