summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/suprridr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/suprridr.h')
-rw-r--r--src/mame/includes/suprridr.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mame/includes/suprridr.h b/src/mame/includes/suprridr.h
index b304f0a5311..50ff0f28ac2 100644
--- a/src/mame/includes/suprridr.h
+++ b/src/mame/includes/suprridr.h
@@ -21,8 +21,14 @@ public:
m_palette(*this, "palette"),
m_fgram(*this, "fgram"),
m_bgram(*this, "bgram"),
- m_spriteram(*this, "spriteram") { }
+ m_spriteram(*this, "spriteram")
+ { }
+ void suprridr(machine_config &config);
+
+ DECLARE_CUSTOM_INPUT_MEMBER(control_r);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<generic_latch_8_device> m_soundlatch;
@@ -50,8 +56,6 @@ public:
DECLARE_WRITE8_MEMBER(bgram_w);
DECLARE_WRITE8_MEMBER(fgram_w);
- DECLARE_CUSTOM_INPUT_MEMBER(control_r);
-
TILE_GET_INFO_MEMBER(get_tile_info);
TILE_GET_INFO_MEMBER(get_tile_info2);
@@ -64,7 +68,7 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
int is_screen_flipped();
- void suprridr(machine_config &config);
+
void main_map(address_map &map);
void main_portmap(address_map &map);
void sound_map(address_map &map);