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

	UINT16 *m_bgvideoram;
	UINT16 *m_fgvideoram;
	UINT16 *m_spvideoram;

	bitmap_t *m_tile_bitmap_bg;
	bitmap_t *m_tile_bitmap_fg;
};


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

VIDEO_START( spbactn );
SCREEN_UPDATE( spbactn );