summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/esqpanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/esqpanel.cpp')
-rw-r--r--src/mame/machine/esqpanel.cpp20
1 files changed, 4 insertions, 16 deletions
diff --git a/src/mame/machine/esqpanel.cpp b/src/mame/machine/esqpanel.cpp
index 5df6d26da71..57e4a873936 100644
--- a/src/mame/machine/esqpanel.cpp
+++ b/src/mame/machine/esqpanel.cpp
@@ -200,14 +200,10 @@ void esqpanel_device::set_analog_value(offs_t offset, uint16_t value)
/* panel with 1x22 VFD display used in the EPS-16 and EPS-16 Plus */
-static MACHINE_CONFIG_START(esqpanel1x22)
+MACHINE_CONFIG_MEMBER(esqpanel1x22_device::device_add_mconfig)
MCFG_ESQ1X22_ADD("vfd")
MACHINE_CONFIG_END
-machine_config_constructor esqpanel1x22_device::device_mconfig_additions() const
-{
- return MACHINE_CONFIG_NAME( esqpanel1x22 );
-}
esqpanel1x22_device::esqpanel1x22_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
esqpanel_device(mconfig, ESQPANEL1X22, tag, owner, clock),
@@ -218,14 +214,10 @@ esqpanel1x22_device::esqpanel1x22_device(const machine_config &mconfig, const ch
/* panel with 2x40 VFD display used in the ESQ-1, VFX-SD, SD-1, and others */
-static MACHINE_CONFIG_START(esqpanel2x40)
+MACHINE_CONFIG_MEMBER(esqpanel2x40_device::device_add_mconfig)
MCFG_ESQ2X40_ADD("vfd")
MACHINE_CONFIG_END
-machine_config_constructor esqpanel2x40_device::device_mconfig_additions() const
-{
- return MACHINE_CONFIG_NAME( esqpanel2x40 );
-}
esqpanel2x40_device::esqpanel2x40_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
esqpanel_device(mconfig, ESQPANEL2X40, tag, owner, clock),
@@ -235,14 +227,10 @@ esqpanel2x40_device::esqpanel2x40_device(const machine_config &mconfig, const ch
}
// --- SQ1 - Parduz --------------------------------------------------------------------------------------------------------------------------
-static MACHINE_CONFIG_START(esqpanel2x16_sq1)
+MACHINE_CONFIG_MEMBER(esqpanel2x16_sq1_device::device_add_mconfig)
MCFG_ESQ2X16_SQ1_ADD("vfd")
MACHINE_CONFIG_END
-// --- SQ1 - Parduz --------------------------------------------------------------------------------------------------------------------------
-machine_config_constructor esqpanel2x16_sq1_device::device_mconfig_additions() const
-{
- return MACHINE_CONFIG_NAME( esqpanel2x16_sq1 );
-}
+
// --- SQ1 - Parduz --------------------------------------------------------------------------------------------------------------------------
esqpanel2x16_sq1_device::esqpanel2x16_sq1_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
esqpanel_device(mconfig, ESQPANEL2X16_SQ1, tag, owner, clock),