Home | History | Annotate | Download | only in Ia32

Lines Matching refs:Cr0

207   Reads the current value of the Control Register 0 (CR0).

209 Reads and returns the current value of CR0. This function is only available
213 @return The value of the Control Register 0 (CR0).
225 "movl %%cr0,%0"
314 Writes a value to Control Register 0 (CR0).
316 Writes and returns a new value to CR0. This function is only available on
319 @param Cr0 The value to write to CR0.
321 @return The value written to CR0.
327 UINTN Cr0
331 "movl %0, %%cr0"
333 : "r" (Cr0)
335 return Cr0;