summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pro80.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pro80.cpp')
-rw-r--r--src/mame/drivers/pro80.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/pro80.cpp b/src/mame/drivers/pro80.cpp
index 422eee0fccc..70cdd70bd92 100644
--- a/src/mame/drivers/pro80.cpp
+++ b/src/mame/drivers/pro80.cpp
@@ -41,15 +41,17 @@ public:
, m_digits(*this, "digit%u", 0U)
{ }
+ void pro80(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(digit_w);
DECLARE_WRITE8_MEMBER(segment_w);
DECLARE_READ8_MEMBER(kp_r);
TIMER_DEVICE_CALLBACK_MEMBER(timer_p);
- void pro80(machine_config &config);
void pro80_io(address_map &map);
void pro80_mem(address_map &map);
-private:
+
uint8_t m_digit_sel;
uint8_t m_cass_in;
uint16_t m_cass_data[4];