esp32 0.40.1

Peripheral access crate for the ESP32
Documentation
#[doc = "Register `DMMU_TABLE%s` reader"]
pub type R = crate::R<DMMU_TABLE_SPEC>;
#[doc = "Register `DMMU_TABLE%s` writer"]
pub type W = crate::W<DMMU_TABLE_SPEC>;
#[doc = "Field `DMMU_TABLE0` reader - "]
pub type DMMU_TABLE0_R = crate::FieldReader;
#[doc = "Field `DMMU_TABLE0` writer - "]
pub type DMMU_TABLE0_W<'a, REG> = crate::FieldWriter<'a, REG, 7>;
impl R {
    #[doc = "Bits 0:6"]
    #[inline(always)]
    pub fn dmmu_table0(&self) -> DMMU_TABLE0_R {
        DMMU_TABLE0_R::new((self.bits & 0x7f) as u8)
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("DMMU_TABLE")
            .field("dmmu_table0", &self.dmmu_table0())
            .finish()
    }
}
impl W {
    #[doc = "Bits 0:6"]
    #[inline(always)]
    pub fn dmmu_table0(&mut self) -> DMMU_TABLE0_W<'_, DMMU_TABLE_SPEC> {
        DMMU_TABLE0_W::new(self, 0)
    }
}
#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`dmmu_table::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dmmu_table::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DMMU_TABLE_SPEC;
impl crate::RegisterSpec for DMMU_TABLE_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`dmmu_table::R`](R) reader structure"]
impl crate::Readable for DMMU_TABLE_SPEC {}
#[doc = "`write(|w| ..)` method takes [`dmmu_table::W`](W) writer structure"]
impl crate::Writable for DMMU_TABLE_SPEC {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets DMMU_TABLE%s to value 0"]
impl crate::Resettable for DMMU_TABLE_SPEC {}