summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/big10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/big10.cpp')
-rw-r--r--src/mame/drivers/big10.cpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/mame/drivers/big10.cpp b/src/mame/drivers/big10.cpp
index 63c30c81f59..fb39602ca3c 100644
--- a/src/mame/drivers/big10.cpp
+++ b/src/mame/drivers/big10.cpp
@@ -75,16 +75,21 @@ public:
, m_in(*this, "IN%u", 1)
{ }
- required_device<v9938_device> m_v9938;
- uint8_t m_mux_data;
+ void big10(machine_config &config);
+
+protected:
+ void main_io(address_map &map);
+ void main_map(address_map &map);
+
DECLARE_READ8_MEMBER(mux_r);
DECLARE_WRITE8_MEMBER(mux_w);
+
+private:
+ required_device<v9938_device> m_v9938;
+ uint8_t m_mux_data;
required_device<cpu_device> m_maincpu;
required_device<ticket_dispenser_device> m_hopper;
required_ioport_array<6> m_in;
- void big10(machine_config &config);
- void main_io(address_map &map);
- void main_map(address_map &map);
};