///Register block
#[repr(C)]
pub struct RegisterBlock {
    ///0x00 - COMP control and status register
    pub csr: CSR,
    ///0x04 - Comparator Filter register
    pub fr: FR,
}
///CSR (rw) register accessor: an alias for `Reg<CSR_SPEC>`
pub type CSR = crate::Reg<csr::CSR_SPEC>;
///COMP control and status register
pub mod csr;
///FR (rw) register accessor: an alias for `Reg<FR_SPEC>`
pub type FR = crate::Reg<fr::FR_SPEC>;
///Comparator Filter register
pub mod fr;