summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms32051/tms32051.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms32051/tms32051.cpp')
-rw-r--r--src/devices/cpu/tms32051/tms32051.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/tms32051/tms32051.cpp b/src/devices/cpu/tms32051/tms32051.cpp
index 22abad952ff..f1a38012f24 100644
--- a/src/devices/cpu/tms32051/tms32051.cpp
+++ b/src/devices/cpu/tms32051/tms32051.cpp
@@ -8,6 +8,7 @@
#include "emu.h"
#include "tms32051.h"
+#include "dis32051.h"
#include "debugger.h"
enum
@@ -117,10 +118,9 @@ tms32053_device::tms32053_device(const machine_config &mconfig, const char *tag,
}
-offs_t tms32051_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
+util::disasm_interface *tms32051_device::create_disassembler()
{
- extern CPU_DISASSEMBLE( tms32051 );
- return CPU_DISASSEMBLE_NAME(tms32051)(this, stream, pc, oprom, opram, options);
+ return new tms32051_disassembler;
}