1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[repr(C)]
#[derive(Debug)]
///Register block
pub struct RegisterBlock {
    cpacr: CPACR,
}
impl RegisterBlock {
    ///0x00 - Coprocessor access control register
    #[inline(always)]
    pub const fn cpacr(&self) -> &CPACR {
        &self.cpacr
    }
}
/**CPACR (rw) register accessor: Coprocessor access control register

You can [`read`](crate::generic::Reg::read) this register and get [`cpacr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cpacr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

For information about available fields see [`mod@cpacr`]
module*/
pub type CPACR = crate::Reg<cpacr::CPACRrs>;
///Coprocessor access control register
pub mod cpacr;