Added CPUID info to JSON report

This commit is contained in:
SChernykh 2020-11-10 12:15:52 +01:00
parent 673c366f77
commit 44054ac7eb
2 changed files with 17 additions and 6 deletions

View file

@ -70,6 +70,10 @@ protected:
bool m_jccErratum = false;
private:
uint32_t m_procInfo = 0;
uint32_t m_family = 0;
uint32_t m_model = 0;
uint32_t m_stepping = 0;
Assembly m_assembly = Assembly::NONE;
MsrMod m_msrMod = MSR_MOD_NONE;
std::bitset<FLAG_MAX> m_flags;