summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tgtpanic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tgtpanic.cpp')
-rw-r--r--src/mame/drivers/tgtpanic.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/tgtpanic.cpp b/src/mame/drivers/tgtpanic.cpp
index 20c7d79bf4e..33d194bea99 100644
--- a/src/mame/drivers/tgtpanic.cpp
+++ b/src/mame/drivers/tgtpanic.cpp
@@ -25,6 +25,9 @@ public:
m_screen(*this, "screen"),
m_ram(*this, "ram") { }
+ void tgtpanic(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<screen_device> m_screen;
@@ -37,7 +40,6 @@ public:
virtual void machine_start() override;
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- void tgtpanic(machine_config &config);
void io_map(address_map &map);
void prg_map(address_map &map);
};