Fixed xtal for audio cpu

This commit is contained in:
Angelo Salese 2011-04-24 17:23:15 +00:00
parent f52cce3627
commit 5acbc755ee

View File

@ -460,7 +460,7 @@ static MACHINE_CONFIG_START( cop01, cop01_state )
MCFG_CPU_IO_MAP(io_map)
MCFG_CPU_VBLANK_INT("screen", irq0_line_assert)
MCFG_CPU_ADD("audiocpu", Z80, AUDIOCPU_CLOCK/4) /* unknown divider */
MCFG_CPU_ADD("audiocpu", Z80, AUDIOCPU_CLOCK/2) /* unknown divider */
MCFG_CPU_PROGRAM_MAP(sound_map)
MCFG_CPU_IO_MAP(audio_io_map)
@ -503,7 +503,7 @@ static MACHINE_CONFIG_START( mightguy, cop01_state )
MCFG_CPU_IO_MAP(mightguy_io_map)
MCFG_CPU_VBLANK_INT("screen", irq0_line_assert)
MCFG_CPU_ADD("audiocpu", Z80, AUDIOCPU_CLOCK/4) /* unknown divider */
MCFG_CPU_ADD("audiocpu", Z80, AUDIOCPU_CLOCK/2) /* unknown divider */
MCFG_CPU_PROGRAM_MAP(sound_map)
MCFG_CPU_IO_MAP(mightguy_audio_io_map)