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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-27 13:56:17 -03:00
|
|
|
#include <string>
|
|
|
|
|
2014-10-29 22:38:33 -03:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace DSP_DSP
|
|
|
|
|
|
|
|
namespace DSP_DSP {
|
|
|
|
|
|
|
|
class Interface : public Service::Interface {
|
|
|
|
public:
|
|
|
|
Interface();
|
2014-12-21 16:52:10 -03:00
|
|
|
|
2014-11-12 18:13:08 -03:00
|
|
|
std::string GetPortName() const override {
|
2014-11-26 02:39:36 -03:00
|
|
|
return "dsp::DSP";
|
2014-10-29 22:38:33 -03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-05 02:19:28 -03:00
|
|
|
/// Signals that a DSP interrupt has occurred to userland code
|
|
|
|
void SignalInterrupt();
|
|
|
|
|
2014-10-29 22:38:33 -03:00
|
|
|
} // namespace
|