summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/shaolins.h
blob: fda835c040d4066f154e16eec5e1cdf2ad977935 (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
25
26
27
28
29
30
31
32
33
class shaolins_state : public driver_device
{
public:
	shaolins_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag),
		m_maincpu(*this,"maincpu"),
		m_spriteram(*this, "spriteram"),
		m_colorram(*this, "colorram"),
		m_videoram(*this, "videoram"){ }

	required_device<cpu_device> m_maincpu;
	required_shared_ptr<UINT8> m_spriteram;
	required_shared_ptr<UINT8> m_colorram;
	required_shared_ptr<UINT8> m_videoram;
	int m_palettebank;

	tilemap_t *m_bg_tilemap;
	UINT8 m_nmi_enable;

	DECLARE_WRITE8_MEMBER(shaolins_videoram_w);
	DECLARE_WRITE8_MEMBER(shaolins_colorram_w);
	DECLARE_WRITE8_MEMBER(shaolins_palettebank_w);
	DECLARE_WRITE8_MEMBER(shaolins_scroll_w);
	DECLARE_WRITE8_MEMBER(shaolins_nmi_w);
};


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


PALETTE_INIT( shaolins );
VIDEO_START( shaolins );
SCREEN_UPDATE_IND16( shaolins );