summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/meyc8080.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/meyc8080.cpp')
-rw-r--r--src/mame/drivers/meyc8080.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/meyc8080.cpp b/src/mame/drivers/meyc8080.cpp
index c7476c5b2b7..b16f6503863 100644
--- a/src/mame/drivers/meyc8080.cpp
+++ b/src/mame/drivers/meyc8080.cpp
@@ -81,6 +81,9 @@ public:
, m_lamps(*this, "lamp%u", 0U)
{ }
+ void meyc8080(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(lights_1_w);
DECLARE_WRITE8_MEMBER(lights_2_w);
DECLARE_WRITE8_MEMBER(counters_w);
@@ -89,10 +92,8 @@ public:
DECLARE_WRITE8_MEMBER(meyc8080_dac_3_w);
DECLARE_WRITE8_MEMBER(meyc8080_dac_4_w);
uint32_t screen_update_meyc8080(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- void meyc8080(machine_config &config);
void meyc8080_map(address_map &map);
-protected:
virtual void machine_start() override { m_lamps.resolve(); }
required_shared_ptr<uint8_t> m_videoram_0;