2025-01-28 10:06:50 -07:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <string>
|
2025-01-28 11:46:16 -07:00
|
|
|
#include "lists/hardware.h"
|
2025-01-28 12:17:10 -07:00
|
|
|
#include "lists/cpu.h"
|
2025-01-28 15:51:35 -07:00
|
|
|
#include "include/setcpu.h"
|
2025-01-28 10:06:50 -07:00
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
2025-01-28 11:46:16 -07:00
|
|
|
|
2025-01-28 15:28:03 -07:00
|
|
|
// Set some variables for the spawned CPU's
|
2025-01-28 12:17:10 -07:00
|
|
|
A7800x3d.manufacturer = "AMD";
|
2025-01-28 15:28:03 -07:00
|
|
|
A7800x3d.model = "Ryzen 7 7800x3d";
|
|
|
|
|
|
|
|
|
|
i75820k.model = "i75820k";
|
|
|
|
|
i75820k.manufacturer = "Intel";
|
2025-01-28 13:38:55 -07:00
|
|
|
|
2025-01-28 15:51:35 -07:00
|
|
|
setCPU("i75820k", 3.2, 3.6);
|
|
|
|
|
|
2025-01-28 10:06:50 -07:00
|
|
|
|
2025-01-28 15:24:46 -07:00
|
|
|
cout << "The " << A7800x3d.model << "'s Manufacturer is: " << A7800x3d.manufacturer << endl;
|
2025-01-28 15:28:03 -07:00
|
|
|
cout << "The Main Clock Speed is: " << A7800x3d.mainclock << endl;
|
|
|
|
|
cout << "The Boost Clock Speed is: " << A7800x3d.boostclock << endl;
|
2025-01-28 10:06:50 -07:00
|
|
|
|
|
|
|
|
system("sleep 3s");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|