summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/s2650/s2650.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/s2650/s2650.cpp')
-rw-r--r--src/devices/cpu/s2650/s2650.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/devices/cpu/s2650/s2650.cpp b/src/devices/cpu/s2650/s2650.cpp
index 2afc7c5b261..57aca5aec71 100644
--- a/src/devices/cpu/s2650/s2650.cpp
+++ b/src/devices/cpu/s2650/s2650.cpp
@@ -42,13 +42,16 @@ s2650_device::s2650_device(const machine_config &mconfig, const char *tag, devic
memset(m_reg, 0x00, sizeof(m_reg));
}
-
-offs_t s2650_device::disasm_disassemble(std::ostream &stream, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options)
+bool s2650_device::get_z80_mnemonics_mode() const
{
- extern CPU_DISASSEMBLE( s2650 );
- return CPU_DISASSEMBLE_NAME(s2650)(this, stream, pc, oprom, opram, options);
+ // Needs to become configurable live
+ return false;
}
+util::disasm_interface *s2650_device::create_disassembler()
+{
+ return new s2650_disassembler(this);
+}
device_memory_interface::space_config_vector s2650_device::memory_space_config() const
{