Add FeatureBits field to CPU identification structure
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in -59m8s
Builds / ExectOS (amd64, release) (push) Successful in -59m37s
Builds / ExectOS (i686, debug) (push) Successful in -59m29s
Builds / ExectOS (i686, release) (push) Successful in -59m32s

This commit is contained in:
2026-05-14 19:28:45 +02:00
parent ca4f3acc0e
commit ac675b037e
2 changed files with 2 additions and 0 deletions

View File

@@ -431,6 +431,7 @@ typedef VOID (*PINTERRUPT_HANDLER)(PKTRAP_FRAME TrapFrame);
typedef struct _CPU_IDENTIFICATION typedef struct _CPU_IDENTIFICATION
{ {
USHORT Family; USHORT Family;
ULONGLONG FeatureBits;
USHORT Model; USHORT Model;
USHORT Stepping; USHORT Stepping;
CPU_VENDOR Vendor; CPU_VENDOR Vendor;

View File

@@ -396,6 +396,7 @@ typedef VOID (*PINTERRUPT_HANDLER)(PKTRAP_FRAME TrapFrame);
typedef struct _CPU_IDENTIFICATION typedef struct _CPU_IDENTIFICATION
{ {
USHORT Family; USHORT Family;
ULONGLONG FeatureBits;
USHORT Model; USHORT Model;
USHORT Stepping; USHORT Stepping;
CPU_VENDOR Vendor; CPU_VENDOR Vendor;