diff options
Diffstat (limited to 'src/mame/audio/atarisac.cpp')
-rw-r--r-- | src/mame/audio/atarisac.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mame/audio/atarisac.cpp b/src/mame/audio/atarisac.cpp index a0fef91cb29..3232dc570a0 100644 --- a/src/mame/audio/atarisac.cpp +++ b/src/mame/audio/atarisac.cpp @@ -12,7 +12,6 @@ #include "audio/atarisac.h" #include "cpu/m68000/m68000.h" -#include "sound/volt_reg.h" //************************************************************************** @@ -272,11 +271,6 @@ void atari_sac_device::device_add_mconfig(machine_config &config) // FIXME: there is actually only one DAC (plus some analog switches) AM6012(config, m_rdac).add_route(ALL_OUTPUTS, *this, 0.5, AUTO_ALLOC_INPUT, 1); // AM6012.6j AM6012(config, m_ldac).add_route(ALL_OUTPUTS, *this, 0.5, AUTO_ALLOC_INPUT, 0); // AM6012.6j - voltage_regulator_device &vref(VOLTAGE_REGULATOR(config, "vref", 0)); - vref.add_route(0, "rdac", 1.0, DAC_VREF_POS_INPUT); - vref.add_route(0, "rdac", -1.0, DAC_VREF_NEG_INPUT); - vref.add_route(0, "ldac", 1.0, DAC_VREF_POS_INPUT); - vref.add_route(0, "ldac", -1.0, DAC_VREF_NEG_INPUT); } |