Skip to content

Commit 6ae917b

Browse files
committed
fix byte order for amd LeafExt1EInformation
1 parent 58e949d commit 6ae917b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

source/cpuid/amd.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,11 @@ union LeafExt1EInformation
274274
/// Extended APIC ID
275275
uint ExtendedApicId;
276276
// EBX
277-
ushort __reserved__EBX;
278-
/// The number of threads per core is ThreadsPerCore+1.
279-
ubyte ThreadsPerCore;
280277
/// Core ID
281278
ubyte CoreId;
279+
/// The number of threads per core is ThreadsPerCore+1.
280+
ubyte ThreadsPerCore;
281+
ushort __reserved__EBX;
282282
version(D_Ddoc)
283283
{
284284
const @trusted @property pure nothrow @nogc:

0 commit comments

Comments
 (0)