summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/alto2/alto2cpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/alto2/alto2cpu.cpp')
-rw-r--r--src/devices/cpu/alto2/alto2cpu.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/cpu/alto2/alto2cpu.cpp b/src/devices/cpu/alto2/alto2cpu.cpp
index fd7a1f6dede..21f9faa2625 100644
--- a/src/devices/cpu/alto2/alto2cpu.cpp
+++ b/src/devices/cpu/alto2/alto2cpu.cpp
@@ -7,6 +7,7 @@
*****************************************************************************/
#include "emu.h"
#include "alto2cpu.h"
+#include "alto2dsm.h"
#include "a2roms.h"
#define DEBUG_UCODE_CONST_DATA 0 //!< define to 1 to dump decoded micro code and constants
@@ -2980,3 +2981,8 @@ void alto2_cpu_device::soft_reset()
m_unload_time = 0; // reset the word unload timing accu
m_bitclk_time = 0; // reset the bitclk timing accu
}
+
+util::disasm_interface *alto2_cpu_device::create_disassembler()
+{
+ return new alto2_disassembler;
+}