summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/srumbler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/srumbler.h')
-rw-r--r--src/mame/includes/srumbler.h30
1 files changed, 18 insertions, 12 deletions
diff --git a/src/mame/includes/srumbler.h b/src/mame/includes/srumbler.h
index 383717fca7b..06dab337b2a 100644
--- a/src/mame/includes/srumbler.h
+++ b/src/mame/includes/srumbler.h
@@ -7,31 +7,37 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this,"maincpu"),
m_spriteram(*this,"spriteram"),
- m_backgroundram(*this, "backgroundram"),
- m_foregroundram(*this, "foregroundram"),
m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette"){ }
+ m_palette(*this, "palette"),
+ m_backgroundram(*this, "backgroundram"),
+ m_foregroundram(*this, "foregroundram") { }
required_device<cpu_device> m_maincpu;
required_device<buffered_spriteram8_device> m_spriteram;
- required_shared_ptr<UINT8> m_backgroundram;
- required_shared_ptr<UINT8> m_foregroundram;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
+
+ required_shared_ptr<UINT8> m_backgroundram;
+ required_shared_ptr<UINT8> m_foregroundram;
+
tilemap_t *m_bg_tilemap;
tilemap_t *m_fg_tilemap;
int m_scroll[4];
- DECLARE_WRITE8_MEMBER(srumbler_bankswitch_w);
- DECLARE_WRITE8_MEMBER(srumbler_foreground_w);
- DECLARE_WRITE8_MEMBER(srumbler_background_w);
- DECLARE_WRITE8_MEMBER(srumbler_4009_w);
- DECLARE_WRITE8_MEMBER(srumbler_scroll_w);
+ DECLARE_WRITE8_MEMBER(bankswitch_w);
+ DECLARE_WRITE8_MEMBER(foreground_w);
+ DECLARE_WRITE8_MEMBER(background_w);
+ DECLARE_WRITE8_MEMBER(_4009_w);
+ DECLARE_WRITE8_MEMBER(scroll_w);
+
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
+
virtual void machine_start();
virtual void video_start();
- UINT32 screen_update_srumbler(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- TIMER_DEVICE_CALLBACK_MEMBER(srumbler_interrupt);
+
+ UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
+
+ TIMER_DEVICE_CALLBACK_MEMBER(interrupt);
};