Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TechneMain;
- namespace TechneMain
- {
- class IntelCPU
- {
- //Intel Brand...
- public static string intelBrand = "Intel";
- public static string intelCore = "Intel Core ";
- //Intel Codename
- public static string intellHaswellE = "Haswell-E";
- public static string intelHaswell = "Haswell";
- public static string intelIvy = "Ivy Bridge";
- public static string intelSandy = "Sandy Bridge";
- public static string intelClarkdale = "Clarkdale";
- public static string intelLynnfield = "Lynnfield";
- public static string intelPentium = "Pentium";
- public static string intelCeleron = "Celeron";
- //Intel Socket
- public static string lga1150 = "LGA 1150 - H81, B85, Q85, Q87, H87, Z87, H97, Z97";
- #region CPU's 1st Generation
- //i5's Lynnfield (45 nm)
- public static string intel750 = "i5-750";
- public static string intel760 = "i5-760";
- public static string intel750S = "i5-760S";
- #endregion
- #region CPU's 2nd Generation
- //i5's Clarkdale (32nm)
- public static string intel650 = "i5-650";
- public static string intel655K = "i5-655K";
- public static string intel660 = "i5-660";
- public static string intel661 = "i5-661";
- public static string intel670 = "i5-670";
- public static string intel680 = "i5-680";
- #endregion
- #region CPU's 3rd Generation
- //i5's Sandy Bridge 32nm (Dual Core)
- public static string intel2390T = "i5-2390T";
- //i5's Sandy Bridge 32nm (Quad Core)
- public static string intel2300 = "i5-2300";
- public static string intel2310 = "i5-2310";
- public static string intel2320 = "i5-2320";
- public static string intel2380P = "i5-2380P";
- public static string intel2400 = "i5-2400";
- public static string intel2450P = "i5-2450P";
- public static string intel2500 = "i5-2500";
- public static string intel2500K = "i5-2500K";
- //Low Power
- public static string intel2400S = "i5-2400S";
- public static string intel2405S = "i5-2405S";
- public static string intel2500S = "i5-2500S";
- //Ultra Low Power...
- public static string intel2500T = "i5-2500T";
- //i5's IVY Bridge 22nm (Dual Core)
- public static string intel3470T = "i5-3470T";
- //i5's IVY Bridge 22nm (Quad Core)
- //Standard Power
- public static string intel3330 = "i5-3330";
- public static string intel3340 = "i5-3340";
- public static string intel3350P = "i5-3350P";
- public static string intel3450 = "i5-3450";
- public static string intel3470 = "i5-3470";
- public static string intel3550 = "i5-3550";
- public static string intel3570 = "i5-3570";
- //Low power...
- public static string intel3330S = "i5-3330S";
- public static string intel3335S = "i5-3335S";
- public static string intel3340S = "i5-3340S";
- public static string intel3450S = "i5-3450S";
- public static string intel3470S = "i5 -3470S";
- public static string intel3475S = "i5-3475S";
- public static string intel3550S = "i5-3550S";
- public static string intel3570S = "i5-3570S";
- //Ultra Low Power...
- public static string intel3570T = "i5-3570T";
- #endregion
- #region CPU's 4th Generation
- //Intel i5's Haswell 22nm (Dual Core)
- public static string intel4570T = "i5-4570T";
- public static string intel4570TE = "i5-4570TE";
- //Intel i5's Haswell 22nm (Quad Core)
- //Standard Power...
- public static string intel4430 = "i5-4430";
- public static string intel4440 = "i5-4440";
- public static string intel4460 = "i5-4460";
- public static string intel4570 = "i5-4570";
- public static string intel4590 = "i5-4590";
- public static string intel4670 = "i5-4670";
- public static string intel4670K = "i5-4670K";
- public static string intel4690 = "i5-4690";
- public static string intel4690K = "i5-4690K";
- //Low Power...
- public static string intel4430S = "i5-4430S";
- public static string intel4440S = "i5-4440S";
- public static string intel4460S = "i5-4460S";
- public static string intel4570S = "i5-4570S";
- public static string intel4590S = "i5-4590S";
- public static string intel4670S = "i5-4670S";
- public static string intel4690S = "i5-4690S";
- //Ultra Low power...
- public static string intel4460T = "i5-4460T";
- public static string intel4590T = "i5-4590T";
- public static string intel4670T = "i5-4670T";
- public static string intel4690T = "i5-4690T";
- //Intel I5's Haswell-H 22nm (Quad Core) - eDRAM acting as L4 Cache...
- public static string intel4570R = "i5-4570R";
- public static string intel4670R = "i5-4670R";
- //Intel i7's Haswell 22nm (Quad Core)
- public static string intel4770 = "i7-4770";
- public static string intel4770K = "i7-4770K";
- public static string intel4790 = "i7-4790";
- public static string intel4790K = "i7-4790K";
- #endregion
- //Cores
- public static string intelcore = "1";
- public static string intelcore2 = "2";
- public static string intelcore4 = "4";
- public static string intelcore6 = "6";
- public static string intelcore8 = "8";
- //Technoology (die size)
- public static string intelTech45 = "45nm";
- public static string intelTech32 = "32nm";
- public static string intelTech22 = "22nm";
- //Hyperthreading
- public static string intelHTTrue = "True";
- public static string intelHTFalse = "False";
- //TDP's
- public static string tdp88 = "88 W";
- public static string tdp84 = "84 W";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment