summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/notechan.cpp
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-07-01 02:34:14 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-06-30 21:34:14 -0400
commit7bfe316fd41e7c2bb9ef1bb160f152ae1635e9f9 (patch)
tree4422f6f2e8735c92c81f1027adfadbbe2ba25793 /src/mame/drivers/notechan.cpp
parent296de771c3a9f7712f72e600dcb381a2c94190db (diff)
stronger private: use (N, O, P, Q, R) (#3717)
* private N,O (nw) * P + Q (nw) * R (nt)
Diffstat (limited to 'src/mame/drivers/notechan.cpp')
-rw-r--r--src/mame/drivers/notechan.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/notechan.cpp b/src/mame/drivers/notechan.cpp
index 11a3515d95b..cc6f1cd901d 100644
--- a/src/mame/drivers/notechan.cpp
+++ b/src/mame/drivers/notechan.cpp
@@ -309,18 +309,18 @@ public:
m_lamps(*this, "lamp%u", 0U)
{ }
+ void notechan(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(out_f8_w);
DECLARE_WRITE8_MEMBER(out_f9_w);
DECLARE_WRITE8_MEMBER(out_fa_w);
DECLARE_WRITE8_MEMBER(out_ff_w);
- void notechan(machine_config &config);
void notechan_map(address_map &map);
void notechan_port_map(address_map &map);
-protected:
virtual void machine_start() override { m_lamps.resolve(); }
-private:
required_device<cpu_device> m_maincpu;
required_device<okim6295_device> m_oki;
output_finder<32> m_lamps;