summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tvgame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tvgame.cpp')
-rw-r--r--src/mame/drivers/tvgame.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/tvgame.cpp b/src/mame/drivers/tvgame.cpp
index 5e58f6e08d6..bbd63648f58 100644
--- a/src/mame/drivers/tvgame.cpp
+++ b/src/mame/drivers/tvgame.cpp
@@ -29,12 +29,14 @@ public:
, m_p_videoram(*this, "videoram")
{ }
+ void tvgame(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(speaker_w);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void tvgame(machine_config &config);
void io_map(address_map &map);
void mem_map(address_map &map);
-private:
+
required_device<cpu_device> m_maincpu;
required_device<speaker_sound_device> m_speaker;
required_shared_ptr<uint8_t> m_p_videoram;