1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - System Exception Raw Interrupt Status"]
    pub ris: RIS,
    #[doc = "0x04 - System Exception Interrupt Mask"]
    pub im: IM,
    #[doc = "0x08 - System Exception Masked Interrupt Status"]
    pub mis: MIS,
    #[doc = "0x0c - System Exception Interrupt Clear"]
    pub ic: IC,
}
#[doc = "System Exception Raw Interrupt Status"]
pub struct RIS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "System Exception Raw Interrupt Status"]
pub mod ris;
#[doc = "System Exception Interrupt Mask"]
pub struct IM {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "System Exception Interrupt Mask"]
pub mod im;
#[doc = "System Exception Masked Interrupt Status"]
pub struct MIS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "System Exception Masked Interrupt Status"]
pub mod mis;
#[doc = "System Exception Interrupt Clear"]
pub struct IC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "System Exception Interrupt Clear"]
pub mod ic;