Common: Ported over Dolphin's code for x86 CPU capability detection.
This commit is contained in:
17
src/common/cpu_detect_generic.cpp
Normal file
17
src/common/cpu_detect_generic.cpp
Normal 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
|
Reference in New Issue
Block a user