diff options
Diffstat (limited to 'src/common/cpu_detect_generic.cpp')
| -rw-r--r-- | src/common/cpu_detect_generic.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/common/cpu_detect_generic.cpp b/src/common/cpu_detect_generic.cpp new file mode 100644 index 000000000..b99c22af8 --- /dev/null +++ b/src/common/cpu_detect_generic.cpp | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | // Copyright 2014 Dolphin Emulator Project | ||
| 2 | // Licensed under GPLv2+ | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "cpu_detect.h" | ||
| 6 | |||
| 7 | namespace Common { | ||
| 8 | |||
| 9 | CPUInfo cpu_info; | ||
| 10 | |||
| 11 | CPUInfo::CPUInfo() { } | ||
| 12 | |||
| 13 | std::string CPUInfo::Summarize() { | ||
| 14 | return "Generic"; | ||
| 15 | } | ||
| 16 | |||
| 17 | } // namespace Common | ||