As mentioned by @oli-obk , a convenient register macro may be a good thing to spare users from having to write inline-assembly: ``` rust reg!(r0) = 42; *(reg!(r0) + 3 as *const i32) = 42; x = reg!(r0); ```