summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/funkybee.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/funkybee.h')
-rw-r--r--src/mame/includes/funkybee.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/funkybee.h b/src/mame/includes/funkybee.h
index 45019bd7f57..fcd71b828cd 100644
--- a/src/mame/includes/funkybee.h
+++ b/src/mame/includes/funkybee.h
@@ -17,6 +17,9 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void funkybee(machine_config &config);
+
+private:
/* memory pointers */
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_colorram;
@@ -44,7 +47,6 @@ public:
required_device<watchdog_timer_device> m_watchdog;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void funkybee(machine_config &config);
void funkybee_map(address_map &map);
void io_map(address_map &map);
};