Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
SachinVin committed Dec 30, 2023
1 parent 12643a1 commit aedbc1a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ void* ServiceFixture::linearAlloc(size_t size) {
}

ServiceFixture::Result ServiceFixture::dspInit() {
// dsp = std::make_unique<AudioCore::DspLle>(memory, core_timing, true);
dsp = std::make_unique<AudioCore::DspHle>(memory, core_timing);
dsp = std::make_unique<AudioCore::DspLle>(system, memory, core_timing, true);
// dsp = std::make_unique<AudioCore::DspHle>(system, memory, core_timing);
// dsp = std::make_unique<AudioCore::DspHleLle>(system, memory, core_timing);
dsp->SetInterruptHandler([this](Service::DSP::InterruptType type, AudioCore::DspPipe pipe) {
interrupts_fired[static_cast<u32>(type)][static_cast<u32>(pipe)] = 1;
});
Expand Down

0 comments on commit aedbc1a

Please sign in to comment.