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 PREGION {
    #[doc = "0x00 - Description cluster\\[n\\]: Reserved for future use"]
    pub start: START,
    #[doc = "0x04 - Description cluster\\[n\\]: Reserved for future use"]
    pub end: END,
    #[doc = "0x08 - Description cluster\\[n\\]: Subregions of region n"]
    pub subs: SUBS,
}
#[doc = "START (r) register accessor: an alias for `Reg<START_SPEC>`"]
pub type START = crate::Reg<start::START_SPEC>;
#[doc = "Description cluster\\[n\\]: Reserved for future use"]
pub mod start;
#[doc = "END (r) register accessor: an alias for `Reg<END_SPEC>`"]
pub type END = crate::Reg<end::END_SPEC>;
#[doc = "Description cluster\\[n\\]: Reserved for future use"]
pub mod end;
#[doc = "SUBS (rw) register accessor: an alias for `Reg<SUBS_SPEC>`"]
pub type SUBS = crate::Reg<subs::SUBS_SPEC>;
#[doc = "Description cluster\\[n\\]: Subregions of region n"]
pub mod subs;