summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/zac_2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/zac_2.cpp')
-rw-r--r--src/mame/drivers/zac_2.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/zac_2.cpp b/src/mame/drivers/zac_2.cpp
index 888a45b72fb..eb3a90a1207 100644
--- a/src/mame/drivers/zac_2.cpp
+++ b/src/mame/drivers/zac_2.cpp
@@ -25,6 +25,9 @@ public:
, m_digits(*this, "digit%u", 0U)
{ }
+ void zac_2(machine_config &config);
+
+private:
DECLARE_READ8_MEMBER(ctrl_r);
DECLARE_WRITE8_MEMBER(ctrl_w);
DECLARE_READ8_MEMBER(data_r);
@@ -33,11 +36,10 @@ public:
DECLARE_WRITE_LINE_MEMBER(serial_w);
TIMER_DEVICE_CALLBACK_MEMBER(zac_2_inttimer);
TIMER_DEVICE_CALLBACK_MEMBER(zac_2_outtimer);
- void zac_2(machine_config &config);
void zac_2_data(address_map &map);
void zac_2_io(address_map &map);
void zac_2_map(address_map &map);
-private:
+
uint8_t m_input_line;
uint8_t m_t_c;
uint8_t m_out_offs;