summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mn10200/mn10200.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mn10200/mn10200.cpp')
-rw-r--r--src/devices/cpu/mn10200/mn10200.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/mn10200/mn10200.cpp b/src/devices/cpu/mn10200/mn10200.cpp
index 59407b507ca..74757bd9e53 100644
--- a/src/devices/cpu/mn10200/mn10200.cpp
+++ b/src/devices/cpu/mn10200/mn10200.cpp
@@ -11,6 +11,7 @@
#include "emu.h"
#include "debugger.h"
#include "mn10200.h"
+#include "mn102dis.h"
#define log_write(...)
#define log_event(...)
@@ -88,10 +89,9 @@ void mn10200_device::state_string_export(const device_state_entry &entry, std::s
}
}
-offs_t mn10200_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
+util::disasm_interface *mn10200_device::create_disassembler()
{
- extern CPU_DISASSEMBLE( mn10200 );
- return CPU_DISASSEMBLE_NAME(mn10200)(this, stream, pc, oprom, opram, options);
+ return new mn10200_disassembler;
}