summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/t11/t11.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/t11/t11.cpp')
-rw-r--r--src/devices/cpu/t11/t11.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/cpu/t11/t11.cpp b/src/devices/cpu/t11/t11.cpp
index dba6241b553..156486a2f75 100644
--- a/src/devices/cpu/t11/t11.cpp
+++ b/src/devices/cpu/t11/t11.cpp
@@ -13,6 +13,7 @@
#include "emu.h"
#include "t11.h"
+#include "t11dasm.h"
#include "debugger.h"
@@ -422,9 +423,7 @@ void t11_device::execute_run()
} while (m_icount > 0);
}
-
-offs_t t11_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
+util::disasm_interface *t11_device::create_disassembler()
{
- extern CPU_DISASSEMBLE( t11 );
- return CPU_DISASSEMBLE_NAME(t11)(this, stream, pc, oprom, opram, options);
+ return new t11_disassembler;
}