pub type R = crate::R<CR3rs>;
pub type W = crate::W<CR3rs>;
pub type ITAMP1NOER_R = crate::BitReader;
pub type ITAMP1NOER_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type ITAMP2NOER_R = crate::BitReader;
pub type ITAMP2NOER_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type ITAMP3NOER_R = crate::BitReader;
pub type ITAMP3NOER_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type ITAMP5NOER_R = crate::BitReader;
pub type ITAMP5NOER_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type ITAMP8NOER_R = crate::BitReader;
pub type ITAMP8NOER_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
        #[inline(always)]
    pub fn itamp1noer(&self) -> ITAMP1NOER_R {
        ITAMP1NOER_R::new((self.bits & 1) != 0)
    }
        #[inline(always)]
    pub fn itamp2noer(&self) -> ITAMP2NOER_R {
        ITAMP2NOER_R::new(((self.bits >> 1) & 1) != 0)
    }
        #[inline(always)]
    pub fn itamp3noer(&self) -> ITAMP3NOER_R {
        ITAMP3NOER_R::new(((self.bits >> 2) & 1) != 0)
    }
        #[inline(always)]
    pub fn itamp5noer(&self) -> ITAMP5NOER_R {
        ITAMP5NOER_R::new(((self.bits >> 4) & 1) != 0)
    }
        #[inline(always)]
    pub fn itamp8noer(&self) -> ITAMP8NOER_R {
        ITAMP8NOER_R::new(((self.bits >> 7) & 1) != 0)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("CR3")
            .field("itamp1noer", &self.itamp1noer())
            .field("itamp2noer", &self.itamp2noer())
            .field("itamp3noer", &self.itamp3noer())
            .field("itamp5noer", &self.itamp5noer())
            .field("itamp8noer", &self.itamp8noer())
            .finish()
    }
}
impl W {
        #[inline(always)]
    pub fn itamp1noer(&mut self) -> ITAMP1NOER_W<CR3rs> {
        ITAMP1NOER_W::new(self, 0)
    }
        #[inline(always)]
    pub fn itamp2noer(&mut self) -> ITAMP2NOER_W<CR3rs> {
        ITAMP2NOER_W::new(self, 1)
    }
        #[inline(always)]
    pub fn itamp3noer(&mut self) -> ITAMP3NOER_W<CR3rs> {
        ITAMP3NOER_W::new(self, 2)
    }
        #[inline(always)]
    pub fn itamp5noer(&mut self) -> ITAMP5NOER_W<CR3rs> {
        ITAMP5NOER_W::new(self, 4)
    }
        #[inline(always)]
    pub fn itamp8noer(&mut self) -> ITAMP8NOER_W<CR3rs> {
        ITAMP8NOER_W::new(self, 7)
    }
}
pub struct CR3rs;
impl crate::RegisterSpec for CR3rs {
    type Ux = u32;
}
impl crate::Readable for CR3rs {}
impl crate::Writable for CR3rs {
    type Safety = crate::Unsafe;
}
impl crate::Resettable for CR3rs {}