__writedr
Microsoft Specific
Writes the specified value to the specified debug register.
C
void __writedr(unsigned DebugRegister, unsigned DebugValue); /* x86 */
void __writedr(unsigned DebugRegister, unsigned __int64 DebugValue); /* x64 */
DebugRegister
[in] A number from 0 through 7 that identifies the debug register.
DebugValue
[in] A value to write to the debug register.
These intrinsics are available only in kernel mode, and the routines are available only as intrinsics.
Intrinsic | Architecture |
---|---|
__writedr |
x86, x64 |
Header file <intrin.h>
END Microsoft Specific