#rust #rustlang low-level and #no_std Devs: I have these memory registers which I can write to whenever needed.
Considering this is shared mutable static memory, does this violate aliasing rules in some way? It's impossible to cause memory unsafety because the content written is POD, no constructors, drops, etc.
I'm either copying/reading u8/u16 or C packed structs.