Advertisement
Guest User

My submission to the AMD software department. (Better Format

a guest
Aug 2nd, 2017
1,298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int AMD_GPU_TEMPS;
  7. int NVIDIA_GPU_TEMPS;
  8. int *editpointer;
  9.  
  10. editpointer = &AMD_GPU_TEMPS;
  11. *editpointer = 12;
  12. cout << "AMD GPU Temps: " << *editpointer << " C - brr freezing cold ice to meet you ayymd also delivers high fps ayyyy" << endl;
  13.  
  14. editpointer = &NVIDIA_GPU_TEMPS;
  15. *editpointer = 92;
  16. cout << "NoVideo GPU Temps(WARNING: EXTREME HEAT): " << *editpointer << " C - ouch HOT HOT HOT burn to the touch";
  17. cout << " space heater replacement +$$$ on electric bill also lower framerates for more +$$$$" << endl;
  18.  
  19. editpointer = &AMD_GPU_TEMPS;
  20. cout << "lets go back to the nice ice cold antarctic AyyMD (tm) temperatures: " << *editpointer << " C" << endl;
  21. return 0;
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement