blob: ce97dc8474bf21512f1a207d09626f98376d78d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __SPCHROMS_H
#define __SPCHROMS_H
typedef struct spchroms_interface
{
const char *memory_region; /* memory region where the speech ROM is. NULL means no speech ROM */
} spchroms_interface;
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
|