From 9481dc6c54f49bba89518240e82e3b3b53feaf30 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 24 Jun 2017 22:02:34 -0400 Subject: age_candy: Document MCU type that isn't emulated (nw) --- src/mame/drivers/age_candy.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/age_candy.cpp b/src/mame/drivers/age_candy.cpp index 3c7a4a2df8d..0b45792f363 100644 --- a/src/mame/drivers/age_candy.cpp +++ b/src/mame/drivers/age_candy.cpp @@ -44,10 +44,16 @@ void age_candy_state::machine_reset() } +#ifdef UNUSED_DEFINITION +static ADDRESS_MAP_START(age_candy_map, AS_PROGRAM, 8, age_candy_state) + AM_RANGE(0xc000, 0xffff) AM_ROM AM_REGION("maincpu", 0x4000) +ADDRESS_MAP_END +#endif + static MACHINE_CONFIG_START( age_candy ) /* basic machine hardware */ -// MCFG_CPU_ADD("maincpu", ??, 8000000) // unknown (vectors at end? 6xxx ?) +// MCFG_CPU_ADD("maincpu", HPC46104, 8000000) // unknown clock; HPC emulation needed // MCFG_CPU_PROGRAM_MAP(age_candy_map) // MCFG_CPU_IO_MAP(age_candy_io) @@ -58,7 +64,7 @@ MACHINE_CONFIG_END ROM_START( age_cand ) - ROM_REGION( 0x10000, "maincpu", 0 ) + ROM_REGION( 0x8000, "maincpu", 0 ) ROM_LOAD( "AGEcandy.u3", 0x0000, 0x8000, CRC(c8cfc666) SHA1(a1c475ae105746e984741af0723a712f09d7b847) ) ROM_END -- cgit v1.2.3