summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/shootout.h
blob: d7f154cbd1f278377ee5068400ee52123aab1238 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class shootout_state : public driver_device
{
public:
	shootout_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	tilemap_t *m_background;
	tilemap_t *m_foreground;
	UINT8 *m_spriteram;
	UINT8 *m_videoram;
	UINT8 *m_textram;
	int m_bFlicker;
};


/*----------- defined in video/shootout.c -----------*/

WRITE8_HANDLER( shootout_videoram_w );
WRITE8_HANDLER( shootout_textram_w );

PALETTE_INIT( shootout );
VIDEO_START( shootout );
SCREEN_UPDATE( shootout );
SCREEN_UPDATE( shootouj );