diff options
author | 2013-02-12 15:21:24 +0000 | |
---|---|---|
committer | 2013-02-12 15:21:24 +0000 | |
commit | 7e6fabfb9e6797461c3f8f037ab1d4e8a4c69c04 (patch) | |
tree | c65a6911f296e74a918caaf39a5e6fc3fa56588e /src/mess/machine/plus4_sid.c | |
parent | 8acbf9de2c66b6536969af8f621681a584a1d8c9 (diff) |
Modernized the MOS6526, MOS6560, MOS7360, MOS6581, CBM IEC, and IEEE-488 devices. [Curt Coder]
Diffstat (limited to 'src/mess/machine/plus4_sid.c')
-rw-r--r-- | src/mess/machine/plus4_sid.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/mess/machine/plus4_sid.c b/src/mess/machine/plus4_sid.c index d0acd46783d..77487c191ea 100644 --- a/src/mess/machine/plus4_sid.c +++ b/src/mess/machine/plus4_sid.c @@ -59,24 +59,12 @@ const rom_entry *plus4_sid_cartridge_device::device_rom_region() const //------------------------------------------------- -// sid6581_interface sid_intf -//------------------------------------------------- - -static MOS6581_INTERFACE( sid_intf ) -{ - DEVCB_NULL, - DEVCB_NULL -}; - - -//------------------------------------------------- // MACHINE_CONFIG_FRAGMENT( plus4_sid ) //------------------------------------------------- static MACHINE_CONFIG_FRAGMENT( plus4_sid ) MCFG_SPEAKER_STANDARD_MONO("mono") - MCFG_SOUND_ADD(MOS8580_TAG, SID8580, XTAL_17_73447MHz/20) - MCFG_SOUND_CONFIG(sid_intf) + MCFG_SOUND_ADD(MOS8580_TAG, MOS8580, XTAL_17_73447MHz/20) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00) MCFG_SOUND_ADD("dac", DAC, 0) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) |