mirror of
https://github.com/holub/mame
synced 2025-05-22 21:58:57 +03:00
parent
cfa3a716cc
commit
cdeb8dbaa7
@ -1913,8 +1913,8 @@ static MACHINE_CONFIG_START( salamand, nemesis_state )
|
||||
|
||||
MCFG_SOUND_ADD("ymsnd", YM2151, 3579545)
|
||||
MCFG_SOUND_CONFIG(ym2151_config)
|
||||
MCFG_SOUND_ROUTE(0, "lspeaker", 1.2)
|
||||
MCFG_SOUND_ROUTE(1, "rspeaker", 1.2)
|
||||
MCFG_SOUND_ROUTE(0, "rspeaker", 1.2) // reversed according to MT #4565
|
||||
MCFG_SOUND_ROUTE(1, "lspeaker", 1.2)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
@ -1377,7 +1377,7 @@ static MACHINE_CONFIG_DERIVED( dw3, pgm )
|
||||
|
||||
MCFG_DEVICE_REMOVE("maincpu")
|
||||
MCFG_CPU_ADD("maincpu", M68000, 20000000)
|
||||
MCFG_CPU_PROGRAM_MAP(pgm_mem)
|
||||
MCFG_CPU_PROGRAM_MAP(killbld_mem)
|
||||
MCFG_TIMER_ADD_SCANLINE("scantimer", drgw_interrupt, "screen", 0, 1)
|
||||
|
||||
|
||||
|
@ -294,14 +294,15 @@ static MACHINE_CONFIG_START( rockrage, rockrage_state )
|
||||
MCFG_PALETTE_INIT(rockrage)
|
||||
|
||||
/* sound hardware */
|
||||
MCFG_SPEAKER_STANDARD_MONO("mono")
|
||||
MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
|
||||
|
||||
MCFG_SOUND_ADD("ymsnd", YM2151, 3579545)
|
||||
MCFG_SOUND_ROUTE(0, "mono", 0.60)
|
||||
MCFG_SOUND_ROUTE(1, "mono", 0.60)
|
||||
MCFG_SOUND_ROUTE(0, "lspeaker", 0.60)
|
||||
MCFG_SOUND_ROUTE(1, "rspeaker", 0.60)
|
||||
|
||||
MCFG_SOUND_ADD("vlm", VLM5030, 3579545)
|
||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.60)
|
||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.60)
|
||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.60)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
@ -118,7 +118,7 @@ static WRITE8_HANDLER( thedeep_protection_w )
|
||||
// d166-d174: hl = (hl + 2*a)
|
||||
// d175-d181: hl *= e (e must be non zero)
|
||||
// d182-d19a: hl /= de
|
||||
state->m_protection_data = space->machine().region("cpu3")->base()[0x185+state->m_protection_index++];
|
||||
state->m_protection_data = space->machine().region("mcu")->base()[0x185+state->m_protection_index++];
|
||||
else
|
||||
state->m_protection_data = 0xc9;
|
||||
|
||||
@ -370,7 +370,7 @@ static MACHINE_CONFIG_START( thedeep, thedeep_state )
|
||||
MCFG_CPU_PROGRAM_MAP(audio_map)
|
||||
/* IRQ by YM2203, NMI by when sound latch written by main cpu */
|
||||
|
||||
/* CPU3 is a i8751 running at 8Mhz (8mhz xtal)*/
|
||||
/* MCU is a i8751 running at 8Mhz (8mhz xtal)*/
|
||||
MCFG_CPU_ADD("mcu", I8751, XTAL_8MHz)
|
||||
MCFG_CPU_IO_MAP(mcu_io_map)
|
||||
MCFG_DEVICE_DISABLE()
|
||||
|
Loading…
Reference in New Issue
Block a user