summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/quizo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/quizo.cpp')
-rw-r--r--src/mame/drivers/quizo.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/quizo.cpp b/src/mame/drivers/quizo.cpp
index 6ab56471666..b581f208c81 100644
--- a/src/mame/drivers/quizo.cpp
+++ b/src/mame/drivers/quizo.cpp
@@ -40,6 +40,11 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu") { }
+ void quizo(machine_config &config);
+
+ void init_quizo();
+
+private:
required_device<cpu_device> m_maincpu;
std::unique_ptr<uint8_t[]> m_videoram;
@@ -50,11 +55,9 @@ public:
DECLARE_WRITE8_MEMBER(port70_w);
DECLARE_WRITE8_MEMBER(port60_w);
- void init_quizo();
DECLARE_PALETTE_INIT(quizo);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void quizo(machine_config &config);
void memmap(address_map &map);
void portmap(address_map &map);
};