service: Stub mcu::HWC (#7428)

This commit is contained in:
GPUCode
2024-02-10 00:09:05 +02:00
committed by GitHub
parent 3c9157b1ec
commit de993dcfbd
6 changed files with 94 additions and 1 deletions

View File

@ -0,0 +1,16 @@
// Copyright 2024 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/mcu/mcu.h"
#include "core/hle/service/mcu/mcu_hwc.h"
namespace Service::MCU {
void InstallInterfaces(Core::System& system) {
auto& service_manager = system.ServiceManager();
std::make_shared<HWC>()->InstallAsService(service_manager);
}
} // namespace Service::MCU