From f916611e321fa07d790e5ddb34fee222ddf7d4f0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 26 Jul 2018 02:17:15 -0400 Subject: service: Add the nim services Adds the skeleton for the nim services based off information from Switch Brew. --- src/core/hle/service/service.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/hle/service/service.cpp') diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 482989ea7..f35828967 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -33,6 +33,7 @@ #include "core/hle/service/mm/mm_u.h" #include "core/hle/service/nfp/nfp.h" #include "core/hle/service/nifm/nifm.h" +#include "core/hle/service/nim/nim.h" #include "core/hle/service/ns/ns.h" #include "core/hle/service/nvdrv/nvdrv.h" #include "core/hle/service/pctl/pctl.h" @@ -204,6 +205,7 @@ void Init(std::shared_ptr& sm) { MM::InstallInterfaces(*sm); NFP::InstallInterfaces(*sm); NIFM::InstallInterfaces(*sm); + NIM::InstallInterfaces(*sm); NS::InstallInterfaces(*sm); Nvidia::InstallInterfaces(*sm); PCTL::InstallInterfaces(*sm); -- cgit v1.2.3