summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/tms9900/tms9995.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-03-07 07:20:48 +0000
committer smf- <smf-@users.noreply.github.com>2013-03-07 07:20:48 +0000
commite28ed1357c7f8c4a4515c984f9a62ee9769957dd (patch)
treeb07d724a0a048adaaa4c8302525e08dcb83741d9 /src/emu/cpu/tms9900/tms9995.c
parent039aa6d9d75dc54ae07d4035420b96630b031509 (diff)
Added tms9900, tms9980 & tms9995 to unidasm. Other tms99xx cpu cores are generated with macros, including the CPU_DISASSEMBLE (nw)
Diffstat (limited to 'src/emu/cpu/tms9900/tms9995.c')
-rw-r--r--src/emu/cpu/tms9900/tms9995.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/cpu/tms9900/tms9995.c b/src/emu/cpu/tms9900/tms9995.c
index 59f9602e06d..50d51e7c68b 100644
--- a/src/emu/cpu/tms9900/tms9995.c
+++ b/src/emu/cpu/tms9900/tms9995.c
@@ -3310,7 +3310,8 @@ UINT32 tms9995_device::disasm_max_opcode_bytes() const
offs_t tms9995_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options)
{
- return Dasm9900(buffer, pc, TMS9995_ID, oprom, opram);
+ extern CPU_DISASSEMBLE( tms9995 );
+ return CPU_DISASSEMBLE_NAME(tms9995)(this, buffer, pc, oprom, opram, options);
}