Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/vmaware.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10906,9 +10906,9 @@ struct VM {

// ok so if the CPU is intel, the motherboard should be intel aswell (and same with AMD)
// this doesnt happen in most public hardened configs out there so lets abuse it
constexpr unsigned int VID_INTEL = 0x8086;
constexpr unsigned int VID_AMD_ATI = 0x1002;
constexpr unsigned int VID_AMD_MICRO = 0x1022;
static constexpr unsigned int VID_INTEL = 0x8086;
static constexpr unsigned int VID_AMD_ATI = 0x1002;
static constexpr unsigned int VID_AMD_MICRO = 0x1022;

enum class MBVendor { Unknown = 0, Intel = 1, AMD = 2 };

Expand Down
Loading