esp32s3/extmem/
dcache_autoload_sct0_addr.rs

1#[doc = "Register `DCACHE_AUTOLOAD_SCT0_ADDR` reader"]
2pub type R = crate::R<DCACHE_AUTOLOAD_SCT0_ADDR_SPEC>;
3#[doc = "Register `DCACHE_AUTOLOAD_SCT0_ADDR` writer"]
4pub type W = crate::W<DCACHE_AUTOLOAD_SCT0_ADDR_SPEC>;
5#[doc = "Field `DCACHE_AUTOLOAD_SCT0_ADDR` reader - The bits are used to configure the start virtual address of the first section for autoload operation. It should be combined with dcache_autoload_sct0_ena."]
6pub type DCACHE_AUTOLOAD_SCT0_ADDR_R = crate::FieldReader<u32>;
7#[doc = "Field `DCACHE_AUTOLOAD_SCT0_ADDR` writer - The bits are used to configure the start virtual address of the first section for autoload operation. It should be combined with dcache_autoload_sct0_ena."]
8pub type DCACHE_AUTOLOAD_SCT0_ADDR_W<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
9impl R {
10    #[doc = "Bits 0:31 - The bits are used to configure the start virtual address of the first section for autoload operation. It should be combined with dcache_autoload_sct0_ena."]
11    #[inline(always)]
12    pub fn dcache_autoload_sct0_addr(&self) -> DCACHE_AUTOLOAD_SCT0_ADDR_R {
13        DCACHE_AUTOLOAD_SCT0_ADDR_R::new(self.bits)
14    }
15}
16#[cfg(feature = "impl-register-debug")]
17impl core::fmt::Debug for R {
18    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
19        f.debug_struct("DCACHE_AUTOLOAD_SCT0_ADDR")
20            .field(
21                "dcache_autoload_sct0_addr",
22                &self.dcache_autoload_sct0_addr(),
23            )
24            .finish()
25    }
26}
27impl W {
28    #[doc = "Bits 0:31 - The bits are used to configure the start virtual address of the first section for autoload operation. It should be combined with dcache_autoload_sct0_ena."]
29    #[inline(always)]
30    pub fn dcache_autoload_sct0_addr(
31        &mut self,
32    ) -> DCACHE_AUTOLOAD_SCT0_ADDR_W<DCACHE_AUTOLOAD_SCT0_ADDR_SPEC> {
33        DCACHE_AUTOLOAD_SCT0_ADDR_W::new(self, 0)
34    }
35}
36#[doc = "******* Description ***********\n\nYou can [`read`](crate::Reg::read) this register and get [`dcache_autoload_sct0_addr::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dcache_autoload_sct0_addr::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
37pub struct DCACHE_AUTOLOAD_SCT0_ADDR_SPEC;
38impl crate::RegisterSpec for DCACHE_AUTOLOAD_SCT0_ADDR_SPEC {
39    type Ux = u32;
40}
41#[doc = "`read()` method returns [`dcache_autoload_sct0_addr::R`](R) reader structure"]
42impl crate::Readable for DCACHE_AUTOLOAD_SCT0_ADDR_SPEC {}
43#[doc = "`write(|w| ..)` method takes [`dcache_autoload_sct0_addr::W`](W) writer structure"]
44impl crate::Writable for DCACHE_AUTOLOAD_SCT0_ADDR_SPEC {
45    type Safety = crate::Unsafe;
46    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
47    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
48}
49#[doc = "`reset()` method sets DCACHE_AUTOLOAD_SCT0_ADDR to value 0"]
50impl crate::Resettable for DCACHE_AUTOLOAD_SCT0_ADDR_SPEC {
51    const RESET_VALUE: u32 = 0;
52}