summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-04 21:20:26 -0400
committerGravatar GitHub2018-08-04 21:20:26 -0400
commita0a605df06e82e13f3529d824a6bdd45839c8705 (patch)
treeb522eca4059240eefabb845b05e7ce82ac1c54ef /src/core/hle/service/service.cpp
parentMerge pull request #921 from lioncash/view (diff)
parentservice: Add arp services (diff)
downloadyuzu-a0a605df06e82e13f3529d824a6bdd45839c8705.tar.gz
yuzu-a0a605df06e82e13f3529d824a6bdd45839c8705.tar.xz
yuzu-a0a605df06e82e13f3529d824a6bdd45839c8705.zip
Merge pull request #924 from lioncash/arp
service: Add arp services
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 61e0c34a0..31ea79773 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -19,6 +19,7 @@
19#include "core/hle/service/am/am.h" 19#include "core/hle/service/am/am.h"
20#include "core/hle/service/aoc/aoc_u.h" 20#include "core/hle/service/aoc/aoc_u.h"
21#include "core/hle/service/apm/apm.h" 21#include "core/hle/service/apm/apm.h"
22#include "core/hle/service/arp/arp.h"
22#include "core/hle/service/audio/audio.h" 23#include "core/hle/service/audio/audio.h"
23#include "core/hle/service/bcat/bcat.h" 24#include "core/hle/service/bcat/bcat.h"
24#include "core/hle/service/bpc/bpc.h" 25#include "core/hle/service/bpc/bpc.h"
@@ -207,6 +208,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
207 AM::InstallInterfaces(*sm, nv_flinger); 208 AM::InstallInterfaces(*sm, nv_flinger);
208 AOC::InstallInterfaces(*sm); 209 AOC::InstallInterfaces(*sm);
209 APM::InstallInterfaces(*sm); 210 APM::InstallInterfaces(*sm);
211 ARP::InstallInterfaces(*sm);
210 Audio::InstallInterfaces(*sm); 212 Audio::InstallInterfaces(*sm);
211 BCAT::InstallInterfaces(*sm); 213 BCAT::InstallInterfaces(*sm);
212 BPC::InstallInterfaces(*sm); 214 BPC::InstallInterfaces(*sm);