Files
eden/src/core/hle/service/dsp_dsp.cpp
T

18 lines
369 B
C++
Raw Normal View History

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