diff options
-rw-r--r-- | src/register/msp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/register/msp.rs b/src/register/msp.rs index 78f507c..bccc2ae 100644 --- a/src/register/msp.rs +++ b/src/register/msp.rs @@ -8,7 +8,7 @@ pub fn read() -> u32 { /// Writes `bits` to the CPU register #[inline] -#[deprecated = "calling this function invokes Undefined Behavior"] +#[deprecated = "calling this function invokes Undefined Behavior, consider asm::bootstrap as an alternative"] pub unsafe fn write(bits: u32) { call_asm!(__msp_w(bits: u32)); } |