Home | History | Annotate | Download | only in X64

Lines Matching refs:Cr0

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

219 Reads and returns the current value of CR0. This function is only available
223 @return The value of the Control Register 0 (CR0).
235 "mov %%cr0,%0"
324 Writes a value to Control Register 0 (CR0).
326 Writes and returns a new value to CR0. This function is only available on
329 @param Cr0 The value to write to CR0.
331 @return The value written to CR0.
337 UINTN Cr0
341 "mov %0, %%cr0"
343 : "r" (Cr0)
345 return Cr0;