summaryrefslogtreecommitdiff
path: root/Source/Core/Common/GenericCPUDetect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/GenericCPUDetect.cpp')
-rw-r--r--Source/Core/Common/GenericCPUDetect.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/Core/Common/GenericCPUDetect.cpp b/Source/Core/Common/GenericCPUDetect.cpp
new file mode 100644
index 0000000000..5f135bb7a2
--- /dev/null
+++ b/Source/Core/Common/GenericCPUDetect.cpp
@@ -0,0 +1,14 @@
+// Copyright 2013 Dolphin Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#include "Common/CPUDetect.h"
+
+CPUInfo cpu_info;
+
+CPUInfo::CPUInfo() {}
+
+std::string CPUInfo::Summarize()
+{
+ return "Generic";
+}