summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ticket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ticket.cpp')
-rw-r--r--src/devices/machine/ticket.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/devices/machine/ticket.cpp b/src/devices/machine/ticket.cpp
index 2180d4fd17e..4df285d7650 100644
--- a/src/devices/machine/ticket.cpp
+++ b/src/devices/machine/ticket.cpp
@@ -64,36 +64,6 @@ ticket_dispenser_device::~ticket_dispenser_device()
//**************************************************************************
-// CONFIGURATION HELPERS
-//**************************************************************************
-
-//-------------------------------------------------
-// static_set_period - configure the clock period
-// for dispensing
-//-------------------------------------------------
-
-void ticket_dispenser_device::static_set_period(device_t &device, const attotime &period)
-{
- downcast<ticket_dispenser_device &>(device).m_period = period;
-}
-
-
-//-------------------------------------------------
-// static_set_senses - configure the senses of
-// the motor and status bits
-//-------------------------------------------------
-
-void ticket_dispenser_device::static_set_senses(device_t &device, uint8_t motor_sense, uint8_t status_sense, bool hopper_type)
-{
- ticket_dispenser_device &ticket = downcast<ticket_dispenser_device &>(device);
- ticket.m_motor_sense = motor_sense;
- ticket.m_status_sense = status_sense;
- ticket.m_hopper_type = hopper_type;
-}
-
-
-
-//**************************************************************************
// READ/WRITE HANDLERS
//**************************************************************************