Files
eden/src/core/hle/service/ptm/ptm.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
692 B
C++
Raw Normal View History

2022-06-26 18:48:12 -05:00
// 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"
2023-02-18 16:26:48 -05:00
#include "core/hle/service/server_manager.h"
2022-06-26 18:48:12 -05:00
namespace Service::PTM {
2023-02-18 16:26:48 -05:00
void LoopProcess(Core::System& system) {
auto server_manager = std::make_unique<ServerManager>(system);
server_manager->RegisterNamedService("psm", std::make_shared<PSM>(system));
server_manager->RegisterNamedService("ts", std::make_shared<TS>(system));
ServerManager::RunServer(std::move(server_manager));
2022-06-26 18:48:12 -05:00
}
} // namespace Service::PTM