pub trait MemoryMappedRegister: Clone + From<u32> + Into<u32> + Sized + Debug {
    const ADDRESS: u64;
    const NAME: &'static str;
}
Expand description

A memory mapped register, for instance ARM debug registers (DHCSR, etc).

Required Associated Constants§

The register’s address in the target memory.

The register’s name.

Implementors§