Cleaner Template for using functions to set members of an array

This commit is contained in:
ganome 2025-01-28 19:34:30 -07:00
parent e0bafa7b17
commit 4d3bb677f5
Signed by untrusted user who does not match committer: Ganome
GPG Key ID: 944DE53336D81B83
2 changed files with 1 additions and 23 deletions

View File

@ -1,6 +1,5 @@
// void setCPU(){};
void setCPU(CPU *pCPU, float mmainclock) {
cout << "Coming from the setCPU function in setcpu.h" << endl;
@ -11,6 +10,3 @@ cout << "Incoming main clock variable was: " << mmainclock << endl;
}
//void setCPU(CPU *mA7800x3d, double mmainclock) {
//mA7800x3d->mainclock = mmainclock;
//}

View File

@ -18,7 +18,7 @@ int main() {
cout << "A7800x3d manufacturer is: " << A7800x3d->manufacturer << endl;
cout << "A7800x3d pointer after the change to AMD is: " << &A7800x3d->manufacturer << endl;
*/
A7800x3d->manufacturer = "AMD";
// A7800x3d->manufacturer = "AMD";
// Cat out both CPU's that have been created for sanity
cout << "IIi75820k manufacturer is: " << Ii75820k->manufacturer << endl;
@ -30,24 +30,6 @@ int main() {
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;
}