summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/4enraya.h
blob: 5bf1538c77e6b956eec41b25efdfc58c1ead76cf (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
/*************************************************************************

	4enraya

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

typedef struct __4enraya_state _4enraya_state;
struct __4enraya_state
{
	/* memory pointers */
	UINT8 *    videoram;

	/* video-related */
	tilemap    *bg_tilemap;

	/* sound-related */
	int        soundlatch;
	int        last_snd_ctrl;
};


/*----------- defined in video/4enraya.c -----------*/

WRITE8_HANDLER( fenraya_videoram_w );

VIDEO_START( 4enraya );
VIDEO_UPDATE( 4enraya );