mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-27 13:56:27 -05:00
18 lines
507 B
C++
18 lines
507 B
C++
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include <memory>
|
|
|
|
#include "core/core.h"
|
|
#include "core/hle/service/ptm/psm.h"
|
|
#include "core/hle/service/ptm/ptm.h"
|
|
#include "core/hle/service/ptm/ts.h"
|
|
|
|
namespace Service::PTM {
|
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
|
|
std::make_shared<PSM>(system)->InstallAsService(sm);
|
|
std::make_shared<TS>(system)->InstallAsService(sm);
|
|
}
|
|
|
|
} // namespace Service::PTM
|