summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/cp1610/cp1610.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/cp1610/cp1610.cpp')
-rw-r--r--src/devices/cpu/cp1610/cp1610.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/devices/cpu/cp1610/cp1610.cpp b/src/devices/cpu/cp1610/cp1610.cpp
index 5a113b4e954..085ee1e2ab5 100644
--- a/src/devices/cpu/cp1610/cp1610.cpp
+++ b/src/devices/cpu/cp1610/cp1610.cpp
@@ -16,7 +16,7 @@
#include "emu.h"
#include "cp1610.h"
#include "debugger.h"
-
+#include "1610dasm.h"
DEFINE_DEVICE_TYPE(CP1610, cp1610_cpu_device, "cp1610", "GI CP1610")
@@ -3422,9 +3422,7 @@ void cp1610_cpu_device::state_string_export(const device_state_entry &entry, std
}
}
-
-offs_t cp1610_cpu_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
+util::disasm_interface *cp1610_cpu_device::create_disassembler()
{
- extern CPU_DISASSEMBLE( cp1610 );
- return CPU_DISASSEMBLE_NAME(cp1610)(this, stream, pc, oprom, opram, options);
+ return new cp1610_disassembler;
}