Skip to content

Commit

Permalink
Merge pull request #190 from gitdevmod/MemorySlot
Browse files Browse the repository at this point in the history
Update MemorySlot.cpp
  • Loading branch information
charleneauger authored Sep 7, 2020
2 parents c83ed7a + fc825c4 commit 4905a96
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions SysInfo/MemorySlot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,36 @@ void CMemorySlot::SetType(DWORD dwType)
case 0x19:
m_csType = _T( "FBD2");
break;
case 0x1A:
m_csType = _T( "DDR4");
break;
case 0x1B:
m_csType = _T( "LPDDR");
break;
case 0x1C:
m_csType = _T( "LPDDR2");
break;
case 0x1D:
m_csType = _T( "LPDDR3");
break;
case 0x1E:
m_csType = _T( "LPDDR4");
break;
case 0x1F:
m_csType = _T( "Logical non-volatile device");
break;
case 0x20:
m_csType = _T( "HBM (High Bandwidth Memory)");
break;
case 0x21:
m_csType = _T( "HBM2 (High Bandwidth Memory Generation 2)");
break;
case 0x22:
m_csType = _T( "DDR5");
break;
case 0x23:
m_csType = _T( "LPDDR5");
break;
default:
m_csType.Format( _T( "%s (%lu)"), NOT_AVAILABLE, dwType);
break;
Expand Down

0 comments on commit 4905a96

Please sign in to comment.