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 5794310781
commit 432d1c5263
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