eos_s3/ext_regs_ffe/
sm1_runtime_addr_ctrl.rs1#[doc = "Register `SM1_RUNTIME_ADDR_CTRL` reader"]
2pub struct R(crate::R<SM1_RUNTIME_ADDR_CTRL_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<SM1_RUNTIME_ADDR_CTRL_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<SM1_RUNTIME_ADDR_CTRL_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<SM1_RUNTIME_ADDR_CTRL_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `SM1_RUNTIME_ADDR_CTRL` writer"]
17pub struct W(crate::W<SM1_RUNTIME_ADDR_CTRL_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<SM1_RUNTIME_ADDR_CTRL_SPEC>;
20 #[inline(always)]
21 fn deref(&self) -> &Self::Target {
22 &self.0
23 }
24}
25impl core::ops::DerefMut for W {
26 #[inline(always)]
27 fn deref_mut(&mut self) -> &mut Self::Target {
28 &mut self.0
29 }
30}
31impl From<crate::W<SM1_RUNTIME_ADDR_CTRL_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<SM1_RUNTIME_ADDR_CTRL_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `SM1_RUNTIME_ADDR_CTRL` reader - Write a '1' to Toggle signal used to signal when a new value has been written"]
38pub struct SM1_RUNTIME_ADDR_CTRL_R(crate::FieldReader<bool, bool>);
39impl SM1_RUNTIME_ADDR_CTRL_R {
40 #[inline(always)]
41 pub(crate) fn new(bits: bool) -> Self {
42 SM1_RUNTIME_ADDR_CTRL_R(crate::FieldReader::new(bits))
43 }
44}
45impl core::ops::Deref for SM1_RUNTIME_ADDR_CTRL_R {
46 type Target = crate::FieldReader<bool, bool>;
47 #[inline(always)]
48 fn deref(&self) -> &Self::Target {
49 &self.0
50 }
51}
52#[doc = "Field `SM1_RUNTIME_ADDR_CTRL` writer - Write a '1' to Toggle signal used to signal when a new value has been written"]
53pub struct SM1_RUNTIME_ADDR_CTRL_W<'a> {
54 w: &'a mut W,
55}
56impl<'a> SM1_RUNTIME_ADDR_CTRL_W<'a> {
57 #[doc = r"Sets the field bit"]
58 #[inline(always)]
59 pub fn set_bit(self) -> &'a mut W {
60 self.bit(true)
61 }
62 #[doc = r"Clears the field bit"]
63 #[inline(always)]
64 pub fn clear_bit(self) -> &'a mut W {
65 self.bit(false)
66 }
67 #[doc = r"Writes raw bits to the field"]
68 #[inline(always)]
69 pub fn bit(self, value: bool) -> &'a mut W {
70 self.w.bits = (self.w.bits & !0x01) | (value as u32 & 0x01);
71 self.w
72 }
73}
74impl R {
75 #[doc = "Bit 0 - Write a '1' to Toggle signal used to signal when a new value has been written"]
76 #[inline(always)]
77 pub fn sm1_runtime_addr_ctrl(&self) -> SM1_RUNTIME_ADDR_CTRL_R {
78 SM1_RUNTIME_ADDR_CTRL_R::new((self.bits & 0x01) != 0)
79 }
80}
81impl W {
82 #[doc = "Bit 0 - Write a '1' to Toggle signal used to signal when a new value has been written"]
83 #[inline(always)]
84 pub fn sm1_runtime_addr_ctrl(&mut self) -> SM1_RUNTIME_ADDR_CTRL_W {
85 SM1_RUNTIME_ADDR_CTRL_W { w: self }
86 }
87 #[doc = "Writes raw bits to the register."]
88 #[inline(always)]
89 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
90 self.0.bits(bits);
91 self
92 }
93}
94#[doc = "Used to toggle signal used to signal when a new value has been written.\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [sm1_runtime_addr_ctrl](index.html) module"]
95pub struct SM1_RUNTIME_ADDR_CTRL_SPEC;
96impl crate::RegisterSpec for SM1_RUNTIME_ADDR_CTRL_SPEC {
97 type Ux = u32;
98}
99#[doc = "`read()` method returns [sm1_runtime_addr_ctrl::R](R) reader structure"]
100impl crate::Readable for SM1_RUNTIME_ADDR_CTRL_SPEC {
101 type Reader = R;
102}
103#[doc = "`write(|w| ..)` method takes [sm1_runtime_addr_ctrl::W](W) writer structure"]
104impl crate::Writable for SM1_RUNTIME_ADDR_CTRL_SPEC {
105 type Writer = W;
106}
107#[doc = "`reset()` method sets SM1_RUNTIME_ADDR_CTRL to value 0"]
108impl crate::Resettable for SM1_RUNTIME_ADDR_CTRL_SPEC {
109 #[inline(always)]
110 fn reset_value() -> Self::Ux {
111 0
112 }
113}