summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author Aaron Giles <aaronsgiles@users.noreply.github.com>2020-10-20 07:59:34 -0700
committer GitHub <noreply@github.com>2020-10-20 10:59:34 -0400
commit89dbabd04d00674a0c33d750fb381aba1d8cdf16 (patch)
treed040a7ed9a39f098afd39b52f58e06169a60adc0 /src/mame/includes
parentb6d87c5b2384b19fec058d2a67908c89fe5f8b73 (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/includes')
-rw-r--r--src/mame/includes/alpha68k.h1
-rw-r--r--src/mame/includes/segas16b.h1
-rw-r--r--src/mame/includes/starfire.h1
-rw-r--r--src/mame/includes/vicdual.h5
4 files changed, 1 insertions, 7 deletions
diff --git a/src/mame/includes/alpha68k.h b/src/mame/includes/alpha68k.h
index 8e2bf658eaa..0ebdcaff276 100644
--- a/src/mame/includes/alpha68k.h
+++ b/src/mame/includes/alpha68k.h
@@ -17,7 +17,6 @@
#include "sound/3812intf.h"
#include "sound/ay8910.h"
#include "sound/dac.h"
-#include "sound/volt_reg.h"
#include "sound/ym2413.h"
#include "machine/74259.h"
#include "machine/gen_latch.h"
diff --git a/src/mame/includes/segas16b.h b/src/mame/includes/segas16b.h
index f9d9bbe49b3..c960b3674dc 100644
--- a/src/mame/includes/segas16b.h
+++ b/src/mame/includes/segas16b.h
@@ -23,7 +23,6 @@
#include "sound/ym2413.h"
#include "sound/upd7759.h"
#include "sound/dac.h"
-#include "sound/volt_reg.h"
#include "video/segaic16.h"
#include "video/sega16sp.h"
#include "screen.h"
diff --git a/src/mame/includes/starfire.h b/src/mame/includes/starfire.h
index a0e9e5df161..c2651b9c162 100644
--- a/src/mame/includes/starfire.h
+++ b/src/mame/includes/starfire.h
@@ -16,7 +16,6 @@
#include "audio/nl_fireone.h"
#include "audio/nl_starfire.h"
#include "sound/dac.h"
-#include "sound/volt_reg.h"
#include "screen.h"
diff --git a/src/mame/includes/vicdual.h b/src/mame/includes/vicdual.h
index d26932a55e9..3ff0a70fd84 100644
--- a/src/mame/includes/vicdual.h
+++ b/src/mame/includes/vicdual.h
@@ -13,7 +13,6 @@
#include "sound/dac.h"
#include "sound/discrete.h"
#include "sound/samples.h"
-#include "sound/volt_reg.h"
#include "screen.h"
#include "audio/vicdual.h"
#include "audio/vicdual-97271p.h"
@@ -244,8 +243,7 @@ public:
m_audiocpu(*this, "audiocpu"),
m_psg(*this, "psg"),
m_pit(*this, "pit"),
- m_dac(*this, "dac%u", 0),
- m_vref(*this, "vref%u", 0)
+ m_dac(*this, "dac%u", 0)
{ }
void carnival(machine_config &config);
@@ -262,7 +260,6 @@ protected:
optional_device<ay8910_device> m_psg;
optional_device<pit8253_device> m_pit;
optional_device_array<dac_bit_interface, 3> m_dac;
- optional_device_array<voltage_regulator_device, 3> m_vref;
void carnival_io_map(address_map &map);
void mboard_map(address_map &map);