aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-16 00:03:41 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-16 00:03:41 -0400
commit32c3462047d814eada8f3b80ee5ea2cd03936ae0 (patch)
tree9df4dd16c09f2b94e02e77b4818dc199e3323cc0 /src/core/hle/service/service.cpp
parentacef5e0b17e85bd25a5994d83b22d0ba02f589ba (diff)
- added stubbed out GSP::Gpu service interface
- various cleanups/refactors to HLE services
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 81a34ed0..f612ff83 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -9,6 +9,7 @@
#include "core/hle/hle.h"
#include "core/hle/service/service.h"
#include "core/hle/service/apt.h"
+#include "core/hle/service/gsp.h"
#include "core/hle/service/srv.h"
namespace Service {
@@ -73,8 +74,11 @@ Interface* Manager::FetchFromPortName(std::string port_name) {
/// Initialize ServiceManager
void Init() {
g_manager = new Manager;
+
g_manager->AddService(new SRV::Interface);
g_manager->AddService(new APT_U::Interface);
+ g_manager->AddService(new GSP_GPU::Interface);
+
NOTICE_LOG(HLE, "Services initialized OK");
}