From 21889a3113ccef9b504eba1c185f833da01cd92b Mon Sep 17 00:00:00 2001 From: kazblox Date: Tue, 29 Sep 2015 18:09:13 +0800 Subject: x1_010: this sample rate value seems closer --- src/devices/sound/x1_010.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/sound/x1_010.c b/src/devices/sound/x1_010.c index 5d8377569bb..0ed9168e735 100644 --- a/src/devices/sound/x1_010.c +++ b/src/devices/sound/x1_010.c @@ -110,7 +110,7 @@ void x1_010_device::device_start() int i; m_base_clock = clock(); - m_rate = clock() / 1024; + m_rate = clock() / 512; for( i = 0; i < SETA_NUM_CHANNELS; i++ ) { m_smp_offset[i] = 0; -- cgit v1.2.3 From 404c955755998b5210fb1d4f154345af674b5303 Mon Sep 17 00:00:00 2001 From: kazblox Date: Tue, 29 Sep 2015 18:30:35 +0800 Subject: gblaster/sblaster: minor corrections --- src/devices/bus/isa/gblaster.c | 12 +++++++----- src/devices/bus/isa/sblaster.c | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/devices/bus/isa/gblaster.c b/src/devices/bus/isa/gblaster.c index 6ee9600cdb6..22cb5edd328 100644 --- a/src/devices/bus/isa/gblaster.c +++ b/src/devices/bus/isa/gblaster.c @@ -19,11 +19,13 @@ jumperable? normally 0x220 */ static MACHINE_CONFIG_FRAGMENT( game_blaster_config ) - MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SAA1099_ADD("saa1099.1", 7159000) - MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50) - MCFG_SAA1099_ADD("saa1099.2", 7159000) - MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50) + MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker") + MCFG_SAA1099_ADD("saa1099.1", 7159090) + MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.50) + MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.50) + MCFG_SAA1099_ADD("saa1099.2", 7159090) + MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.50) + MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.50) MACHINE_CONFIG_END READ8_MEMBER( isa8_gblaster_device::saa1099_16_r ) diff --git a/src/devices/bus/isa/sblaster.c b/src/devices/bus/isa/sblaster.c index 9b02d91b5c4..15b7191af29 100644 --- a/src/devices/bus/isa/sblaster.c +++ b/src/devices/bus/isa/sblaster.c @@ -66,10 +66,10 @@ static MACHINE_CONFIG_FRAGMENT( sblaster1_0_config ) MCFG_SOUND_ADD("ym3812", YM3812, ym3812_StdClock) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 3.00) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 3.00) - MCFG_SAA1099_ADD("saa1099.1", 7159000) + MCFG_SAA1099_ADD("saa1099.1", 7159090) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.50) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.50) - MCFG_SAA1099_ADD("saa1099.2", 7159000) + MCFG_SAA1099_ADD("saa1099.2", 7159090) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "lspeaker", 0.50) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "rspeaker", 0.50) -- cgit v1.2.3