audio_core/lle: implement GetDspMemory and SetServiceToInterrupt

This commit is contained in:
Weiyi Wang 2018-12-06 08:10:00 -05:00
parent df8aaee965
commit 9ab4e3c686
2 changed files with 59 additions and 0 deletions

View file

@ -20,6 +20,10 @@ public:
std::size_t GetPipeReadableSize(DspPipe pipe_number) const override;
void PipeWrite(DspPipe pipe_number, const std::vector<u8>& buffer) override;
std::array<u8, Memory::DSP_RAM_SIZE>& GetDspMemory() override;
void SetServiceToInterrupt(std::weak_ptr<Service::DSP::DSP_DSP> dsp) override;
private:
struct Impl;
friend struct Impl;