blob: 623142f5dfc2e7462493a3e7aa69327da12ddd3c (
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
30
31
32
33
34
35
36
37
|
/*
* Voice Synthesis Memory
*
*/
#ifndef __SPCHROMS_H
#define __SPCHROMS_H
#include "emu.h"
class speechrom_device : public device_t
{
public:
// construction/destruction
speechrom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
/// TODO: implement bus behaviour
int read(int count);
void load_address(int data);
void read_and_branch();
// device-level overrides
virtual void device_start();
private:
UINT8 *m_speechrom_data; /* pointer to speech ROM data */
unsigned int m_speechROMlen; /* length of data pointed by speechrom_data, from 0 to 2^18 */
unsigned int m_speechROMaddr; /* 18 bit pointer in ROM */
int m_load_pointer; /* which 4-bit nibble will be affected by load address */
int m_ROM_bits_count; /* current bit position in ROM */
};
// device type definition
extern const device_type SPEECHROM;
#endif
|