You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
436 B
24 lines
436 B
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service {
|
|
namespace SOC {
|
|
|
|
class SOC_U final : public Interface {
|
|
public:
|
|
SOC_U();
|
|
~SOC_U();
|
|
|
|
std::string GetPortName() const override {
|
|
return "soc:U";
|
|
}
|
|
};
|
|
|
|
} // namespace SOC
|
|
} // namespace Service
|