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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*****************************************************************************
MB87078 6-bit,4-channel electronic volume controller emulator
*****************************************************************************/
#ifndef __MB87078_H__
#define __MB87078_H__
#include "devlegcy.h"
/***************************************************************************
TYPE DEFINITIONS
***************************************************************************/
typedef void (*mb87078_gain_changed_cb)(running_machine *machine, int channel, int percent /*, float decibels*/);
typedef struct _mb87078_interface mb87078_interface;
struct _mb87078_interface
{
mb87078_gain_changed_cb gain_changed_cb;
};
DECLARE_LEGACY_DEVICE(MB87078, mb87078);
/***************************************************************************
DEVICE CONFIGURATION MACROS
***************************************************************************/
#define MCFG_MB87078_ADD(_tag, _interface) \
MCFG_DEVICE_ADD(_tag, MB87078, 0) \
MCFG_DEVICE_CONFIG(_interface)
/***************************************************************************
DEVICE I/O FUNCTIONS
***************************************************************************/
void mb87078_data_w(device_t *device, int data, int dsel);
void mb87078_reset_comp_w(device_t *device, int level);
/* mb87078_gain_decibel_r will return 'channel' gain on the device.
Returned value represents channel gain expressed in decibels,
Range from 0 to -32.0 (or -256.0 for -infinity) */
float mb87078_gain_decibel_r(device_t *device, int channel);
/* mb87078_gain_percent_r will return 'channel' gain on the device.
Returned value represents channel gain expressed in percents of maximum volume.
Range from 100 to 0. (100 = 0dB; 50 = -6dB; 0 = -infinity)
This function is designed for use with MAME mixer_xxx() functions. */
int mb87078_gain_percent_r(device_t *device, int channel);
#endif /* __MB87078_H__ */
|