pub type R = crate::R<DCRrs>;
pub type W = crate::W<DCRrs>;
pub type DBA_R = crate::FieldReader;
pub type DBA_W<'a, REG> = crate::FieldWriter<'a, REG, 5>;
pub type DBL_R = crate::FieldReader;
pub type DBL_W<'a, REG> = crate::FieldWriter<'a, REG, 5>;
impl R {
        #[inline(always)]
    pub fn dba(&self) -> DBA_R {
        DBA_R::new((self.bits & 0x1f) as u8)
    }
        #[inline(always)]
    pub fn dbl(&self) -> DBL_R {
        DBL_R::new(((self.bits >> 8) & 0x1f) as u8)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("DCR")
            .field("dbl", &self.dbl())
            .field("dba", &self.dba())
            .finish()
    }
}
impl W {
        #[inline(always)]
    pub fn dba(&mut self) -> DBA_W<DCRrs> {
        DBA_W::new(self, 0)
    }
        #[inline(always)]
    pub fn dbl(&mut self) -> DBL_W<DCRrs> {
        DBL_W::new(self, 8)
    }
}
pub struct DCRrs;
impl crate::RegisterSpec for DCRrs {
    type Ux = u32;
}
impl crate::Readable for DCRrs {}
impl crate::Writable for DCRrs {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
impl crate::Resettable for DCRrs {
    const RESET_VALUE: u32 = 0;
}