Small Rust library for accessing the physical address space using /dev/mem
```rust use devmem::Mapping
let mut mapping = unsafe {
Mapping::new(0x10000000, 8).unwrap()
};
let datatowrite: Vec
let mapping = unsafe {
Mapping::new(0x10000004, 4).unwrap()
};
let mut dataread: Vec
asserteq!(dataread, datatowrite[4..8]); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.