summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ds2404.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ds2404.cpp')
-rw-r--r--src/devices/machine/ds2404.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/devices/machine/ds2404.cpp b/src/devices/machine/ds2404.cpp
index b5f41d36f25..4a28b7f7d38 100644
--- a/src/devices/machine/ds2404.cpp
+++ b/src/devices/machine/ds2404.cpp
@@ -39,42 +39,6 @@ ds2404_device::ds2404_device(const machine_config &mconfig, const char *tag, dev
//-------------------------------------------------
-// static_set_ref_year - configuration helper
-// to set the reference year
-//-------------------------------------------------
-
-void ds2404_device::static_set_ref_year(device_t &device, uint32_t year)
-{
- ds2404_device &ds2404 = downcast<ds2404_device &>(device);
- ds2404.m_ref_year = year;
-}
-
-
-//-------------------------------------------------
-// static_set_ref_month - configuration helper
-// to set the reference month
-//-------------------------------------------------
-
-void ds2404_device::static_set_ref_month(device_t &device, uint8_t month)
-{
- ds2404_device &ds2404 = downcast<ds2404_device &>(device);
- ds2404.m_ref_month = month;
-}
-
-
-//-------------------------------------------------
-// static_set_ref_day - configuration helper
-// to set the reference day
-//-------------------------------------------------
-
-void ds2404_device::static_set_ref_day(device_t &device, uint8_t day)
-{
- ds2404_device &ds2404 = downcast<ds2404_device &>(device);
- ds2404.m_ref_day = day;
-}
-
-
-//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------