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