mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
sanritsu/jantotsu.cpp : fix SN76489A clock (#10863)
* sanritsu/jantotsu.cpp : Correct SN76489A clocks to match reference video
This commit is contained in:
parent
d35408d628
commit
83d2dc4b8c
@ -511,8 +511,8 @@ void jantotsu_state::jantotsu(machine_config &config)
|
||||
// sound hardware
|
||||
SPEAKER(config, "mono").front_center();
|
||||
|
||||
SN76489A(config, "sn1", 18.432_MHz_XTAL / 4).add_route(ALL_OUTPUTS, "mono", 0.50);
|
||||
SN76489A(config, "sn2", 18.432_MHz_XTAL / 4).add_route(ALL_OUTPUTS, "mono", 0.50);
|
||||
SN76489A(config, "sn1", 18.432_MHz_XTAL / 6).add_route(ALL_OUTPUTS, "mono", 0.50);
|
||||
SN76489A(config, "sn2", 18.432_MHz_XTAL / 6).add_route(ALL_OUTPUTS, "mono", 0.50);
|
||||
|
||||
MSM5205(config, m_adpcm, 384_kHz_XTAL);
|
||||
m_adpcm->vck_legacy_callback().set(FUNC(jantotsu_state::adpcm_int)); // interrupt function
|
||||
|
Loading…
Reference in New Issue
Block a user