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

    Hot Pinball
    Gals Pinball

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

typedef struct _galspnbl_state galspnbl_state;
struct _galspnbl_state
{
	/* memory pointers */
	UINT16 *    videoram;
	UINT16 *    bgvideoram;
	UINT16 *    colorram;
	UINT16 *    scroll;
	UINT16 *    spriteram;
//  UINT16 *    paletteram; // currently this uses generic palette handling
	size_t      spriteram_size;

	/* devices */
	const device_config *audiocpu;
};


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


PALETTE_INIT( galspnbl );
VIDEO_UPDATE( galspnbl );