atsams70n21/scn_scb/
actlr.rs

1#[doc = "Register `ACTLR` reader"]
2pub struct R(crate::R<ACTLR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<ACTLR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<ACTLR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<ACTLR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `ACTLR` writer"]
17pub struct W(crate::W<ACTLR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<ACTLR_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<ACTLR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<ACTLR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `DISFOLD` reader - Disables folding of IT instructions"]
38pub struct DISFOLD_R(crate::FieldReader<bool, bool>);
39impl DISFOLD_R {
40    #[inline(always)]
41    pub(crate) fn new(bits: bool) -> Self {
42        DISFOLD_R(crate::FieldReader::new(bits))
43    }
44}
45impl core::ops::Deref for DISFOLD_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 `DISFOLD` writer - Disables folding of IT instructions"]
53pub struct DISFOLD_W<'a> {
54    w: &'a mut W,
55}
56impl<'a> DISFOLD_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 << 2)) | ((value as u32 & 0x01) << 2);
71        self.w
72    }
73}
74#[doc = "Field `FPEXCODIS` reader - Disables FPU exception outputs"]
75pub struct FPEXCODIS_R(crate::FieldReader<bool, bool>);
76impl FPEXCODIS_R {
77    #[inline(always)]
78    pub(crate) fn new(bits: bool) -> Self {
79        FPEXCODIS_R(crate::FieldReader::new(bits))
80    }
81}
82impl core::ops::Deref for FPEXCODIS_R {
83    type Target = crate::FieldReader<bool, bool>;
84    #[inline(always)]
85    fn deref(&self) -> &Self::Target {
86        &self.0
87    }
88}
89#[doc = "Field `FPEXCODIS` writer - Disables FPU exception outputs"]
90pub struct FPEXCODIS_W<'a> {
91    w: &'a mut W,
92}
93impl<'a> FPEXCODIS_W<'a> {
94    #[doc = r"Sets the field bit"]
95    #[inline(always)]
96    pub fn set_bit(self) -> &'a mut W {
97        self.bit(true)
98    }
99    #[doc = r"Clears the field bit"]
100    #[inline(always)]
101    pub fn clear_bit(self) -> &'a mut W {
102        self.bit(false)
103    }
104    #[doc = r"Writes raw bits to the field"]
105    #[inline(always)]
106    pub fn bit(self, value: bool) -> &'a mut W {
107        self.w.bits = (self.w.bits & !(0x01 << 10)) | ((value as u32 & 0x01) << 10);
108        self.w
109    }
110}
111#[doc = "Field `DISRAMODE` reader - Disables dynamic read allocate mode for Write-Back Write-Allocate memory regions"]
112pub struct DISRAMODE_R(crate::FieldReader<bool, bool>);
113impl DISRAMODE_R {
114    #[inline(always)]
115    pub(crate) fn new(bits: bool) -> Self {
116        DISRAMODE_R(crate::FieldReader::new(bits))
117    }
118}
119impl core::ops::Deref for DISRAMODE_R {
120    type Target = crate::FieldReader<bool, bool>;
121    #[inline(always)]
122    fn deref(&self) -> &Self::Target {
123        &self.0
124    }
125}
126#[doc = "Field `DISRAMODE` writer - Disables dynamic read allocate mode for Write-Back Write-Allocate memory regions"]
127pub struct DISRAMODE_W<'a> {
128    w: &'a mut W,
129}
130impl<'a> DISRAMODE_W<'a> {
131    #[doc = r"Sets the field bit"]
132    #[inline(always)]
133    pub fn set_bit(self) -> &'a mut W {
134        self.bit(true)
135    }
136    #[doc = r"Clears the field bit"]
137    #[inline(always)]
138    pub fn clear_bit(self) -> &'a mut W {
139        self.bit(false)
140    }
141    #[doc = r"Writes raw bits to the field"]
142    #[inline(always)]
143    pub fn bit(self, value: bool) -> &'a mut W {
144        self.w.bits = (self.w.bits & !(0x01 << 11)) | ((value as u32 & 0x01) << 11);
145        self.w
146    }
147}
148#[doc = "Field `DISITMATBFLUSH` reader - Disables ITM and DWT ATB flush"]
149pub struct DISITMATBFLUSH_R(crate::FieldReader<bool, bool>);
150impl DISITMATBFLUSH_R {
151    #[inline(always)]
152    pub(crate) fn new(bits: bool) -> Self {
153        DISITMATBFLUSH_R(crate::FieldReader::new(bits))
154    }
155}
156impl core::ops::Deref for DISITMATBFLUSH_R {
157    type Target = crate::FieldReader<bool, bool>;
158    #[inline(always)]
159    fn deref(&self) -> &Self::Target {
160        &self.0
161    }
162}
163#[doc = "Field `DISITMATBFLUSH` writer - Disables ITM and DWT ATB flush"]
164pub struct DISITMATBFLUSH_W<'a> {
165    w: &'a mut W,
166}
167impl<'a> DISITMATBFLUSH_W<'a> {
168    #[doc = r"Sets the field bit"]
169    #[inline(always)]
170    pub fn set_bit(self) -> &'a mut W {
171        self.bit(true)
172    }
173    #[doc = r"Clears the field bit"]
174    #[inline(always)]
175    pub fn clear_bit(self) -> &'a mut W {
176        self.bit(false)
177    }
178    #[doc = r"Writes raw bits to the field"]
179    #[inline(always)]
180    pub fn bit(self, value: bool) -> &'a mut W {
181        self.w.bits = (self.w.bits & !(0x01 << 12)) | ((value as u32 & 0x01) << 12);
182        self.w
183    }
184}
185#[doc = "Field `DISBTACREAD` reader - "]
186pub struct DISBTACREAD_R(crate::FieldReader<bool, bool>);
187impl DISBTACREAD_R {
188    #[inline(always)]
189    pub(crate) fn new(bits: bool) -> Self {
190        DISBTACREAD_R(crate::FieldReader::new(bits))
191    }
192}
193impl core::ops::Deref for DISBTACREAD_R {
194    type Target = crate::FieldReader<bool, bool>;
195    #[inline(always)]
196    fn deref(&self) -> &Self::Target {
197        &self.0
198    }
199}
200#[doc = "Field `DISBTACREAD` writer - "]
201pub struct DISBTACREAD_W<'a> {
202    w: &'a mut W,
203}
204impl<'a> DISBTACREAD_W<'a> {
205    #[doc = r"Sets the field bit"]
206    #[inline(always)]
207    pub fn set_bit(self) -> &'a mut W {
208        self.bit(true)
209    }
210    #[doc = r"Clears the field bit"]
211    #[inline(always)]
212    pub fn clear_bit(self) -> &'a mut W {
213        self.bit(false)
214    }
215    #[doc = r"Writes raw bits to the field"]
216    #[inline(always)]
217    pub fn bit(self, value: bool) -> &'a mut W {
218        self.w.bits = (self.w.bits & !(0x01 << 13)) | ((value as u32 & 0x01) << 13);
219        self.w
220    }
221}
222#[doc = "Field `DISBTACALLOC` reader - "]
223pub struct DISBTACALLOC_R(crate::FieldReader<bool, bool>);
224impl DISBTACALLOC_R {
225    #[inline(always)]
226    pub(crate) fn new(bits: bool) -> Self {
227        DISBTACALLOC_R(crate::FieldReader::new(bits))
228    }
229}
230impl core::ops::Deref for DISBTACALLOC_R {
231    type Target = crate::FieldReader<bool, bool>;
232    #[inline(always)]
233    fn deref(&self) -> &Self::Target {
234        &self.0
235    }
236}
237#[doc = "Field `DISBTACALLOC` writer - "]
238pub struct DISBTACALLOC_W<'a> {
239    w: &'a mut W,
240}
241impl<'a> DISBTACALLOC_W<'a> {
242    #[doc = r"Sets the field bit"]
243    #[inline(always)]
244    pub fn set_bit(self) -> &'a mut W {
245        self.bit(true)
246    }
247    #[doc = r"Clears the field bit"]
248    #[inline(always)]
249    pub fn clear_bit(self) -> &'a mut W {
250        self.bit(false)
251    }
252    #[doc = r"Writes raw bits to the field"]
253    #[inline(always)]
254    pub fn bit(self, value: bool) -> &'a mut W {
255        self.w.bits = (self.w.bits & !(0x01 << 14)) | ((value as u32 & 0x01) << 14);
256        self.w
257    }
258}
259#[doc = "Field `DISCRITAXIRUR` reader - "]
260pub struct DISCRITAXIRUR_R(crate::FieldReader<bool, bool>);
261impl DISCRITAXIRUR_R {
262    #[inline(always)]
263    pub(crate) fn new(bits: bool) -> Self {
264        DISCRITAXIRUR_R(crate::FieldReader::new(bits))
265    }
266}
267impl core::ops::Deref for DISCRITAXIRUR_R {
268    type Target = crate::FieldReader<bool, bool>;
269    #[inline(always)]
270    fn deref(&self) -> &Self::Target {
271        &self.0
272    }
273}
274#[doc = "Field `DISCRITAXIRUR` writer - "]
275pub struct DISCRITAXIRUR_W<'a> {
276    w: &'a mut W,
277}
278impl<'a> DISCRITAXIRUR_W<'a> {
279    #[doc = r"Sets the field bit"]
280    #[inline(always)]
281    pub fn set_bit(self) -> &'a mut W {
282        self.bit(true)
283    }
284    #[doc = r"Clears the field bit"]
285    #[inline(always)]
286    pub fn clear_bit(self) -> &'a mut W {
287        self.bit(false)
288    }
289    #[doc = r"Writes raw bits to the field"]
290    #[inline(always)]
291    pub fn bit(self, value: bool) -> &'a mut W {
292        self.w.bits = (self.w.bits & !(0x01 << 15)) | ((value as u32 & 0x01) << 15);
293        self.w
294    }
295}
296#[doc = "Field `DISDI` reader - "]
297pub struct DISDI_R(crate::FieldReader<u8, u8>);
298impl DISDI_R {
299    #[inline(always)]
300    pub(crate) fn new(bits: u8) -> Self {
301        DISDI_R(crate::FieldReader::new(bits))
302    }
303}
304impl core::ops::Deref for DISDI_R {
305    type Target = crate::FieldReader<u8, u8>;
306    #[inline(always)]
307    fn deref(&self) -> &Self::Target {
308        &self.0
309    }
310}
311#[doc = "Field `DISDI` writer - "]
312pub struct DISDI_W<'a> {
313    w: &'a mut W,
314}
315impl<'a> DISDI_W<'a> {
316    #[doc = r"Writes raw bits to the field"]
317    #[inline(always)]
318    pub unsafe fn bits(self, value: u8) -> &'a mut W {
319        self.w.bits = (self.w.bits & !(0x1f << 16)) | ((value as u32 & 0x1f) << 16);
320        self.w
321    }
322}
323#[doc = "Field `DISISSCH1` reader - "]
324pub struct DISISSCH1_R(crate::FieldReader<u8, u8>);
325impl DISISSCH1_R {
326    #[inline(always)]
327    pub(crate) fn new(bits: u8) -> Self {
328        DISISSCH1_R(crate::FieldReader::new(bits))
329    }
330}
331impl core::ops::Deref for DISISSCH1_R {
332    type Target = crate::FieldReader<u8, u8>;
333    #[inline(always)]
334    fn deref(&self) -> &Self::Target {
335        &self.0
336    }
337}
338#[doc = "Field `DISISSCH1` writer - "]
339pub struct DISISSCH1_W<'a> {
340    w: &'a mut W,
341}
342impl<'a> DISISSCH1_W<'a> {
343    #[doc = r"Writes raw bits to the field"]
344    #[inline(always)]
345    pub unsafe fn bits(self, value: u8) -> &'a mut W {
346        self.w.bits = (self.w.bits & !(0x1f << 21)) | ((value as u32 & 0x1f) << 21);
347        self.w
348    }
349}
350#[doc = "Field `DISDYNADD` reader - Disables dynamic allocation of ADD and SUB instructions"]
351pub struct DISDYNADD_R(crate::FieldReader<bool, bool>);
352impl DISDYNADD_R {
353    #[inline(always)]
354    pub(crate) fn new(bits: bool) -> Self {
355        DISDYNADD_R(crate::FieldReader::new(bits))
356    }
357}
358impl core::ops::Deref for DISDYNADD_R {
359    type Target = crate::FieldReader<bool, bool>;
360    #[inline(always)]
361    fn deref(&self) -> &Self::Target {
362        &self.0
363    }
364}
365#[doc = "Field `DISDYNADD` writer - Disables dynamic allocation of ADD and SUB instructions"]
366pub struct DISDYNADD_W<'a> {
367    w: &'a mut W,
368}
369impl<'a> DISDYNADD_W<'a> {
370    #[doc = r"Sets the field bit"]
371    #[inline(always)]
372    pub fn set_bit(self) -> &'a mut W {
373        self.bit(true)
374    }
375    #[doc = r"Clears the field bit"]
376    #[inline(always)]
377    pub fn clear_bit(self) -> &'a mut W {
378        self.bit(false)
379    }
380    #[doc = r"Writes raw bits to the field"]
381    #[inline(always)]
382    pub fn bit(self, value: bool) -> &'a mut W {
383        self.w.bits = (self.w.bits & !(0x01 << 26)) | ((value as u32 & 0x01) << 26);
384        self.w
385    }
386}
387#[doc = "Field `DISCRITAXIRUW` reader - Disable critical AXI read-under-write"]
388pub struct DISCRITAXIRUW_R(crate::FieldReader<bool, bool>);
389impl DISCRITAXIRUW_R {
390    #[inline(always)]
391    pub(crate) fn new(bits: bool) -> Self {
392        DISCRITAXIRUW_R(crate::FieldReader::new(bits))
393    }
394}
395impl core::ops::Deref for DISCRITAXIRUW_R {
396    type Target = crate::FieldReader<bool, bool>;
397    #[inline(always)]
398    fn deref(&self) -> &Self::Target {
399        &self.0
400    }
401}
402#[doc = "Field `DISCRITAXIRUW` writer - Disable critical AXI read-under-write"]
403pub struct DISCRITAXIRUW_W<'a> {
404    w: &'a mut W,
405}
406impl<'a> DISCRITAXIRUW_W<'a> {
407    #[doc = r"Sets the field bit"]
408    #[inline(always)]
409    pub fn set_bit(self) -> &'a mut W {
410        self.bit(true)
411    }
412    #[doc = r"Clears the field bit"]
413    #[inline(always)]
414    pub fn clear_bit(self) -> &'a mut W {
415        self.bit(false)
416    }
417    #[doc = r"Writes raw bits to the field"]
418    #[inline(always)]
419    pub fn bit(self, value: bool) -> &'a mut W {
420        self.w.bits = (self.w.bits & !(0x01 << 27)) | ((value as u32 & 0x01) << 27);
421        self.w
422    }
423}
424#[doc = "Field `DISFPUISSOPT` reader - Disables dynamic allocation of ADD and SUB instructions"]
425pub struct DISFPUISSOPT_R(crate::FieldReader<bool, bool>);
426impl DISFPUISSOPT_R {
427    #[inline(always)]
428    pub(crate) fn new(bits: bool) -> Self {
429        DISFPUISSOPT_R(crate::FieldReader::new(bits))
430    }
431}
432impl core::ops::Deref for DISFPUISSOPT_R {
433    type Target = crate::FieldReader<bool, bool>;
434    #[inline(always)]
435    fn deref(&self) -> &Self::Target {
436        &self.0
437    }
438}
439#[doc = "Field `DISFPUISSOPT` writer - Disables dynamic allocation of ADD and SUB instructions"]
440pub struct DISFPUISSOPT_W<'a> {
441    w: &'a mut W,
442}
443impl<'a> DISFPUISSOPT_W<'a> {
444    #[doc = r"Sets the field bit"]
445    #[inline(always)]
446    pub fn set_bit(self) -> &'a mut W {
447        self.bit(true)
448    }
449    #[doc = r"Clears the field bit"]
450    #[inline(always)]
451    pub fn clear_bit(self) -> &'a mut W {
452        self.bit(false)
453    }
454    #[doc = r"Writes raw bits to the field"]
455    #[inline(always)]
456    pub fn bit(self, value: bool) -> &'a mut W {
457        self.w.bits = (self.w.bits & !(0x01 << 28)) | ((value as u32 & 0x01) << 28);
458        self.w
459    }
460}
461impl R {
462    #[doc = "Bit 2 - Disables folding of IT instructions"]
463    #[inline(always)]
464    pub fn disfold(&self) -> DISFOLD_R {
465        DISFOLD_R::new(((self.bits >> 2) & 0x01) != 0)
466    }
467    #[doc = "Bit 10 - Disables FPU exception outputs"]
468    #[inline(always)]
469    pub fn fpexcodis(&self) -> FPEXCODIS_R {
470        FPEXCODIS_R::new(((self.bits >> 10) & 0x01) != 0)
471    }
472    #[doc = "Bit 11 - Disables dynamic read allocate mode for Write-Back Write-Allocate memory regions"]
473    #[inline(always)]
474    pub fn disramode(&self) -> DISRAMODE_R {
475        DISRAMODE_R::new(((self.bits >> 11) & 0x01) != 0)
476    }
477    #[doc = "Bit 12 - Disables ITM and DWT ATB flush"]
478    #[inline(always)]
479    pub fn disitmatbflush(&self) -> DISITMATBFLUSH_R {
480        DISITMATBFLUSH_R::new(((self.bits >> 12) & 0x01) != 0)
481    }
482    #[doc = "Bit 13"]
483    #[inline(always)]
484    pub fn disbtacread(&self) -> DISBTACREAD_R {
485        DISBTACREAD_R::new(((self.bits >> 13) & 0x01) != 0)
486    }
487    #[doc = "Bit 14"]
488    #[inline(always)]
489    pub fn disbtacalloc(&self) -> DISBTACALLOC_R {
490        DISBTACALLOC_R::new(((self.bits >> 14) & 0x01) != 0)
491    }
492    #[doc = "Bit 15"]
493    #[inline(always)]
494    pub fn discritaxirur(&self) -> DISCRITAXIRUR_R {
495        DISCRITAXIRUR_R::new(((self.bits >> 15) & 0x01) != 0)
496    }
497    #[doc = "Bits 16:20"]
498    #[inline(always)]
499    pub fn disdi(&self) -> DISDI_R {
500        DISDI_R::new(((self.bits >> 16) & 0x1f) as u8)
501    }
502    #[doc = "Bits 21:25"]
503    #[inline(always)]
504    pub fn disissch1(&self) -> DISISSCH1_R {
505        DISISSCH1_R::new(((self.bits >> 21) & 0x1f) as u8)
506    }
507    #[doc = "Bit 26 - Disables dynamic allocation of ADD and SUB instructions"]
508    #[inline(always)]
509    pub fn disdynadd(&self) -> DISDYNADD_R {
510        DISDYNADD_R::new(((self.bits >> 26) & 0x01) != 0)
511    }
512    #[doc = "Bit 27 - Disable critical AXI read-under-write"]
513    #[inline(always)]
514    pub fn discritaxiruw(&self) -> DISCRITAXIRUW_R {
515        DISCRITAXIRUW_R::new(((self.bits >> 27) & 0x01) != 0)
516    }
517    #[doc = "Bit 28 - Disables dynamic allocation of ADD and SUB instructions"]
518    #[inline(always)]
519    pub fn disfpuissopt(&self) -> DISFPUISSOPT_R {
520        DISFPUISSOPT_R::new(((self.bits >> 28) & 0x01) != 0)
521    }
522}
523impl W {
524    #[doc = "Bit 2 - Disables folding of IT instructions"]
525    #[inline(always)]
526    pub fn disfold(&mut self) -> DISFOLD_W {
527        DISFOLD_W { w: self }
528    }
529    #[doc = "Bit 10 - Disables FPU exception outputs"]
530    #[inline(always)]
531    pub fn fpexcodis(&mut self) -> FPEXCODIS_W {
532        FPEXCODIS_W { w: self }
533    }
534    #[doc = "Bit 11 - Disables dynamic read allocate mode for Write-Back Write-Allocate memory regions"]
535    #[inline(always)]
536    pub fn disramode(&mut self) -> DISRAMODE_W {
537        DISRAMODE_W { w: self }
538    }
539    #[doc = "Bit 12 - Disables ITM and DWT ATB flush"]
540    #[inline(always)]
541    pub fn disitmatbflush(&mut self) -> DISITMATBFLUSH_W {
542        DISITMATBFLUSH_W { w: self }
543    }
544    #[doc = "Bit 13"]
545    #[inline(always)]
546    pub fn disbtacread(&mut self) -> DISBTACREAD_W {
547        DISBTACREAD_W { w: self }
548    }
549    #[doc = "Bit 14"]
550    #[inline(always)]
551    pub fn disbtacalloc(&mut self) -> DISBTACALLOC_W {
552        DISBTACALLOC_W { w: self }
553    }
554    #[doc = "Bit 15"]
555    #[inline(always)]
556    pub fn discritaxirur(&mut self) -> DISCRITAXIRUR_W {
557        DISCRITAXIRUR_W { w: self }
558    }
559    #[doc = "Bits 16:20"]
560    #[inline(always)]
561    pub fn disdi(&mut self) -> DISDI_W {
562        DISDI_W { w: self }
563    }
564    #[doc = "Bits 21:25"]
565    #[inline(always)]
566    pub fn disissch1(&mut self) -> DISISSCH1_W {
567        DISISSCH1_W { w: self }
568    }
569    #[doc = "Bit 26 - Disables dynamic allocation of ADD and SUB instructions"]
570    #[inline(always)]
571    pub fn disdynadd(&mut self) -> DISDYNADD_W {
572        DISDYNADD_W { w: self }
573    }
574    #[doc = "Bit 27 - Disable critical AXI read-under-write"]
575    #[inline(always)]
576    pub fn discritaxiruw(&mut self) -> DISCRITAXIRUW_W {
577        DISCRITAXIRUW_W { w: self }
578    }
579    #[doc = "Bit 28 - Disables dynamic allocation of ADD and SUB instructions"]
580    #[inline(always)]
581    pub fn disfpuissopt(&mut self) -> DISFPUISSOPT_W {
582        DISFPUISSOPT_W { w: self }
583    }
584    #[doc = "Writes raw bits to the register."]
585    #[inline(always)]
586    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
587        self.0.bits(bits);
588        self
589    }
590}
591#[doc = "Auxiliary Control Register\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 [actlr](index.html) module"]
592pub struct ACTLR_SPEC;
593impl crate::RegisterSpec for ACTLR_SPEC {
594    type Ux = u32;
595}
596#[doc = "`read()` method returns [actlr::R](R) reader structure"]
597impl crate::Readable for ACTLR_SPEC {
598    type Reader = R;
599}
600#[doc = "`write(|w| ..)` method takes [actlr::W](W) writer structure"]
601impl crate::Writable for ACTLR_SPEC {
602    type Writer = W;
603}
604#[doc = "`reset()` method sets ACTLR to value 0"]
605impl crate::Resettable for ACTLR_SPEC {
606    #[inline(always)]
607    fn reset_value() -> Self::Ux {
608        0
609    }
610}