mirror of
https://github.com/holub/mame
synced 2025-05-25 07:15:25 +03:00
taito_h.c: update machine def with xtal defs & slight rewording in the header. - nw
This commit is contained in:
parent
6705096fe2
commit
28c8aa3851
@ -5,8 +5,8 @@ Taito H system
|
|||||||
driver by Yochizo
|
driver by Yochizo
|
||||||
|
|
||||||
This driver is heavily dependent on the Raine source.
|
This driver is heavily dependent on the Raine source.
|
||||||
Very thanks to Richard Bush and the Raine team. Also,
|
Special thanks to Richard Bush and the Raine team. Also,
|
||||||
I have been given a lot of helpful informations by
|
I have been given a lot of helpful information by
|
||||||
Yasuhiro Ogawa. Thank you, Yasu.
|
Yasuhiro Ogawa. Thank you, Yasu.
|
||||||
|
|
||||||
|
|
||||||
@ -566,11 +566,11 @@ static const tc0140syt_interface taitoh_tc0140syt_intf =
|
|||||||
static MACHINE_CONFIG_START( syvalion, taitoh_state )
|
static MACHINE_CONFIG_START( syvalion, taitoh_state )
|
||||||
|
|
||||||
/* basic machine hardware */
|
/* basic machine hardware */
|
||||||
MCFG_CPU_ADD("maincpu", M68000,24000000 / 2) /* 12 MHz */
|
MCFG_CPU_ADD("maincpu", M68000, XTAL_24MHz / 2) /* 12 MHz */
|
||||||
MCFG_CPU_PROGRAM_MAP(syvalion_map)
|
MCFG_CPU_PROGRAM_MAP(syvalion_map)
|
||||||
MCFG_CPU_VBLANK_INT("screen", irq2_line_hold)
|
MCFG_CPU_VBLANK_INT("screen", irq2_line_hold)
|
||||||
|
|
||||||
MCFG_CPU_ADD("audiocpu", Z80,8000000 / 2) /* 4 MHz ??? */
|
MCFG_CPU_ADD("audiocpu", Z80, XTAL_8MHz / 2) /* 4 MHz ??? */
|
||||||
MCFG_CPU_PROGRAM_MAP(sound_map)
|
MCFG_CPU_PROGRAM_MAP(sound_map)
|
||||||
|
|
||||||
MCFG_MACHINE_START(taitoh)
|
MCFG_MACHINE_START(taitoh)
|
||||||
@ -596,7 +596,7 @@ static MACHINE_CONFIG_START( syvalion, taitoh_state )
|
|||||||
/* sound hardware */
|
/* sound hardware */
|
||||||
MCFG_SPEAKER_STANDARD_MONO("mono")
|
MCFG_SPEAKER_STANDARD_MONO("mono")
|
||||||
|
|
||||||
MCFG_SOUND_ADD("ymsnd", YM2610, 8000000)
|
MCFG_SOUND_ADD("ymsnd", YM2610, XTAL_8MHz)
|
||||||
MCFG_SOUND_CONFIG(ym2610_config)
|
MCFG_SOUND_CONFIG(ym2610_config)
|
||||||
MCFG_SOUND_ROUTE(0, "mono", 0.25)
|
MCFG_SOUND_ROUTE(0, "mono", 0.25)
|
||||||
MCFG_SOUND_ROUTE(1, "mono", 1.0)
|
MCFG_SOUND_ROUTE(1, "mono", 1.0)
|
||||||
|
Loading…
Reference in New Issue
Block a user