1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - No Description."]
    pub low: LOW,
    #[doc = "0x01 - No Description."]
    pub high: HIGH,
    #[doc = "0x02 - No Description."]
    pub extended: EXTENDED,
}
#[doc = "EXTENDED (rw) register accessor: an alias for `Reg<EXTENDED_SPEC>`"]
pub type EXTENDED = crate::Reg<extended::EXTENDED_SPEC>;
#[doc = "No Description."]
pub mod extended;
#[doc = "HIGH (rw) register accessor: an alias for `Reg<HIGH_SPEC>`"]
pub type HIGH = crate::Reg<high::HIGH_SPEC>;
#[doc = "No Description."]
pub mod high;
#[doc = "LOW (rw) register accessor: an alias for `Reg<LOW_SPEC>`"]
pub type LOW = crate::Reg<low::LOW_SPEC>;
#[doc = "No Description."]
pub mod low;