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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
// license:BSD-3-Clause
// copyright-holders:Dirk Best
/***************************************************************************
PMI DAC-76 COMDAC
Companding D/A Converter
***************************************************************************/
#include "emu.h"
#include "dac76.h"
//**************************************************************************
// CONSTEXPR DEFINITIONS
//**************************************************************************
constexpr int dac76_device::m_level[];
//**************************************************************************
// DEVICE DEFINITIONS
//**************************************************************************
DEFINE_DEVICE_TYPE(DAC76, dac76_device, "dac76", "PMI DAC-76 COMDAC")
//**************************************************************************
// LIVE DEVICE
//**************************************************************************
//-------------------------------------------------
// dac76_device - constructor
//-------------------------------------------------
dac76_device::dac76_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, DAC76, tag, owner, clock),
device_sound_interface(mconfig, *this),
m_stream(nullptr),
m_chord(0),
m_step(0),
m_sb(false)
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void dac76_device::device_start()
{
// create sound stream
m_stream = stream_alloc(0, 1, machine().sample_rate() * 8);
// register for save states
save_item(NAME(m_chord));
save_item(NAME(m_step));
save_item(NAME(m_sb));
}
//-------------------------------------------------
// device_reset - device-specific reset
//-------------------------------------------------
void dac76_device::device_reset()
{
m_chord = 0;
m_step = 0;
m_sb = false;
}
//-------------------------------------------------
// sound_stream_update - handle update requests for
// our sound stream
//-------------------------------------------------
void dac76_device::sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs)
{
// get current output level
int step_size = (2 << m_chord);
stream_sample_t vout = m_level[m_chord] + m_step * step_size;
// apply sign bit
vout *= (m_sb ? +1 : -1);
// range is 0-8031, normalize to 0-1 range
outputs[0].fill(stream_buffer::sample_t(vout) * (1.0 / 8031.0));
}
|