Common: Ported over Dolphin's code for x86 CPU capability detection.

This commit is contained in:
bunnei
2015-07-21 19:49:33 -04:00
parent 3f69c2039d
commit 4d51792285
5 changed files with 286 additions and 19 deletions

View File

@ -0,0 +1,17 @@
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include "cpu_detect.h"
namespace Common {
CPUInfo cpu_info;
CPUInfo::CPUInfo() { }
std::string CPUInfo::Summarize() {
return "Generic";
}
} // namespace Common