summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/drtomy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/drtomy.cpp')
-rw-r--r--src/mame/drivers/drtomy.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/drtomy.cpp b/src/mame/drivers/drtomy.cpp
index 43513230752..7af1b14ef50 100644
--- a/src/mame/drivers/drtomy.cpp
+++ b/src/mame/drivers/drtomy.cpp
@@ -29,6 +29,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void drtomy(machine_config &config);
+
+private:
/* memory pointers */
required_shared_ptr<uint16_t> m_videoram_fg;
required_shared_ptr<uint16_t> m_videoram_bg;
@@ -54,7 +57,6 @@ public:
required_device<okim6295_device> m_oki;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void drtomy(machine_config &config);
void drtomy_map(address_map &map);
};