blob: 0fc39a17099c3c234ba5a2e07af214e615787a6b (
plain)
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
|
#ifndef __Y8950ADPCM_HH__
#define __Y8950ADPCM_HH__
#include "blargg_common.h"
#include "blargg_source.h"
#include "msxtypes.h"
typedef unsigned short word;
typedef unsigned __int64 uint64;
struct Y8950;
struct Y8950Adpcm
{
struct Y8950* y8950;
int sampleRate;
int clockRate;
int ramSize;
int startAddr;
int stopAddr;
int playAddr;
int addrMask;
int memPntr;
bool romBank;
byte* ramBank;
bool playing;
int volume;
word delta;
unsigned int nowStep, step;
int out, output;
int diff;
int nextLeveling;
int sampleStep;
int volumeWStep;
byte reg7;
byte reg15;
};
void ADPCM_init(struct Y8950Adpcm* this_, struct Y8950* y8950, byte* ramBank, int sampleRam);
void ADPCM_reset(struct Y8950Adpcm* this_);
void ADPCM_setSampleRate(struct Y8950Adpcm* this_, int sr, int clk);
bool ADPCM_muted(struct Y8950Adpcm* this_);
void ADPCM_writeReg(struct Y8950Adpcm* this_, byte rg, byte data);
byte ADPCM_readReg(struct Y8950Adpcm* this_, byte rg);
int ADPCM_calcSample(struct Y8950Adpcm* this_);
#endif
|