summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/lola8a.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/lola8a.cpp')
-rw-r--r--src/mame/drivers/lola8a.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/lola8a.cpp b/src/mame/drivers/lola8a.cpp
index 6f6aab6ae1c..ec804f1da91 100644
--- a/src/mame/drivers/lola8a.cpp
+++ b/src/mame/drivers/lola8a.cpp
@@ -49,6 +49,9 @@ public:
, m_p_videoram(*this, "videoram")
{ }
+ void lola8a(machine_config &config);
+
+private:
DECLARE_READ8_MEMBER(lola8a_port_a_r);
DECLARE_WRITE8_MEMBER(lola8a_port_b_w);
DECLARE_WRITE_LINE_MEMBER(crtc_vsync);
@@ -57,10 +60,9 @@ public:
DECLARE_READ8_MEMBER(keyboard_r);
MC6845_UPDATE_ROW(crtc_update_row);
- void lola8a(machine_config &config);
void lola8a_io(address_map &map);
void lola8a_mem(address_map &map);
-private:
+
uint8_t m_portb;
virtual void machine_reset() override { m_maincpu->set_pc(0x8000); }
required_device<cpu_device> m_maincpu;