pub type R = crate::R<SR3rs>;
pub type W = crate::W<SR3rs>;
pub type IRS_R = crate::BitReader;
pub type IRS_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type ILS_R = crate::BitReader;
pub type ILS_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type IFS_R = crate::BitReader;
pub type IFS_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type IREN_R = crate::BitReader;
pub type IREN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type ILEN_R = crate::BitReader;
pub type ILEN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type IFEN_R = crate::BitReader;
pub type IFEN_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type FEMPT_R = crate::BitReader;
impl R {
        #[inline(always)]
    pub fn irs(&self) -> IRS_R {
        IRS_R::new((self.bits & 1) != 0)
    }
        #[inline(always)]
    pub fn ils(&self) -> ILS_R {
        ILS_R::new(((self.bits >> 1) & 1) != 0)
    }
        #[inline(always)]
    pub fn ifs(&self) -> IFS_R {
        IFS_R::new(((self.bits >> 2) & 1) != 0)
    }
        #[inline(always)]
    pub fn iren(&self) -> IREN_R {
        IREN_R::new(((self.bits >> 3) & 1) != 0)
    }
        #[inline(always)]
    pub fn ilen(&self) -> ILEN_R {
        ILEN_R::new(((self.bits >> 4) & 1) != 0)
    }
        #[inline(always)]
    pub fn ifen(&self) -> IFEN_R {
        IFEN_R::new(((self.bits >> 5) & 1) != 0)
    }
        #[inline(always)]
    pub fn fempt(&self) -> FEMPT_R {
        FEMPT_R::new(((self.bits >> 6) & 1) != 0)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("SR3")
            .field("fempt", &self.fempt())
            .field("ifen", &self.ifen())
            .field("ilen", &self.ilen())
            .field("iren", &self.iren())
            .field("ifs", &self.ifs())
            .field("ils", &self.ils())
            .field("irs", &self.irs())
            .finish()
    }
}
impl W {
        #[inline(always)]
    pub fn irs(&mut self) -> IRS_W<SR3rs> {
        IRS_W::new(self, 0)
    }
        #[inline(always)]
    pub fn ils(&mut self) -> ILS_W<SR3rs> {
        ILS_W::new(self, 1)
    }
        #[inline(always)]
    pub fn ifs(&mut self) -> IFS_W<SR3rs> {
        IFS_W::new(self, 2)
    }
        #[inline(always)]
    pub fn iren(&mut self) -> IREN_W<SR3rs> {
        IREN_W::new(self, 3)
    }
        #[inline(always)]
    pub fn ilen(&mut self) -> ILEN_W<SR3rs> {
        ILEN_W::new(self, 4)
    }
        #[inline(always)]
    pub fn ifen(&mut self) -> IFEN_W<SR3rs> {
        IFEN_W::new(self, 5)
    }
}
pub struct SR3rs;
impl crate::RegisterSpec for SR3rs {
    type Ux = u32;
}
impl crate::Readable for SR3rs {}
impl crate::Writable for SR3rs {
    type Safety = crate::Unsafe;
}
impl crate::Resettable for SR3rs {
    const RESET_VALUE: u32 = 0x40;
}