missing padding in cpu features

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@547 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
IoIxD
2025-11-01 05:18:53 +00:00
parent db98104aa0
commit 9746c20441

View File

@@ -20,6 +20,7 @@ struct _cpuFeatures {
MwBool mce : 1; /* Machine Check Exception */
MwBool cx8 : 1; /* CMPXCHG8B instr */
MwBool apic : 1; /* APIC on Chip */
MwBool pad1 : 1;
MwBool sep : 1; /* SYSENTER and SYSEXIT instrs */
MwBool mtrr : 1; /* Memory Type Range Registers */
MwBool pge : 1; /* Page Global Bit */
@@ -29,7 +30,7 @@ struct _cpuFeatures {
MwBool pse36 : 1; /* 36-Bit Page Size Extension */
MwBool psn : 1; /* Processor Serial Number */
MwBool clflush : 1; /* CLFLUSH instr */
MwBool pad1 : 1;
MwBool pad2 : 1;
MwBool ds : 1; /* Debug Store */
MwBool acpi : 1; /* Thermal Monitor and Software Controlled Clock Facilities */
MwBool mmx : 1; /* Intel MMX Technology */
@@ -39,7 +40,7 @@ struct _cpuFeatures {
MwBool ss : 1; /* Self Snoop */
MwBool hit : 1; /* Max APIC IDs */
MwBool tm : 1; /* Thermal Monitor */
MwBool pad2 : 1;
MwBool pad3 : 1;
MwBool pbe : 1; /* Pending Break Enable */
};
#endif