mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
misc/cave.cpp: Corrected YMZ280B clock frequency for Gaia Crusaders and Thunder Heroes. (#11389)
This commit is contained in:
parent
1ab9990a98
commit
2a85c52239
@ -2230,7 +2230,12 @@ void cave_state::gaia(machine_config &config)
|
||||
MCFG_VIDEO_START_OVERRIDE(cave_state,spr_8bpp)
|
||||
|
||||
/* sound hardware */
|
||||
add_ymz(config);
|
||||
SPEAKER(config, "mono").front_center();
|
||||
|
||||
// Unlike other games also using ymz, gaia (and theroes) has 16MHz clock for it
|
||||
ymz280b_device &ymz(YMZ280B(config, "ymz", 16_MHz_XTAL));
|
||||
ymz.irq_handler().set(FUNC(cave_state::sound_irq_gen));
|
||||
ymz.add_route(ALL_OUTPUTS, "mono", 1.0);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user