diff options
author | 2020-10-20 07:59:34 -0700 | |
---|---|---|
committer | 2020-10-20 10:59:34 -0400 | |
commit | 89dbabd04d00674a0c33d750fb381aba1d8cdf16 (patch) | |
tree | d040a7ed9a39f098afd39b52f58e06169a60adc0 /src/devices/machine/acorn_vidc.cpp | |
parent | b6d87c5b2384b19fec058d2a67908c89fe5f8b73 (diff) |
volt_reg: Remove uses that are not needed anymore with the recent (#7367)
DAC changes. Which is all of them. Remove the device as well.
Diffstat (limited to 'src/devices/machine/acorn_vidc.cpp')
-rw-r--r-- | src/devices/machine/acorn_vidc.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/machine/acorn_vidc.cpp b/src/devices/machine/acorn_vidc.cpp index f0ebf10f612..3ea63a91740 100644 --- a/src/devices/machine/acorn_vidc.cpp +++ b/src/devices/machine/acorn_vidc.cpp @@ -111,12 +111,10 @@ void acorn_vidc10_device::device_add_mconfig(machine_config &config) { SPEAKER(config, m_lspeaker).front_left(); SPEAKER(config, m_rspeaker).front_right(); - voltage_regulator_device &vref(VOLTAGE_REGULATOR(config, "vref", 0)); for (int i = 0; i < m_sound_max_channels; i++) { // custom DAC DAC_16BIT_R2R_TWOS_COMPLEMENT(config, m_dac[i], 0).add_route(0, m_lspeaker, m_sound_input_gain).add_route(0, m_rspeaker, m_sound_input_gain); - vref.add_route(0, m_dac[i], 1.0, DAC_VREF_POS_INPUT); vref.add_route(0, m_dac[i], -1.0, DAC_VREF_NEG_INPUT); } } |