volatile-register icon indicating copy to clipboard operation
volatile-register copied to clipboard

Volatile access to memory mapped hardware registers

Results 2 volatile-register issues
Sort by recently updated
recently updated
newest added

Rust considers all references dereferencable and hence adds the `dereferencable` attribute. This allows the compiler to insert spurious reads from that reference. There is currently no way around that. Some...

In the WO struct you use an UnsafeCell to hold the value, but UnsafeCell isn't repr(C) compatible. This causes rust to throw a warning that some struct element isn't repr(C)...