54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
#include <iostream>
|
|
#include <string>
|
|
#include "lists/hardware.h"
|
|
#include "lists/cpu.h"
|
|
#include "include/setcpu.h"
|
|
|
|
void* ptr = &A7800x3d;
|
|
|
|
int main() {
|
|
|
|
using namespace std;
|
|
|
|
/* Error Checking
|
|
cout << "Main pointer address for A7800x3d: " << &A7800x3d << endl;
|
|
cout << "A7800x3d pointer before the value set is :" << &A7800x3d->manufacturer << endl;
|
|
cout << "A7800x3d value before change is: " << A7800x3d->manufacturer << endl;
|
|
A7800x3d->manufacturer = "AMD";
|
|
cout << "A7800x3d manufacturer is: " << A7800x3d->manufacturer << endl;
|
|
cout << "A7800x3d pointer after the change to AMD is: " << &A7800x3d->manufacturer << endl;
|
|
*/
|
|
A7800x3d->manufacturer = "AMD";
|
|
|
|
// Cat out both CPU's that have been created for sanity
|
|
cout << "IIi75820k manufacturer is: " << Ii75820k->manufacturer << endl;
|
|
cout << "A7800x3d manufacturer is: " << A7800x3d->manufacturer << endl;
|
|
|
|
cout << "Lets tyy the setCPU function!\n";
|
|
cout << "A7800x3d main clock speed is: " << A7800x3d->mainclock << endl;
|
|
|
|
setCPU(A7800x3d, 4.8);
|
|
cout << "A7800x3d new main clock speed is: " << A7800x3d->mainclock << endl;
|
|
|
|
// Set some variables for the spawned CPU's
|
|
// A7800x3d.manufacturer = "AMD";
|
|
// A7800x3d.model = "Ryzen 7 7800x3d";
|
|
|
|
// i75820k.model = "i75820k";
|
|
// i75820k.manufacturer = "Intel";
|
|
|
|
// setCPU("A7800x3d", 4.8, 5.2);
|
|
// setCPU("i75820k", 3.2, 3.8);
|
|
// setCPU(A7800x3d, 4.8);
|
|
|
|
/*
|
|
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;
|
|
cout << "\n\nThe pointer is: " << ptr << endl;
|
|
// cout << "The pointer is: " << *ptr.manufacturer << endl;
|
|
*/
|
|
system("sleep 3s");
|
|
return 0;
|
|
}
|