summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/harddriv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/harddriv.cpp')
-rw-r--r--src/mame/drivers/harddriv.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/mame/drivers/harddriv.cpp b/src/mame/drivers/harddriv.cpp
index 9299beec0ce..b87a63fcca1 100644
--- a/src/mame/drivers/harddriv.cpp
+++ b/src/mame/drivers/harddriv.cpp
@@ -514,13 +514,6 @@ public:
, m_rightpcb(*this, "rightpcb")
{ }
- TIMER_DEVICE_CALLBACK_MEMBER(hack_timer);
- DECLARE_WRITE_LINE_MEMBER(tx_a);
-
- required_device<harddriv_state> m_mainpcb;
- optional_device<harddriv_state> m_leftpcb;
- optional_device<harddriv_state> m_rightpcb;
-
void steeltal1_machine(machine_config &config);
void harddriv_machine(machine_config &config);
void hdrivairp_machine(machine_config &config);
@@ -535,6 +528,14 @@ public:
void steeltalp_machine(machine_config &config);
void racedrivc_machine(machine_config &config);
void stunrun_machine(machine_config &config);
+
+private:
+ TIMER_DEVICE_CALLBACK_MEMBER(hack_timer);
+ DECLARE_WRITE_LINE_MEMBER(tx_a);
+
+ required_device<harddriv_state> m_mainpcb;
+ optional_device<harddriv_state> m_leftpcb;
+ optional_device<harddriv_state> m_rightpcb;
};