summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dmndrby.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/dmndrby.cpp')
-rw-r--r--src/mame/drivers/dmndrby.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/dmndrby.cpp b/src/mame/drivers/dmndrby.cpp
index eaa9bc71ca8..eaae8fae413 100644
--- a/src/mame/drivers/dmndrby.cpp
+++ b/src/mame/drivers/dmndrby.cpp
@@ -77,6 +77,9 @@ public:
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch") { }
+ void dderby(machine_config &config);
+
+private:
required_shared_ptr<uint8_t> m_scroll_ram;
required_shared_ptr<uint8_t> m_sprite_ram;
required_shared_ptr<uint8_t> m_dderby_vidchars;
@@ -99,7 +102,6 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- void dderby(machine_config &config);
void dderby_sound_map(address_map &map);
void memmap(address_map &map);
};