summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-07 02:41:43 -0400
committerGravatar Lioncash2018-08-07 03:14:03 -0400
commit45bc449ff940879f556d191f51c0db705fe6634f (patch)
tree5e8b30d0092ac74365b55c3acf869dc04bfc9a30 /src/core/hle/service/service.cpp
parentMerge pull request #931 from DarkLordZach/nca-as-drd (diff)
downloadyuzu-45bc449ff940879f556d191f51c0db705fe6634f.tar.gz
yuzu-45bc449ff940879f556d191f51c0db705fe6634f.tar.xz
yuzu-45bc449ff940879f556d191f51c0db705fe6634f.zip
service: Add usb services
Adds basic skeleton for the usb services based off the information provided by Switch Brew.
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 31ea79773..889cdd41a 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -63,6 +63,7 @@
63#include "core/hle/service/spl/module.h" 63#include "core/hle/service/spl/module.h"
64#include "core/hle/service/ssl/ssl.h" 64#include "core/hle/service/ssl/ssl.h"
65#include "core/hle/service/time/time.h" 65#include "core/hle/service/time/time.h"
66#include "core/hle/service/usb/usb.h"
66#include "core/hle/service/vi/vi.h" 67#include "core/hle/service/vi/vi.h"
67#include "core/hle/service/wlan/wlan.h" 68#include "core/hle/service/wlan/wlan.h"
68 69
@@ -249,6 +250,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
249 SPL::InstallInterfaces(*sm); 250 SPL::InstallInterfaces(*sm);
250 SSL::InstallInterfaces(*sm); 251 SSL::InstallInterfaces(*sm);
251 Time::InstallInterfaces(*sm); 252 Time::InstallInterfaces(*sm);
253 USB::InstallInterfaces(*sm);
252 VI::InstallInterfaces(*sm, nv_flinger); 254 VI::InstallInterfaces(*sm, nv_flinger);
253 WLAN::InstallInterfaces(*sm); 255 WLAN::InstallInterfaces(*sm);
254 256