36 lines
690 B
C
36 lines
690 B
C
|
// YM3812 FM sound chip emulator interface
|
||
|
|
||
|
// Game_Music_Emu $vers
|
||
|
#ifndef YM3812_EMU_H
|
||
|
#define YM3812_EMU_H
|
||
|
|
||
|
namespace DBOPL {
|
||
|
struct Chip;
|
||
|
}
|
||
|
|
||
|
class Ym3812_Emu {
|
||
|
DBOPL::Chip * opl;
|
||
|
unsigned sample_rate;
|
||
|
unsigned clock_rate;
|
||
|
public:
|
||
|
Ym3812_Emu();
|
||
|
~Ym3812_Emu();
|
||
|
|
||
|
// Sets output sample rate and chip clock rates, in Hz. Returns non-zero
|
||
|
// if error.
|
||
|
int set_rate( int sample_rate, int clock_rate );
|
||
|
|
||
|
// Resets to power-up state
|
||
|
void reset();
|
||
|
|
||
|
// Writes data to addr
|
||
|
void write( int addr, int data );
|
||
|
|
||
|
// Runs and writes pair_count*2 samples to output
|
||
|
typedef short sample_t;
|
||
|
enum { out_chan_count = 2 }; // stereo
|
||
|
void run( int pair_count, sample_t* out );
|
||
|
};
|
||
|
|
||
|
#endif
|