service: Add mvd and qtm services

Adds the two New3DS-only modules.

3dbrew was used for command information.
This commit is contained in:
Lioncash 2016-12-08 04:26:23 -05:00
parent d098d941d7
commit 2061d2014d
14 changed files with 271 additions and 0 deletions

View file

@ -26,6 +26,7 @@
#include "core/hle/service/ir/ir.h"
#include "core/hle/service/ldr_ro/ldr_ro.h"
#include "core/hle/service/mic_u.h"
#include "core/hle/service/mvd/mvd.h"
#include "core/hle/service/ndm/ndm.h"
#include "core/hle/service/news/news.h"
#include "core/hle/service/nfc/nfc.h"
@ -34,6 +35,7 @@
#include "core/hle/service/nwm_uds.h"
#include "core/hle/service/pm_app.h"
#include "core/hle/service/ptm/ptm.h"
#include "core/hle/service/qtm/qtm.h"
#include "core/hle/service/service.h"
#include "core/hle/service/soc_u.h"
#include "core/hle/service/srv.h"
@ -121,11 +123,13 @@ void Init() {
FRD::Init();
HID::Init();
IR::Init();
MVD::Init();
NDM::Init();
NEWS::Init();
NFC::Init();
NIM::Init();
PTM::Init();
QTM::Init();
AddService(new AC_U::Interface);
AddService(new ACT_A::Interface);