summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/malzak.h
blob: baf65a2d6ed9781e6feb95f2a563b4267626ef28 (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
/*************************************************************************

    Malzak

*************************************************************************/


typedef struct _malzak_state malzak_state;
struct _malzak_state
{
	/* misc */
//	int playfield_x[256];
//	int playfield_y[256];
	int playfield_code[256];
	int malzak_x;
	int malzak_y;
	int collision_counter;

	/* devices */
	const device_config *s2636_0;
	const device_config *s2636_1;
	const device_config *saa5050;
};


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

WRITE8_HANDLER( malzak_playfield_w );

VIDEO_UPDATE( malzak );