25 lines
588 B
C++
25 lines
588 B
C++
#include <iostream>
|
|
#include <string>
|
|
#include "lists/hardware.h"
|
|
#include "lists/cpu.h"
|
|
|
|
int main() {
|
|
|
|
using namespace std;
|
|
|
|
// Set some variables for the spawned CPU's
|
|
A7800x3d.manufacturer = "AMD";
|
|
A7800x3d.model = "Ryzen 7 7800x3d";
|
|
|
|
i75820k.model = "i75820k";
|
|
i75820k.manufacturer = "Intel";
|
|
|
|
|
|
cout << "The " << A7800x3d.model << "'s Manufacturer is: " << A7800x3d.manufacturer << endl;
|
|
cout << "The Main Clock Speed is: " << A7800x3d.mainclock << endl;
|
|
cout << "The Boost Clock Speed is: " << A7800x3d.boostclock << endl;
|
|
|
|
system("sleep 3s");
|
|
return 0;
|
|
}
|