summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms7000/tms7000.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-11-29 08:50:34 +1100
committer Vas Crabb <vas@vastheman.com>2017-11-29 08:50:34 +1100
commitd556b01583d6b4f559263edb67f7383b9a24c7a3 (patch)
tree679f71cfbc1e50acb768c7b3bcd9315f581a59a9 /src/devices/cpu/tms7000/tms7000.cpp
parentd771f542271c363f2b5eee0e92b625a0d568058d (diff)
parent45cbbc5f0a097a6861e441b9b2db7123602c47bd (diff)
Merge branch 'master' into release0192
Diffstat (limited to 'src/devices/cpu/tms7000/tms7000.cpp')
-rw-r--r--src/devices/cpu/tms7000/tms7000.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/tms7000/tms7000.cpp b/src/devices/cpu/tms7000/tms7000.cpp
index ff3ba23bcf1..c9cb89debd8 100644
--- a/src/devices/cpu/tms7000/tms7000.cpp
+++ b/src/devices/cpu/tms7000/tms7000.cpp
@@ -19,6 +19,7 @@
#include "emu.h"
#include "tms7000.h"
+#include "7000dasm.h"
// TMS7000 is the most basic one, 128 bytes internal RAM and no internal ROM.
// TMS7020 and TMS7040 are same, but with 2KB and 4KB internal ROM respectively.
@@ -273,10 +274,9 @@ void tms7000_device::state_string_export(const device_state_entry &entry, std::s
}
}
-offs_t tms7000_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
+util::disasm_interface *tms7000_device::create_disassembler()
{
- extern CPU_DISASSEMBLE( tms7000 );
- return CPU_DISASSEMBLE_NAME(tms7000)(this, stream, pc, oprom, opram, options);
+ return new tms7000_disassembler;
}