summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mc8020.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mc8020.cpp')
-rw-r--r--src/mame/drivers/mc8020.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/mc8020.cpp b/src/mame/drivers/mc8020.cpp
index 5a012a80438..302c0743a37 100644
--- a/src/mame/drivers/mc8020.cpp
+++ b/src/mame/drivers/mc8020.cpp
@@ -34,15 +34,17 @@ public:
, m_keyboard(*this, "X%u", 0)
{ }
+ void mc8020(machine_config &config);
+
+private:
DECLARE_READ8_MEMBER(port_b_r);
DECLARE_WRITE8_MEMBER(port_a_w);
DECLARE_WRITE8_MEMBER(port_b_w);
uint32_t screen_update_mc8020(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void mc8020(machine_config &config);
void io_map(address_map &map);
void mem_map(address_map &map);
-private:
+
u8 m_row;
required_shared_ptr<u8> m_p_videoram;
required_device<cpu_device> m_maincpu;