mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-04-11 05:38:49 -04:00
service: ptm: Rewrite PSM and add TS
This commit is contained in:
18
src/core/hle/service/ptm/ptm.cpp
Normal file
18
src/core/hle/service/ptm/ptm.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user