snes9x/apu/bapu/dsp/dsp.cpp

23 lines
229 B
C++
Raw Normal View History

2011-06-12 08:25:22 +02:00
#include <snes/snes.hpp>
#define DSP_CPP
namespace SNES {
DSP dsp;
#include "SPC_DSP.cpp"
void DSP::power() {
spc_dsp.init(smp.apuram);
spc_dsp.reset();
}
void DSP::reset() {
spc_dsp.soft_reset();
}
DSP::DSP() {
}
}