cpu_detect_generic.cpp 300 B

12345678910111213141516171819
  1. // Copyright 2014 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #include "cpu_detect.h"
  5. #include "hash.h"
  6. namespace Common {
  7. CPUInfo cpu_info;
  8. CPUInfo::CPUInfo() {
  9. }
  10. std::string CPUInfo::Summarize() {
  11. return "Generic";
  12. }
  13. } // namespace Common