Skip to content

Commit

Permalink
Fix memoryType
Browse files Browse the repository at this point in the history
  • Loading branch information
CherryPill committed Mar 5, 2020
1 parent 213532f commit 80bee17
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions SystemInfo/glb/globalVars.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,11 @@ static wstring RAMFormFactors[24]{
L"LGA"
};

static wstring RAMMemoryTypes[26]{
L"DDR3",
L"",
L"SDRAM",
static wstring RAMMemoryTypes[] = {
L"Unknown",
L"Other",
L"DRAM",
L"Synchronous DRAM",
L"Cache DRAM",
L"EDO",
L"EDRAM",
Expand All @@ -122,6 +123,7 @@ static wstring RAMMemoryTypes[26]{
L"Flash",
L"EEPROM",
L"FEPROM",
L"EPROM",
L"CDRAM",
L"3DRAM",
L"SDRAM",
Expand All @@ -130,9 +132,17 @@ static wstring RAMMemoryTypes[26]{
L"DDR",
L"DDR2",
L"DDR2 FB-DIMM",
L"DDR2",
L"",
L"DDR3",
L"FBD2"
L"FBD2",
L"DDR4",
L"LPDDR",
L"LPDDR2",
L"LPDDR3",
L"LPDDR4",
L"Logical non-volatile device",
L"HBM",
L"HBM2"
};

static wstring PCType[2]{
Expand Down

0 comments on commit 80bee17

Please sign in to comment.