From 71dc6ca2e58d40bf47d0be6dabc29c90a16a5333 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 8 Jan 2011 13:18:20 +0000 Subject: [PATCH] Enabled HD61700 in MAME compile and added it to unidasm tool (no whatsnew) --- src/mame/mame.mak | 2 +- src/tools/unidasm.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mame/mame.mak b/src/mame/mame.mak index 534b20f4b06..6a6ee921846 100644 --- a/src/mame/mame.mak +++ b/src/mame/mame.mak @@ -124,7 +124,7 @@ CPUS += MN10200 CPUS += COSMAC CPUS += PPS4 CPUS += UPD7725 - +CPUS += HD61700 #------------------------------------------------- # specify available sound cores; some of these are diff --git a/src/tools/unidasm.c b/src/tools/unidasm.c index 5c3e29c3f9b..0a7409e4171 100644 --- a/src/tools/unidasm.c +++ b/src/tools/unidasm.c @@ -104,6 +104,7 @@ CPU_DISASSEMBLE( cquestlin ); CPU_DISASSEMBLE( dsp32c ); CPU_DISASSEMBLE( dsp56k ); CPU_DISASSEMBLE( hyperstone_generic ); +CPU_DISASSEMBLE( hd61700 ); CPU_DISASSEMBLE( esrip ); CPU_DISASSEMBLE( f8 ); CPU_DISASSEMBLE( g65816_generic ); @@ -227,6 +228,7 @@ static const dasm_table_entry dasm_table[] = { "dsp32c", _32le, 0, CPU_DISASSEMBLE_NAME(dsp32c) }, { "dsp56k", _16le, -1, CPU_DISASSEMBLE_NAME(dsp56k) }, { "hyperstone", _16be, 0, CPU_DISASSEMBLE_NAME(hyperstone_generic) }, + { "hd61700", _8bit, 0, CPU_DISASSEMBLE_NAME(hd61700) }, { "esrip", _64be, 0, CPU_DISASSEMBLE_NAME(esrip) }, { "f8", _8bit, 0, CPU_DISASSEMBLE_NAME(f8) }, { "g65816", _8bit, 0, CPU_DISASSEMBLE_NAME(g65816_generic) },