2015-07-22 00:49:33 +01:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "cpu_detect.h"
|
2015-07-22 03:54:38 +01:00
|
|
|
#include "hash.h"
|
2015-07-22 00:49:33 +01:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
CPUInfo cpu_info;
|
|
|
|
|
2015-07-22 03:54:38 +01:00
|
|
|
CPUInfo::CPUInfo() {
|
|
|
|
}
|
2015-07-22 00:49:33 +01:00
|
|
|
|
|
|
|
std::string CPUInfo::Summarize() {
|
|
|
|
return "Generic";
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Common
|