suyu/src/core/hle/service/dsp_dsp.cpp

18 lines
369 B
C++
Raw Normal View History

2014-10-30 02:38:33 +01:00
// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
2014-10-30 02:38:33 +01:00
// Refer to the license.txt file included.
#include "audio_core/hle/pipe.h"
#include "core/hle/service/dsp_dsp.h"
2014-10-30 02:38:33 +01:00
using DspPipe = DSP::HLE::DspPipe;
namespace Service {
2014-10-30 02:38:33 +01:00
namespace DSP_DSP {
void SignalPipeInterrupt(DspPipe pipe) {
2015-03-08 02:54:16 +01:00
}
} // namespace DSP_DSP
} // namespace Service