summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tempest.cpp
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-07-01 20:19:58 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-07-01 15:19:58 -0400
commite3aae75004d3d6551e9282b1330d53ba1f5d05e2 (patch)
tree17fa92253713e6f94e86e07cd52806395fe4ce1e /src/mame/drivers/tempest.cpp
parent6e15d298234a0d8140061b7a4be8c617f12c9690 (diff)
private: use (S, T, U, V) (nw) (#3720)
* private: use (S) (nw) * T part 1 (nw) * T part 2 (nw) * U,V (nw)
Diffstat (limited to 'src/mame/drivers/tempest.cpp')
-rw-r--r--src/mame/drivers/tempest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tempest.cpp b/src/mame/drivers/tempest.cpp
index 3e21730f5a7..e9e0eb9c46c 100644
--- a/src/mame/drivers/tempest.cpp
+++ b/src/mame/drivers/tempest.cpp
@@ -315,12 +315,13 @@ public:
m_leds(*this, "led%u", 0U)
{ }
+ void tempest(machine_config &config);
+
DECLARE_CUSTOM_INPUT_MEMBER(tempest_knob_r);
DECLARE_CUSTOM_INPUT_MEMBER(tempest_buttons_r);
DECLARE_CUSTOM_INPUT_MEMBER(clock_r);
- void tempest(machine_config &config);
-protected:
+private:
DECLARE_WRITE8_MEMBER(wdclr_w);
DECLARE_WRITE8_MEMBER(tempest_led_w);
DECLARE_WRITE8_MEMBER(tempest_coin_w);
@@ -336,7 +337,6 @@ protected:
virtual void machine_start() override;
void main_map(address_map &map);
-private:
required_device<cpu_device> m_maincpu;
required_device<mathbox_device> m_mathbox;
required_device<watchdog_timer_device> m_watchdog;