ptm.cpp 507 B

123456789101112131415161718
  1. // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-3.0-or-later
  3. #include <memory>
  4. #include "core/core.h"
  5. #include "core/hle/service/ptm/psm.h"
  6. #include "core/hle/service/ptm/ptm.h"
  7. #include "core/hle/service/ptm/ts.h"
  8. namespace Service::PTM {
  9. void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
  10. std::make_shared<PSM>(system)->InstallAsService(sm);
  11. std::make_shared<TS>(system)->InstallAsService(sm);
  12. }
  13. } // namespace Service::PTM