dolphin/Source/Core/Common/GenericCPUDetect.cpp

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

16 lines
220 B
C++
Raw Normal View History

// Copyright 2014 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "Common/CPUDetect.h"
CPUInfo cpu_info;
CPUInfo::CPUInfo()
{
}
std::string CPUInfo::Summarize()
{
return "Generic";
}