pub type R = crate::R<DIVLrs>;
pub type DIVL_R = crate::FieldReader<u16>;
impl R {
#[inline(always)]
pub fn divl(&self) -> DIVL_R {
DIVL_R::new((self.bits & 0xffff) as u16)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("DIVL").field("divl", &self.divl()).finish()
}
}
pub struct DIVLrs;
impl crate::RegisterSpec for DIVLrs {
type Ux = u32;
}
impl crate::Readable for DIVLrs {}
impl crate::Resettable for DIVLrs {
const RESET_VALUE: u32 = 0x8000;
}