2014-10-29 22:38:33 -03:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 02:38:14 -03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-10-29 22:38:33 -03:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-02-21 10:13:52 -03:00
|
|
|
#include "audio_core/hle/pipe.h"
|
2016-09-21 03:52:38 -03:00
|
|
|
#include "core/hle/service/dsp_dsp.h"
|
2014-10-29 22:38:33 -03:00
|
|
|
|
2016-04-24 06:21:10 -03:00
|
|
|
using DspPipe = DSP::HLE::DspPipe;
|
|
|
|
|
2016-12-10 09:51:50 -03:00
|
|
|
namespace Service {
|
2014-10-29 22:38:33 -03:00
|
|
|
namespace DSP_DSP {
|
|
|
|
|
2016-04-24 06:21:10 -03:00
|
|
|
void SignalPipeInterrupt(DspPipe pipe) {
|
2015-03-07 22:54:16 -03:00
|
|
|
}
|
|
|
|
|
2016-12-10 09:51:50 -03:00
|
|
|
} // namespace DSP_DSP
|
|
|
|
} // namespace Service
|