summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tryout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tryout.h')
-rw-r--r--src/mame/includes/tryout.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/includes/tryout.h b/src/mame/includes/tryout.h
index aa907435ee0..27174052d02 100644
--- a/src/mame/includes/tryout.h
+++ b/src/mame/includes/tryout.h
@@ -19,6 +19,11 @@ public:
m_spriteram2(*this, "spriteram2"),
m_gfx_control(*this, "gfx_control") { }
+ void tryout(machine_config &config);
+
+ DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -46,8 +51,6 @@ public:
DECLARE_WRITE8_MEMBER(vram_bankswitch_w);
DECLARE_WRITE8_MEMBER(flipscreen_w);
- DECLARE_INPUT_CHANGED_MEMBER(coin_inserted);
-
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILEMAP_MAPPER_MEMBER(get_fg_memory_offset);
@@ -59,7 +62,7 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap,const rectangle &cliprect);
- void tryout(machine_config &config);
+
void main_cpu(address_map &map);
void sound_cpu(address_map &map);
};