summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/intv_ctrl
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-08-25 03:05:41 +1000
committer Vas Crabb <vas@vastheman.com>2016-08-25 03:05:55 +1000
commit5d40f2c9d8c20c8726251587c0f5e9636ff74c6f (patch)
tree5ecb34c3612c3f735a38a3cdd898e8fdfc6171cb /src/devices/bus/intv_ctrl
parent232a96c60b1141e6d34fe2514ba9538bba0f0589 (diff)
remove legacy forms of (required|optional)_(shared_ptr|ioport)_array
Diffstat (limited to 'src/devices/bus/intv_ctrl')
-rw-r--r--src/devices/bus/intv_ctrl/ecs_ctrl.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/intv_ctrl/ecs_ctrl.cpp b/src/devices/bus/intv_ctrl/ecs_ctrl.cpp
index 6320a35868a..dddd93093b8 100644
--- a/src/devices/bus/intv_ctrl/ecs_ctrl.cpp
+++ b/src/devices/bus/intv_ctrl/ecs_ctrl.cpp
@@ -279,10 +279,10 @@ ioport_constructor intvecs_keybd_device::device_input_ports() const
return INPUT_PORTS_NAME( intvecs_keybd );
}
-intvecs_keybd_device::intvecs_keybd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, ECS_KEYBD, "Mattel Intellivision ECS Keyboard", tag, owner, clock, "intvecs_keybd", __FILE__),
- device_intvecs_control_port_interface(mconfig, *this),
- m_keybd(*this, "ROW")
+intvecs_keybd_device::intvecs_keybd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+ : device_t(mconfig, ECS_KEYBD, "Mattel Intellivision ECS Keyboard", tag, owner, clock, "intvecs_keybd", __FILE__)
+ , device_intvecs_control_port_interface(mconfig, *this)
+ , m_keybd(*this, "ROW.%u", 0)
{
}
@@ -415,7 +415,7 @@ ioport_constructor intvecs_synth_device::device_input_ports() const
intvecs_synth_device::intvecs_synth_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
device_t(mconfig, ECS_SYNTH, "Mattel Intellivision ECS Synthetizer", tag, owner, clock, "intvecs_synth", __FILE__),
device_intvecs_control_port_interface(mconfig, *this),
- m_synth(*this, "SYNTH")
+ m_synth(*this, "SYNTH.%u", 0)
{
}