pub type R = crate::R<EXMINrs>;
pub type EXMINCH_R = crate::FieldReader;
pub type EXMIN_R = crate::FieldReader<u32>;
impl R {
#[inline(always)]
pub fn exminch(&self) -> EXMINCH_R {
EXMINCH_R::new((self.bits & 7) as u8)
}
#[inline(always)]
pub fn exmin(&self) -> EXMIN_R {
EXMIN_R::new((self.bits >> 8) & 0x00ff_ffff)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("EXMIN")
.field("exmin", &self.exmin())
.field("exminch", &self.exminch())
.finish()
}
}
pub struct EXMINrs;
impl crate::RegisterSpec for EXMINrs {
type Ux = u32;
}
impl crate::Readable for EXMINrs {}
impl crate::Resettable for EXMINrs {
const RESET_VALUE: u32 = 0x7fff_ff00;
}