summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ttchamp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ttchamp.cpp')
-rw-r--r--src/mame/drivers/ttchamp.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/ttchamp.cpp b/src/mame/drivers/ttchamp.cpp
index 8648ef53f63..b4bbad792c5 100644
--- a/src/mame/drivers/ttchamp.cpp
+++ b/src/mame/drivers/ttchamp.cpp
@@ -83,6 +83,9 @@ public:
m_maincpu(*this, "maincpu"),
m_palette(*this, "palette") { }
+ void ttchamp(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<palette_device> m_palette;
@@ -142,7 +145,6 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(irq);
- void ttchamp(machine_config &config);
void ttchamp_io(address_map &map);
void ttchamp_map(address_map &map);
};