Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. //Component adding Case + Motherboard
  2. coolermastermb520.addMotherboardToCase(gigabyteaorusx570); //True, Component added. ITX Motherboards fits in ATX Case.
  3.  
  4. //Component adding Motherboard + CPU
  5. gigabyteaorusx570.addCpuToMotherboard(i39100f); //False, Component not compatible. Motherboard uses AMD socket. CPU uses Intel socket.
  6. gigabyteaorusx570.addCpuToMotherboard(ryzen3600); //True, Component added. Both AMD sockets.
  7.  
  8. //Component adding Motherboard + Memory
  9. gigabyteaorusx570.addMemoryToMotherboard(gskilltridentz3200); // True, Component added. Both memory types are DDR4.
  10. gigabyteaorusx570.addMemoryToMotherboard(gskilltridentz3200); // True, Component added. Both memory types are DDR4.
  11. gigabyteaorusx570.addMemoryToMotherboard(gskilltridentz3200); // False, already using all RAM Slots.
  12.  
  13. //Component adding Motherboard + GPU
  14. gigabyteaorusx570.addGPUToMotherboard(nvidiagtx1650); //True, Component added. Uses 1 PCIe Slot.
  15. gigabyteaorusx570.addGPUToMotherboard(nvidiagtx1650); //True, Component added. Uses 2 PCIe Slots.
  16. gigabyteaorusx570.addGPUToMotherboard(nvidiagtx1650); //False, already using all available PCIe Slots.
  17.  
  18. //Component adding Motherboard + Storage
  19. gigabyteaorusx570.addSsdStorageToMotherboard(ssd1000gigabyte, coolermastermb520.ssdDriveBays); //True, storage added. Used 1 Sata connector + SSD Bay.
  20. gigabyteaorusx570.addSsdStorageToMotherboard(ssd1000gigabyte, coolermastermb520.ssdDriveBays); //True, storage added. Used 1 Sata connector + SSD Bay.
  21. gigabyteaorusx570.addSsdStorageToMotherboard(ssd1000gigabyte, coolermastermb520.ssdDriveBays); //False, no ssd bays available.
  22. gigabyteaorusx570.addHddStorageToMotherboard(hdd1000wdblue, coolermastermb520.hddDriveBays); // True, storage added. Used 1 Sata connector + HDD Bay.
  23. gigabyteaorusx570.addHddStorageToMotherboard(hdd1000wdblue, coolermastermb520.hddDriveBays); // True, storage added. Used 1 Sata connector + HDD Bay.
  24. gigabyteaorusx570.addHddStorageToMotherboard(hdd1000wdblue, coolermastermb520.hddDriveBays); // False, no Sata connectors available.
  25.  
  26.  
  27. //Component adding PSU to case.
  28. coolermastermb520.addPsuToCase(corsairvs450); //True, PSU added. Using 1 PSU Slot.
  29. coolermastermb520.addPsuToCase(corsairvs450); //False, can only have 1 PSU Slot active.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement