pub type R = crate::R<UR18rs>;
pub type CPU_FREQ_BOOST_R = crate::BitReader;
impl R {
#[inline(always)]
pub fn cpu_freq_boost(&self) -> CPU_FREQ_BOOST_R {
CPU_FREQ_BOOST_R::new((self.bits & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("UR18").field("cpu_freq_boost", &self.cpu_freq_boost()).finish()
}
}
pub struct UR18rs;
impl crate::RegisterSpec for UR18rs {
type Ux = u32;
}
impl crate::Readable for UR18rs {}
impl crate::Resettable for UR18rs {}