blob: c5be63bbddd877da862af80280e9fca462c45daa (
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
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
|
// license:BSD-3-Clause
// copyright-holders:QUFB
/**********************************************************************
PCM audio functions of the AP2010 LSI
According to the Advanced Pico Beena's 2005-04-05 press release, it supports
CELP with sample rates 8kHz and 16kHz. It is used as output for OGG files,
which are decoded by the BIOS to signed 16-bit big endian PCM.
**********************************************************************/
#ifndef MAME_SOUND_AP2010PCM_H
#define MAME_SOUND_AP2010PCM_H
#pragma once
class ap2010pcm_device : public device_t, public device_sound_interface
{
public:
static constexpr feature_type imperfect_features() { return feature::SOUND; }
ap2010pcm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
uint32_t reg_r(offs_t offset);
void reg_w(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
protected:
// device_t implementation
virtual void device_start() override ATTR_COLD;
// device_sound_interface implementation
virtual void sound_stream_update(sound_stream &stream) override;
private:
// FIXME: Games check this against 0x1ff, but samples are lost with that limit
static inline constexpr uint16_t FIFO_MAX_SIZE = 0x800;
uint16_t fifo_pop();
uint16_t fifo_fast_pop();
void fifo_push(uint16_t sample);
void fifo_fast_push(uint16_t sample);
std::unique_ptr<uint32_t[]> m_regs;
float m_volume;
uint32_t m_sample_rate;
uint16_t m_fifo_data[FIFO_MAX_SIZE];
uint16_t m_fifo_size;
uint16_t m_fifo_head;
uint16_t m_fifo_tail;
uint16_t m_fifo_fast_data[FIFO_MAX_SIZE];
uint16_t m_fifo_fast_size;
uint16_t m_fifo_fast_head;
uint16_t m_fifo_fast_tail;
sound_stream *m_stream;
};
DECLARE_DEVICE_TYPE(AP2010PCM, ap2010pcm_device)
#endif // MAME_SOUND_AP2010PCM_H
|