blob: 97395bd1a2586e05d862b1937ee18814b8c81f89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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";
}
|