mirror of
https://github.com/holub/mame
synced 2025-04-21 16:01:56 +03:00
taito_b.c: Use actual OSC values for Crime City's machine config - NW
This commit is contained in:
parent
f86bfe8c9b
commit
7c59b68218
@ -2127,11 +2127,11 @@ MACHINE_CONFIG_END
|
||||
static MACHINE_CONFIG_START( crimec, taitob_state )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", M68000, 12000000) /* 12 MHz */
|
||||
MCFG_CPU_ADD("maincpu", M68000, XTAL_24MHz/2) /* 12 MHz */
|
||||
MCFG_CPU_PROGRAM_MAP(crimec_map)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", taitob_state, crimec_interrupt)
|
||||
|
||||
MCFG_CPU_ADD("audiocpu", Z80, 4000000) /* 4 MHz */
|
||||
MCFG_CPU_ADD("audiocpu", Z80, XTAL_24MHz/6) /* 4 MHz */
|
||||
MCFG_CPU_PROGRAM_MAP(sound_map)
|
||||
|
||||
MCFG_QUANTUM_TIME(attotime::from_hz(600))
|
||||
@ -2158,7 +2158,7 @@ static MACHINE_CONFIG_START( crimec, taitob_state )
|
||||
/* sound hardware */
|
||||
MCFG_SPEAKER_STANDARD_MONO("mono")
|
||||
|
||||
MCFG_SOUND_ADD("ymsnd", YM2610, 8000000)
|
||||
MCFG_SOUND_ADD("ymsnd", YM2610, XTAL_16MHz/2) /* 8 MHz */
|
||||
MCFG_YM2610_IRQ_HANDLER(WRITELINE(taitob_state, irqhandler))
|
||||
MCFG_SOUND_ROUTE(0, "mono", 0.25)
|
||||
MCFG_SOUND_ROUTE(1, "mono", 1.0)
|
||||
|
Loading…
Reference in New Issue
Block a user