We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32327c0 commit 6286c51Copy full SHA for 6286c51
src/registers/model_specific.rs
@@ -235,7 +235,10 @@ bitflags! {
235
// bits 0 - 7 are reserved.
236
/// Indicates whether the current processor is the bootstrap processor
237
const BSP = 1 << 8;
238
- // bits 9 - 10 are reserved.
+ // bit 9 is reserved.
239
+ /// Places the local APIC in the x2APIC mode. Processor support for x2APIC feature can be
240
+ /// detected using the `cpuid` instruction. (CPUID.(EAX=1):ECX.21)
241
+ const X2APIC_ENABLE = 1 << 10;
242
/// Enables or disables the local Apic
243
const LAPIC_ENABLE = 1 << 11;
244
/// Specifies the base address of the APIC registers. This 24-bit value is extended by 12 bits at the low end to form the base address.
0 commit comments