diff options
author | 2020-10-20 07:59:34 -0700 | |
---|---|---|
committer | 2020-10-20 10:59:34 -0400 | |
commit | 89dbabd04d00674a0c33d750fb381aba1d8cdf16 (patch) | |
tree | d040a7ed9a39f098afd39b52f58e06169a60adc0 /src/mame/drivers/saitek_ccompan.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/mame/drivers/saitek_ccompan.cpp')
-rw-r--r-- | src/mame/drivers/saitek_ccompan.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mame/drivers/saitek_ccompan.cpp b/src/mame/drivers/saitek_ccompan.cpp index 7bb0a60e814..679dce3c18a 100644 --- a/src/mame/drivers/saitek_ccompan.cpp +++ b/src/mame/drivers/saitek_ccompan.cpp @@ -24,7 +24,6 @@ Hardware notes: #include "machine/6821pia.h" #include "machine/sensorboard.h" #include "sound/dac.h" -#include "sound/volt_reg.h" #include "video/pwm.h" #include "speaker.h" @@ -210,7 +209,6 @@ void ccompan_state::ccompan(machine_config &config) /* sound hardware */ SPEAKER(config, "speaker").front_center(); DAC_1BIT(config, m_dac).add_route(ALL_OUTPUTS, "speaker", 0.25); - VOLTAGE_REGULATOR(config, "vref").add_route(0, "dac", 1.0, DAC_VREF_POS_INPUT); } |