superchs.c: Actually include the correct CPU clock. - NW

This commit is contained in:
Brian Troha 2013-04-26 02:38:50 +00:00
parent 0bef324320
commit f226985d3e

View File

@ -328,11 +328,11 @@ static const tc0480scp_interface superchs_tc0480scp_intf =
static MACHINE_CONFIG_START( superchs, superchs_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68EC020, XTAL_32MHz/2)
MCFG_CPU_ADD("maincpu", M68EC020, XTAL_40MHz/2) /* 20MHz - verified */
MCFG_CPU_PROGRAM_MAP(superchs_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", superchs_state, irq2_line_hold)
MCFG_CPU_ADD("sub", M68000, XTAL_32MHz/2)
MCFG_CPU_ADD("sub", M68000, XTAL_32MHz/2) /* 16MHz - verified */
MCFG_CPU_PROGRAM_MAP(superchs_cpub_map)
MCFG_CPU_VBLANK_INT_DRIVER("screen", superchs_state, irq4_line_hold)