summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms1000/tms1000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms1000/tms1000.cpp')
-rw-r--r--src/devices/cpu/tms1000/tms1000.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/tms1000/tms1000.cpp b/src/devices/cpu/tms1000/tms1000.cpp
index 55ac2a01d8c..5aa2ecf8272 100644
--- a/src/devices/cpu/tms1000/tms1000.cpp
+++ b/src/devices/cpu/tms1000/tms1000.cpp
@@ -13,6 +13,7 @@
#include "emu.h"
#include "tms1000.h"
+#include "tms1k_dasm.h"
#include "debugger.h"
// TMS1000
@@ -112,10 +113,9 @@ mc141200_cpu_device::mc141200_cpu_device(const machine_config &mconfig, const ch
MACHINE_CONFIG_END
// disasm
-offs_t tms1000_cpu_device::disasm_disassemble(std::ostream &stream, offs_t pc, const u8 *oprom, const u8 *opram, u32 options)
+util::disasm_interface *tms1000_cpu_device::create_disassembler()
{
- extern CPU_DISASSEMBLE(tms1000);
- return CPU_DISASSEMBLE_NAME(tms1000)(this, stream, pc, oprom, opram, options);
+ return new tms1000_disassembler;
}