2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-09-23 01:02:21 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "Common/CPUDetect.h"
|
|
|
|
|
|
|
|
CPUInfo cpu_info;
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
CPUInfo::CPUInfo()
|
|
|
|
{
|
|
|
|
}
|
2014-09-23 01:02:21 +00:00
|
|
|
|
|
|
|
std::string CPUInfo::Summarize()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return "Generic";
|
2014-09-23 01:02:21 +00:00
|
|
|
}
|