summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/adc083x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/adc083x.c')
-rw-r--r--src/emu/machine/adc083x.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/machine/adc083x.c b/src/emu/machine/adc083x.c
index b123a8bcfe6..55f7ec5134c 100644
--- a/src/emu/machine/adc083x.c
+++ b/src/emu/machine/adc083x.c
@@ -49,8 +49,8 @@ const device_type ADC0832 = &device_creator<adc0832_device>;
const device_type ADC0834 = &device_creator<adc0834_device>;
const device_type ADC0838 = &device_creator<adc0838_device>;
-adc083x_device::adc083x_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, type, name, tag, owner, clock),
+adc083x_device::adc083x_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)
+ : device_t(mconfig, type, name, tag, owner, clock, shortname, source),
m_cs(0),
m_clk(0),
m_di(0),
@@ -67,25 +67,25 @@ adc083x_device::adc083x_device(const machine_config &mconfig, device_type type,
}
adc0831_device::adc0831_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : adc083x_device(mconfig, ADC0831, "A/D Converters 0831", tag, owner, clock)
+ : adc083x_device(mconfig, ADC0831, "A/D Converters 0831", tag, owner, clock, "adc0831", __FILE__)
{
m_mux_bits = 0;
}
adc0832_device::adc0832_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : adc083x_device(mconfig, ADC0832, "A/D Converters 0832", tag, owner, clock)
+ : adc083x_device(mconfig, ADC0832, "A/D Converters 0832", tag, owner, clock, "adc0832", __FILE__)
{
m_mux_bits = 2;
}
adc0834_device::adc0834_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : adc083x_device(mconfig, ADC0834, "A/D Converters 0834", tag, owner, clock)
+ : adc083x_device(mconfig, ADC0834, "A/D Converters 0834", tag, owner, clock, "adc0834", __FILE__)
{
m_mux_bits = 3;
}
adc0838_device::adc0838_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : adc083x_device(mconfig, ADC0838, "A/D Converters 0838", tag, owner, clock)
+ : adc083x_device(mconfig, ADC0838, "A/D Converters 0838", tag, owner, clock, "adc0838", __FILE__)
{
m_mux_bits = 4;
}