summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/hyhoo.h
blob: 8830da5d825cd1060686b37f5c8c6b26a8ece906 (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
class hyhoo_state : public driver_device
{
public:
	hyhoo_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) ,
		m_clut(*this, "clut"){ }

	required_shared_ptr<UINT8> m_clut;
	int m_blitter_destx;
	int m_blitter_desty;
	int m_blitter_sizex;
	int m_blitter_sizey;
	int m_blitter_src_addr;
	int m_blitter_direction_x;
	int m_blitter_direction_y;
	int m_gfxrom;
	int m_dispflag;
	int m_highcolorflag;
	int m_flipscreen;
	bitmap_rgb32 m_tmpbitmap;
	DECLARE_WRITE8_MEMBER(hyhoo_blitter_w);
	DECLARE_WRITE8_MEMBER(hyhoo_romsel_w);
	DECLARE_DRIVER_INIT(hyhoo2);
	DECLARE_DRIVER_INIT(hyhoo);
};


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

SCREEN_UPDATE_RGB32( hyhoo );
VIDEO_START( hyhoo );