diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/bus/isa/gblaster.c | 12 | ||||
-rw-r--r-- | src/devices/bus/isa/sblaster.c | 4 | ||||
-rw-r--r-- | src/devices/sound/x1_010.c | 2 |
3 files changed, 10 insertions, 8 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) 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; |