summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mgames.cpp
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-06-30 05:21:17 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-06-30 00:21:17 -0400
commit2b0eec6adfa7a4904646056ce4290835a68c5e5e (patch)
treed6a2357c20b6ff0ec2b14f858a6f70cfcefd997c /src/mame/drivers/mgames.cpp
parentb77a01d309e86c526a15a6c8f186436c67736561 (diff)
more private: use (K,L,M) (#3714)
Diffstat (limited to 'src/mame/drivers/mgames.cpp')
-rw-r--r--src/mame/drivers/mgames.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/mgames.cpp b/src/mame/drivers/mgames.cpp
index 94218f32c5a..729b1eee708 100644
--- a/src/mame/drivers/mgames.cpp
+++ b/src/mame/drivers/mgames.cpp
@@ -235,6 +235,9 @@ public:
m_lamps(*this, "lamp%u", 1U)
{ }
+ void mgames(machine_config &config);
+
+private:
DECLARE_READ8_MEMBER(mixport_r);
DECLARE_WRITE8_MEMBER(outport0_w);
DECLARE_WRITE8_MEMBER(outport1_w);
@@ -246,10 +249,8 @@ public:
DECLARE_WRITE8_MEMBER(outport7_w);
DECLARE_PALETTE_INIT(mgames);
uint32_t screen_update_mgames(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void mgames(machine_config &config);
void main_map(address_map &map);
-protected:
virtual void machine_start() override { m_lamps.resolve(); }
virtual void video_start() override;