summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/sms_ctrl/smsctrl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/sms_ctrl/smsctrl.cpp')
-rw-r--r--src/devices/bus/sms_ctrl/smsctrl.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/devices/bus/sms_ctrl/smsctrl.cpp b/src/devices/bus/sms_ctrl/smsctrl.cpp
index 30b706ad390..acb14593b47 100644
--- a/src/devices/bus/sms_ctrl/smsctrl.cpp
+++ b/src/devices/bus/sms_ctrl/smsctrl.cpp
@@ -66,8 +66,7 @@ sms_control_port_device::sms_control_port_device(const machine_config &mconfig,
device_t(mconfig, SMS_CONTROL_PORT, tag, owner, clock),
device_slot_interface(mconfig, *this),
m_device(nullptr),
- m_th_pin_handler(*this),
- m_pixel_handler(*this)
+ m_th_pin_handler(*this)
{
}
@@ -90,7 +89,6 @@ void sms_control_port_device::device_start()
m_device = dynamic_cast<device_sms_control_port_interface *>(get_card_device());
m_th_pin_handler.resolve_safe();
- m_pixel_handler.resolve_safe(0);
}
@@ -114,11 +112,6 @@ void sms_control_port_device::th_pin_w(int state)
m_th_pin_handler(state);
}
-uint32_t sms_control_port_device::pixel_r()
-{
- return m_pixel_handler();
-}
-
//-------------------------------------------------
// SLOT_INTERFACE( sms_control_port_devices )