Service/AC: add ac:i service

This commit is contained in:
mailwl 2016-12-12 11:56:43 +03:00
parent f556d6ee90
commit c6f4b93f2e
9 changed files with 424 additions and 297 deletions

View file

@ -6,9 +6,8 @@
#include "common/logging/log.h"
#include "common/string_util.h"
#include "core/hle/kernel/server_port.h"
#include "core/hle/service/ac_u.h"
#include "core/hle/service/ac/ac.h"
#include "core/hle/service/act/act.h"
#include "core/hle/service/am/am.h"
#include "core/hle/service/apt/apt.h"
@ -138,6 +137,7 @@ void Init() {
AddNamedPort(new ERR::ERR_F);
FS::ArchiveInit();
AC::Init();
ACT::Init();
AM::Init();
APT::Init();
@ -158,7 +158,6 @@ void Init() {
PTM::Init();
QTM::Init();
AddService(new AC::AC_U);
AddService(new CSND::CSND_SND);
AddService(new DSP_DSP::Interface);
AddService(new GSP::GSP_GPU);
@ -191,6 +190,7 @@ void Shutdown() {
BOSS::Shutdown();
APT::Shutdown();
AM::Shutdown();
AC::Shutdown();
FS::ArchiveShutdown();
g_srv_services.clear();