summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/gaelco.h
blob: 792032e92b01d0b985a6cc69d898960539667322 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#ifndef __GALELCO_H__
#define __GALELCO_H__

typedef struct _gaelcosnd_interface gaelcosnd_interface;
struct _gaelcosnd_interface
{
	const char *gfxregion;	/* shared gfx region name */
	int banks[4];			/* start of each ROM bank */
};

extern UINT16 *gaelco_sndregs;

WRITE16_HANDLER( gaelcosnd_w );
READ16_HANDLER( gaelcosnd_r );

SND_GET_INFO( gaelco_gae1 );
SND_GET_INFO( gaelco_cg1v );

#endif /* __GALELCO_H__ */