summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/wiping.h
blob: f79ed9ce69751735510f348bc527a9328806af73 (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 wiping_state : public driver_device
{
public:
	wiping_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	UINT8 *m_videoram;
	UINT8 *m_colorram;
	int m_flipscreen;
	UINT8 *m_soundregs;
	UINT8 *m_spriteram;
	size_t m_spriteram_size;

	UINT8 m_main_irq_mask;
	UINT8 m_sound_irq_mask;
};


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

WRITE8_HANDLER( wiping_flipscreen_w );
PALETTE_INIT( wiping );
SCREEN_UPDATE( wiping );