summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/audio/spchroms.h
blob: c10ce25ee04340f7f7981359129706df2205a783 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __SPCHROMS_H
#define __SPCHROMS_H

struct spchroms_interface 
{
	const char *memory_region;			/* memory region where the speech ROM is.  NULL means no speech ROM */
};

void spchroms_config(running_machine &machine, const spchroms_interface *intf);

int spchroms_read(device_t *device, int count);
void spchroms_load_address(device_t *device, int data);
void spchroms_read_and_branch(device_t *device);

#endif