aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/pxi/pxi.cpp
blob: 68e7d87376efdab0ede172f5ac21a03f7ae5b159 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/core.h"
#include "core/hle/service/pxi/dev.h"
#include "core/hle/service/pxi/pxi.h"

namespace Service::PXI {

void InstallInterfaces(Core::System& system) {
    auto& service_manager = system.ServiceManager();
    std::make_shared<DEV>()->InstallAsService(service_manager);
}

} // namespace Service::PXI