1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - Otp debuger block0 data register1."]
    pub wr_dis: WR_DIS,
    #[doc = "0x04 - Otp debuger block0 data register2."]
    pub blk0_backup1_w1: BLK0_BACKUP1_W1,
    #[doc = "0x08 - Otp debuger block0 data register3."]
    pub blk0_backup1_w2: BLK0_BACKUP1_W2,
    #[doc = "0x0c - Otp debuger block0 data register4."]
    pub blk0_backup1_w3: BLK0_BACKUP1_W3,
    #[doc = "0x10 - Otp debuger block0 data register5."]
    pub blk0_backup1_w4: BLK0_BACKUP1_W4,
    #[doc = "0x14 - Otp debuger block0 data register6."]
    pub blk0_backup1_w5: BLK0_BACKUP1_W5,
    #[doc = "0x18 - Otp debuger block0 data register7."]
    pub blk0_backup2_w1: BLK0_BACKUP2_W1,
    #[doc = "0x1c - Otp debuger block0 data register8."]
    pub blk0_backup2_w2: BLK0_BACKUP2_W2,
    #[doc = "0x20 - Otp debuger block0 data register9."]
    pub blk0_backup2_w3: BLK0_BACKUP2_W3,
    #[doc = "0x24 - Otp debuger block0 data register10."]
    pub blk0_backup2_w4: BLK0_BACKUP2_W4,
    #[doc = "0x28 - Otp debuger block0 data register11."]
    pub blk0_backup2_w5: BLK0_BACKUP2_W5,
    #[doc = "0x2c - Otp debuger block0 data register12."]
    pub blk0_backup3_w1: BLK0_BACKUP3_W1,
    #[doc = "0x30 - Otp debuger block0 data register13."]
    pub blk0_backup3_w2: BLK0_BACKUP3_W2,
    #[doc = "0x34 - Otp debuger block0 data register14."]
    pub blk0_backup3_w3: BLK0_BACKUP3_W3,
    #[doc = "0x38 - Otp debuger block0 data register15."]
    pub blk0_backup3_w4: BLK0_BACKUP3_W4,
    #[doc = "0x3c - Otp debuger block0 data register16."]
    pub blk0_backup3_w5: BLK0_BACKUP3_W5,
    #[doc = "0x40 - Otp debuger block0 data register17."]
    pub blk0_backup4_w1: BLK0_BACKUP4_W1,
    #[doc = "0x44 - Otp debuger block0 data register18."]
    pub blk0_backup4_w2: BLK0_BACKUP4_W2,
    #[doc = "0x48 - Otp debuger block0 data register19."]
    pub blk0_backup4_w3: BLK0_BACKUP4_W3,
    #[doc = "0x4c - Otp debuger block0 data register20."]
    pub blk0_backup4_w4: BLK0_BACKUP4_W4,
    #[doc = "0x50 - Otp debuger block0 data register21."]
    pub blk0_backup4_w5: BLK0_BACKUP4_W5,
    #[doc = "0x54 - Otp debuger block1 data register1."]
    pub blk1_w1: BLK1_W1,
    #[doc = "0x58 - Otp debuger block1 data register2."]
    pub blk1_w2: BLK1_W2,
    #[doc = "0x5c - Otp debuger block1 data register3."]
    pub blk1_w3: BLK1_W3,
    #[doc = "0x60 - Otp debuger block1 data register4."]
    pub blk1_w4: BLK1_W4,
    #[doc = "0x64 - Otp debuger block1 data register5."]
    pub blk1_w5: BLK1_W5,
    #[doc = "0x68 - Otp debuger block1 data register6."]
    pub blk1_w6: BLK1_W6,
    #[doc = "0x6c - Otp debuger block1 data register7."]
    pub blk1_w7: BLK1_W7,
    #[doc = "0x70 - Otp debuger block1 data register8."]
    pub blk1_w8: BLK1_W8,
    #[doc = "0x74 - Otp debuger block1 data register9."]
    pub blk1_w9: BLK1_W9,
    #[doc = "0x78 - Otp debuger block2 data register1."]
    pub blk2_w1: BLK2_W1,
    #[doc = "0x7c - Otp debuger block2 data register2."]
    pub blk2_w2: BLK2_W2,
    #[doc = "0x80 - Otp debuger block2 data register3."]
    pub blk2_w3: BLK2_W3,
    #[doc = "0x84 - Otp debuger block2 data register4."]
    pub blk2_w4: BLK2_W4,
    #[doc = "0x88 - Otp debuger block2 data register5."]
    pub blk2_w5: BLK2_W5,
    #[doc = "0x8c - Otp debuger block2 data register6."]
    pub blk2_w6: BLK2_W6,
    #[doc = "0x90 - Otp debuger block2 data register7."]
    pub blk2_w7: BLK2_W7,
    #[doc = "0x94 - Otp debuger block2 data register8."]
    pub blk2_w8: BLK2_W8,
    #[doc = "0x98 - Otp debuger block2 data register9."]
    pub blk2_w9: BLK2_W9,
    #[doc = "0x9c - Otp debuger block2 data register10."]
    pub blk2_w10: BLK2_W10,
    #[doc = "0xa0 - Otp debuger block2 data register11."]
    pub blk2_w11: BLK2_W11,
    #[doc = "0xa4 - Otp debuger block3 data register1."]
    pub blk3_w1: BLK3_W1,
    #[doc = "0xa8 - Otp debuger block3 data register2."]
    pub blk3_w2: BLK3_W2,
    #[doc = "0xac - Otp debuger block3 data register3."]
    pub blk3_w3: BLK3_W3,
    #[doc = "0xb0 - Otp debuger block3 data register4."]
    pub blk3_w4: BLK3_W4,
    #[doc = "0xb4 - Otp debuger block3 data register5."]
    pub blk3_w5: BLK3_W5,
    #[doc = "0xb8 - Otp debuger block3 data register6."]
    pub blk3_w6: BLK3_W6,
    #[doc = "0xbc - Otp debuger block3 data register7."]
    pub blk3_w7: BLK3_W7,
    #[doc = "0xc0 - Otp debuger block3 data register8."]
    pub blk3_w8: BLK3_W8,
    #[doc = "0xc4 - Otp debuger block3 data register9."]
    pub blk3_w9: BLK3_W9,
    #[doc = "0xc8 - Otp debuger block3 data register10."]
    pub blk3_w10: BLK3_W10,
    #[doc = "0xcc - Otp debuger block3 data register11."]
    pub blk3_w11: BLK3_W11,
    #[doc = "0xd0 - Otp debuger block4 data register1."]
    pub blk4_w1: BLK4_W1,
    #[doc = "0xd4 - Otp debuger block4 data register2."]
    pub blk4_w2: BLK4_W2,
    #[doc = "0xd8 - Otp debuger block4 data register3."]
    pub blk4_w3: BLK4_W3,
    #[doc = "0xdc - Otp debuger block4 data register4."]
    pub blk4_w4: BLK4_W4,
    #[doc = "0xe0 - Otp debuger block4 data register5."]
    pub blk4_w5: BLK4_W5,
    #[doc = "0xe4 - Otp debuger block4 data register6."]
    pub blk4_w6: BLK4_W6,
    #[doc = "0xe8 - Otp debuger block4 data register7."]
    pub blk4_w7: BLK4_W7,
    #[doc = "0xec - Otp debuger block4 data register8."]
    pub blk4_w8: BLK4_W8,
    #[doc = "0xf0 - Otp debuger block4 data register9."]
    pub blk4_w9: BLK4_W9,
    #[doc = "0xf4 - Otp debuger block4 data registe10."]
    pub blk4_w10: BLK4_W10,
    #[doc = "0xf8 - Otp debuger block4 data register11."]
    pub blk4_w11: BLK4_W11,
    #[doc = "0xfc - Otp debuger block5 data register1."]
    pub blk5_w1: BLK5_W1,
    #[doc = "0x100 - Otp debuger block5 data register2."]
    pub blk5_w2: BLK5_W2,
    #[doc = "0x104 - Otp debuger block5 data register3."]
    pub blk5_w3: BLK5_W3,
    #[doc = "0x108 - Otp debuger block5 data register4."]
    pub blk5_w4: BLK5_W4,
    #[doc = "0x10c - Otp debuger block5 data register5."]
    pub blk5_w5: BLK5_W5,
    #[doc = "0x110 - Otp debuger block5 data register6."]
    pub blk5_w6: BLK5_W6,
    #[doc = "0x114 - Otp debuger block5 data register7."]
    pub blk5_w7: BLK5_W7,
    #[doc = "0x118 - Otp debuger block5 data register8."]
    pub blk5_w8: BLK5_W8,
    #[doc = "0x11c - Otp debuger block5 data register9."]
    pub blk5_w9: BLK5_W9,
    #[doc = "0x120 - Otp debuger block5 data register10."]
    pub blk5_w10: BLK5_W10,
    #[doc = "0x124 - Otp debuger block5 data register11."]
    pub blk5_w11: BLK5_W11,
    #[doc = "0x128 - Otp debuger block6 data register1."]
    pub blk6_w1: BLK6_W1,
    #[doc = "0x12c - Otp debuger block6 data register2."]
    pub blk6_w2: BLK6_W2,
    #[doc = "0x130 - Otp debuger block6 data register3."]
    pub blk6_w3: BLK6_W3,
    #[doc = "0x134 - Otp debuger block6 data register4."]
    pub blk6_w4: BLK6_W4,
    #[doc = "0x138 - Otp debuger block6 data register5."]
    pub blk6_w5: BLK6_W5,
    #[doc = "0x13c - Otp debuger block6 data register6."]
    pub blk6_w6: BLK6_W6,
    #[doc = "0x140 - Otp debuger block6 data register7."]
    pub blk6_w7: BLK6_W7,
    #[doc = "0x144 - Otp debuger block6 data register8."]
    pub blk6_w8: BLK6_W8,
    #[doc = "0x148 - Otp debuger block6 data register9."]
    pub blk6_w9: BLK6_W9,
    #[doc = "0x14c - Otp debuger block6 data register10."]
    pub blk6_w10: BLK6_W10,
    #[doc = "0x150 - Otp debuger block6 data register11."]
    pub blk6_w11: BLK6_W11,
    #[doc = "0x154 - Otp debuger block7 data register1."]
    pub blk7_w1: BLK7_W1,
    #[doc = "0x158 - Otp debuger block7 data register2."]
    pub blk7_w2: BLK7_W2,
    #[doc = "0x15c - Otp debuger block7 data register3."]
    pub blk7_w3: BLK7_W3,
    #[doc = "0x160 - Otp debuger block7 data register4."]
    pub blk7_w4: BLK7_W4,
    #[doc = "0x164 - Otp debuger block7 data register5."]
    pub blk7_w5: BLK7_W5,
    #[doc = "0x168 - Otp debuger block7 data register6."]
    pub blk7_w6: BLK7_W6,
    #[doc = "0x16c - Otp debuger block7 data register7."]
    pub blk7_w7: BLK7_W7,
    #[doc = "0x170 - Otp debuger block7 data register8."]
    pub blk7_w8: BLK7_W8,
    #[doc = "0x174 - Otp debuger block7 data register9."]
    pub blk7_w9: BLK7_W9,
    #[doc = "0x178 - Otp debuger block7 data register10."]
    pub blk7_w10: BLK7_W10,
    #[doc = "0x17c - Otp debuger block7 data register11."]
    pub blk7_w11: BLK7_W11,
    #[doc = "0x180 - Otp debuger block8 data register1."]
    pub blk8_w1: BLK8_W1,
    #[doc = "0x184 - Otp debuger block8 data register2."]
    pub blk8_w2: BLK8_W2,
    #[doc = "0x188 - Otp debuger block8 data register3."]
    pub blk8_w3: BLK8_W3,
    #[doc = "0x18c - Otp debuger block8 data register4."]
    pub blk8_w4: BLK8_W4,
    #[doc = "0x190 - Otp debuger block8 data register5."]
    pub blk8_w5: BLK8_W5,
    #[doc = "0x194 - Otp debuger block8 data register6."]
    pub blk8_w6: BLK8_W6,
    #[doc = "0x198 - Otp debuger block8 data register7."]
    pub blk8_w7: BLK8_W7,
    #[doc = "0x19c - Otp debuger block8 data register8."]
    pub blk8_w8: BLK8_W8,
    #[doc = "0x1a0 - Otp debuger block8 data register9."]
    pub blk8_w9: BLK8_W9,
    #[doc = "0x1a4 - Otp debuger block8 data register10."]
    pub blk8_w10: BLK8_W10,
    #[doc = "0x1a8 - Otp debuger block8 data register11."]
    pub blk8_w11: BLK8_W11,
    #[doc = "0x1ac - Otp debuger block9 data register1."]
    pub blk9_w1: BLK9_W1,
    #[doc = "0x1b0 - Otp debuger block9 data register2."]
    pub blk9_w2: BLK9_W2,
    #[doc = "0x1b4 - Otp debuger block9 data register3."]
    pub blk9_w3: BLK9_W3,
    #[doc = "0x1b8 - Otp debuger block9 data register4."]
    pub blk9_w4: BLK9_W4,
    #[doc = "0x1bc - Otp debuger block9 data register5."]
    pub blk9_w5: BLK9_W5,
    #[doc = "0x1c0 - Otp debuger block9 data register6."]
    pub blk9_w6: BLK9_W6,
    #[doc = "0x1c4 - Otp debuger block9 data register7."]
    pub blk9_w7: BLK9_W7,
    #[doc = "0x1c8 - Otp debuger block9 data register8."]
    pub blk9_w8: BLK9_W8,
    #[doc = "0x1cc - Otp debuger block9 data register9."]
    pub blk9_w9: BLK9_W9,
    #[doc = "0x1d0 - Otp debuger block9 data register10."]
    pub blk9_w10: BLK9_W10,
    #[doc = "0x1d4 - Otp debuger block9 data register11."]
    pub blk9_w11: BLK9_W11,
    #[doc = "0x1d8 - Otp debuger block10 data register1."]
    pub blk10_w1: BLK10_W1,
    #[doc = "0x1dc - Otp debuger block10 data register2."]
    pub blk10_w2: BLK10_W2,
    #[doc = "0x1e0 - Otp debuger block10 data register3."]
    pub blk10_w3: BLK10_W3,
    #[doc = "0x1e4 - Otp debuger block10 data register4."]
    pub blk10_w4: BLK10_W4,
    #[doc = "0x1e8 - Otp debuger block10 data register5."]
    pub blk10_w5: BLK10_W5,
    #[doc = "0x1ec - Otp debuger block10 data register6."]
    pub blk10_w6: BLK10_W6,
    #[doc = "0x1f0 - Otp debuger block10 data register7."]
    pub blk10_w7: BLK10_W7,
    #[doc = "0x1f4 - Otp debuger block10 data register8."]
    pub blk10_w8: BLK10_W8,
    #[doc = "0x1f8 - Otp debuger block10 data register9."]
    pub blk10_w9: BLK10_W9,
    #[doc = "0x1fc - Otp debuger block10 data register10."]
    pub blk10_w10: BLK10_W10,
    #[doc = "0x200 - Otp debuger block10 data register11."]
    pub blk10_w11: BLK10_W11,
    #[doc = "0x204 - Otp debuger clk_en configuration register."]
    pub clk: CLK,
    #[doc = "0x208 - Otp_debuger apb2otp enable configuration register."]
    pub apb2otp_en: APB2OTP_EN,
    #[doc = "0x20c - eFuse version register."]
    pub date: DATE,
}
#[doc = "WR_DIS (r) register accessor: an alias for `Reg<WR_DIS_SPEC>`"]
pub type WR_DIS = crate::Reg<wr_dis::WR_DIS_SPEC>;
#[doc = "Otp debuger block0 data register1."]
pub mod wr_dis;
#[doc = "BLK0_BACKUP1_W1 (r) register accessor: an alias for `Reg<BLK0_BACKUP1_W1_SPEC>`"]
pub type BLK0_BACKUP1_W1 = crate::Reg<blk0_backup1_w1::BLK0_BACKUP1_W1_SPEC>;
#[doc = "Otp debuger block0 data register2."]
pub mod blk0_backup1_w1;
#[doc = "BLK0_BACKUP1_W2 (r) register accessor: an alias for `Reg<BLK0_BACKUP1_W2_SPEC>`"]
pub type BLK0_BACKUP1_W2 = crate::Reg<blk0_backup1_w2::BLK0_BACKUP1_W2_SPEC>;
#[doc = "Otp debuger block0 data register3."]
pub mod blk0_backup1_w2;
#[doc = "BLK0_BACKUP1_W3 (r) register accessor: an alias for `Reg<BLK0_BACKUP1_W3_SPEC>`"]
pub type BLK0_BACKUP1_W3 = crate::Reg<blk0_backup1_w3::BLK0_BACKUP1_W3_SPEC>;
#[doc = "Otp debuger block0 data register4."]
pub mod blk0_backup1_w3;
#[doc = "BLK0_BACKUP1_W4 (r) register accessor: an alias for `Reg<BLK0_BACKUP1_W4_SPEC>`"]
pub type BLK0_BACKUP1_W4 = crate::Reg<blk0_backup1_w4::BLK0_BACKUP1_W4_SPEC>;
#[doc = "Otp debuger block0 data register5."]
pub mod blk0_backup1_w4;
#[doc = "BLK0_BACKUP1_W5 (r) register accessor: an alias for `Reg<BLK0_BACKUP1_W5_SPEC>`"]
pub type BLK0_BACKUP1_W5 = crate::Reg<blk0_backup1_w5::BLK0_BACKUP1_W5_SPEC>;
#[doc = "Otp debuger block0 data register6."]
pub mod blk0_backup1_w5;
#[doc = "BLK0_BACKUP2_W1 (r) register accessor: an alias for `Reg<BLK0_BACKUP2_W1_SPEC>`"]
pub type BLK0_BACKUP2_W1 = crate::Reg<blk0_backup2_w1::BLK0_BACKUP2_W1_SPEC>;
#[doc = "Otp debuger block0 data register7."]
pub mod blk0_backup2_w1;
#[doc = "BLK0_BACKUP2_W2 (r) register accessor: an alias for `Reg<BLK0_BACKUP2_W2_SPEC>`"]
pub type BLK0_BACKUP2_W2 = crate::Reg<blk0_backup2_w2::BLK0_BACKUP2_W2_SPEC>;
#[doc = "Otp debuger block0 data register8."]
pub mod blk0_backup2_w2;
#[doc = "BLK0_BACKUP2_W3 (r) register accessor: an alias for `Reg<BLK0_BACKUP2_W3_SPEC>`"]
pub type BLK0_BACKUP2_W3 = crate::Reg<blk0_backup2_w3::BLK0_BACKUP2_W3_SPEC>;
#[doc = "Otp debuger block0 data register9."]
pub mod blk0_backup2_w3;
#[doc = "BLK0_BACKUP2_W4 (r) register accessor: an alias for `Reg<BLK0_BACKUP2_W4_SPEC>`"]
pub type BLK0_BACKUP2_W4 = crate::Reg<blk0_backup2_w4::BLK0_BACKUP2_W4_SPEC>;
#[doc = "Otp debuger block0 data register10."]
pub mod blk0_backup2_w4;
#[doc = "BLK0_BACKUP2_W5 (r) register accessor: an alias for `Reg<BLK0_BACKUP2_W5_SPEC>`"]
pub type BLK0_BACKUP2_W5 = crate::Reg<blk0_backup2_w5::BLK0_BACKUP2_W5_SPEC>;
#[doc = "Otp debuger block0 data register11."]
pub mod blk0_backup2_w5;
#[doc = "BLK0_BACKUP3_W1 (r) register accessor: an alias for `Reg<BLK0_BACKUP3_W1_SPEC>`"]
pub type BLK0_BACKUP3_W1 = crate::Reg<blk0_backup3_w1::BLK0_BACKUP3_W1_SPEC>;
#[doc = "Otp debuger block0 data register12."]
pub mod blk0_backup3_w1;
#[doc = "BLK0_BACKUP3_W2 (r) register accessor: an alias for `Reg<BLK0_BACKUP3_W2_SPEC>`"]
pub type BLK0_BACKUP3_W2 = crate::Reg<blk0_backup3_w2::BLK0_BACKUP3_W2_SPEC>;
#[doc = "Otp debuger block0 data register13."]
pub mod blk0_backup3_w2;
#[doc = "BLK0_BACKUP3_W3 (r) register accessor: an alias for `Reg<BLK0_BACKUP3_W3_SPEC>`"]
pub type BLK0_BACKUP3_W3 = crate::Reg<blk0_backup3_w3::BLK0_BACKUP3_W3_SPEC>;
#[doc = "Otp debuger block0 data register14."]
pub mod blk0_backup3_w3;
#[doc = "BLK0_BACKUP3_W4 (r) register accessor: an alias for `Reg<BLK0_BACKUP3_W4_SPEC>`"]
pub type BLK0_BACKUP3_W4 = crate::Reg<blk0_backup3_w4::BLK0_BACKUP3_W4_SPEC>;
#[doc = "Otp debuger block0 data register15."]
pub mod blk0_backup3_w4;
#[doc = "BLK0_BACKUP3_W5 (r) register accessor: an alias for `Reg<BLK0_BACKUP3_W5_SPEC>`"]
pub type BLK0_BACKUP3_W5 = crate::Reg<blk0_backup3_w5::BLK0_BACKUP3_W5_SPEC>;
#[doc = "Otp debuger block0 data register16."]
pub mod blk0_backup3_w5;
#[doc = "BLK0_BACKUP4_W1 (r) register accessor: an alias for `Reg<BLK0_BACKUP4_W1_SPEC>`"]
pub type BLK0_BACKUP4_W1 = crate::Reg<blk0_backup4_w1::BLK0_BACKUP4_W1_SPEC>;
#[doc = "Otp debuger block0 data register17."]
pub mod blk0_backup4_w1;
#[doc = "BLK0_BACKUP4_W2 (r) register accessor: an alias for `Reg<BLK0_BACKUP4_W2_SPEC>`"]
pub type BLK0_BACKUP4_W2 = crate::Reg<blk0_backup4_w2::BLK0_BACKUP4_W2_SPEC>;
#[doc = "Otp debuger block0 data register18."]
pub mod blk0_backup4_w2;
#[doc = "BLK0_BACKUP4_W3 (r) register accessor: an alias for `Reg<BLK0_BACKUP4_W3_SPEC>`"]
pub type BLK0_BACKUP4_W3 = crate::Reg<blk0_backup4_w3::BLK0_BACKUP4_W3_SPEC>;
#[doc = "Otp debuger block0 data register19."]
pub mod blk0_backup4_w3;
#[doc = "BLK0_BACKUP4_W4 (r) register accessor: an alias for `Reg<BLK0_BACKUP4_W4_SPEC>`"]
pub type BLK0_BACKUP4_W4 = crate::Reg<blk0_backup4_w4::BLK0_BACKUP4_W4_SPEC>;
#[doc = "Otp debuger block0 data register20."]
pub mod blk0_backup4_w4;
#[doc = "BLK0_BACKUP4_W5 (r) register accessor: an alias for `Reg<BLK0_BACKUP4_W5_SPEC>`"]
pub type BLK0_BACKUP4_W5 = crate::Reg<blk0_backup4_w5::BLK0_BACKUP4_W5_SPEC>;
#[doc = "Otp debuger block0 data register21."]
pub mod blk0_backup4_w5;
#[doc = "BLK1_W1 (r) register accessor: an alias for `Reg<BLK1_W1_SPEC>`"]
pub type BLK1_W1 = crate::Reg<blk1_w1::BLK1_W1_SPEC>;
#[doc = "Otp debuger block1 data register1."]
pub mod blk1_w1;
#[doc = "BLK1_W2 (r) register accessor: an alias for `Reg<BLK1_W2_SPEC>`"]
pub type BLK1_W2 = crate::Reg<blk1_w2::BLK1_W2_SPEC>;
#[doc = "Otp debuger block1 data register2."]
pub mod blk1_w2;
#[doc = "BLK1_W3 (r) register accessor: an alias for `Reg<BLK1_W3_SPEC>`"]
pub type BLK1_W3 = crate::Reg<blk1_w3::BLK1_W3_SPEC>;
#[doc = "Otp debuger block1 data register3."]
pub mod blk1_w3;
#[doc = "BLK1_W4 (r) register accessor: an alias for `Reg<BLK1_W4_SPEC>`"]
pub type BLK1_W4 = crate::Reg<blk1_w4::BLK1_W4_SPEC>;
#[doc = "Otp debuger block1 data register4."]
pub mod blk1_w4;
#[doc = "BLK1_W5 (r) register accessor: an alias for `Reg<BLK1_W5_SPEC>`"]
pub type BLK1_W5 = crate::Reg<blk1_w5::BLK1_W5_SPEC>;
#[doc = "Otp debuger block1 data register5."]
pub mod blk1_w5;
#[doc = "BLK1_W6 (r) register accessor: an alias for `Reg<BLK1_W6_SPEC>`"]
pub type BLK1_W6 = crate::Reg<blk1_w6::BLK1_W6_SPEC>;
#[doc = "Otp debuger block1 data register6."]
pub mod blk1_w6;
#[doc = "BLK1_W7 (r) register accessor: an alias for `Reg<BLK1_W7_SPEC>`"]
pub type BLK1_W7 = crate::Reg<blk1_w7::BLK1_W7_SPEC>;
#[doc = "Otp debuger block1 data register7."]
pub mod blk1_w7;
#[doc = "BLK1_W8 (r) register accessor: an alias for `Reg<BLK1_W8_SPEC>`"]
pub type BLK1_W8 = crate::Reg<blk1_w8::BLK1_W8_SPEC>;
#[doc = "Otp debuger block1 data register8."]
pub mod blk1_w8;
#[doc = "BLK1_W9 (r) register accessor: an alias for `Reg<BLK1_W9_SPEC>`"]
pub type BLK1_W9 = crate::Reg<blk1_w9::BLK1_W9_SPEC>;
#[doc = "Otp debuger block1 data register9."]
pub mod blk1_w9;
#[doc = "BLK2_W1 (r) register accessor: an alias for `Reg<BLK2_W1_SPEC>`"]
pub type BLK2_W1 = crate::Reg<blk2_w1::BLK2_W1_SPEC>;
#[doc = "Otp debuger block2 data register1."]
pub mod blk2_w1;
#[doc = "BLK2_W2 (r) register accessor: an alias for `Reg<BLK2_W2_SPEC>`"]
pub type BLK2_W2 = crate::Reg<blk2_w2::BLK2_W2_SPEC>;
#[doc = "Otp debuger block2 data register2."]
pub mod blk2_w2;
#[doc = "BLK2_W3 (r) register accessor: an alias for `Reg<BLK2_W3_SPEC>`"]
pub type BLK2_W3 = crate::Reg<blk2_w3::BLK2_W3_SPEC>;
#[doc = "Otp debuger block2 data register3."]
pub mod blk2_w3;
#[doc = "BLK2_W4 (r) register accessor: an alias for `Reg<BLK2_W4_SPEC>`"]
pub type BLK2_W4 = crate::Reg<blk2_w4::BLK2_W4_SPEC>;
#[doc = "Otp debuger block2 data register4."]
pub mod blk2_w4;
#[doc = "BLK2_W5 (r) register accessor: an alias for `Reg<BLK2_W5_SPEC>`"]
pub type BLK2_W5 = crate::Reg<blk2_w5::BLK2_W5_SPEC>;
#[doc = "Otp debuger block2 data register5."]
pub mod blk2_w5;
#[doc = "BLK2_W6 (r) register accessor: an alias for `Reg<BLK2_W6_SPEC>`"]
pub type BLK2_W6 = crate::Reg<blk2_w6::BLK2_W6_SPEC>;
#[doc = "Otp debuger block2 data register6."]
pub mod blk2_w6;
#[doc = "BLK2_W7 (r) register accessor: an alias for `Reg<BLK2_W7_SPEC>`"]
pub type BLK2_W7 = crate::Reg<blk2_w7::BLK2_W7_SPEC>;
#[doc = "Otp debuger block2 data register7."]
pub mod blk2_w7;
#[doc = "BLK2_W8 (r) register accessor: an alias for `Reg<BLK2_W8_SPEC>`"]
pub type BLK2_W8 = crate::Reg<blk2_w8::BLK2_W8_SPEC>;
#[doc = "Otp debuger block2 data register8."]
pub mod blk2_w8;
#[doc = "BLK2_W9 (r) register accessor: an alias for `Reg<BLK2_W9_SPEC>`"]
pub type BLK2_W9 = crate::Reg<blk2_w9::BLK2_W9_SPEC>;
#[doc = "Otp debuger block2 data register9."]
pub mod blk2_w9;
#[doc = "BLK2_W10 (r) register accessor: an alias for `Reg<BLK2_W10_SPEC>`"]
pub type BLK2_W10 = crate::Reg<blk2_w10::BLK2_W10_SPEC>;
#[doc = "Otp debuger block2 data register10."]
pub mod blk2_w10;
#[doc = "BLK2_W11 (r) register accessor: an alias for `Reg<BLK2_W11_SPEC>`"]
pub type BLK2_W11 = crate::Reg<blk2_w11::BLK2_W11_SPEC>;
#[doc = "Otp debuger block2 data register11."]
pub mod blk2_w11;
#[doc = "BLK3_W1 (r) register accessor: an alias for `Reg<BLK3_W1_SPEC>`"]
pub type BLK3_W1 = crate::Reg<blk3_w1::BLK3_W1_SPEC>;
#[doc = "Otp debuger block3 data register1."]
pub mod blk3_w1;
#[doc = "BLK3_W2 (r) register accessor: an alias for `Reg<BLK3_W2_SPEC>`"]
pub type BLK3_W2 = crate::Reg<blk3_w2::BLK3_W2_SPEC>;
#[doc = "Otp debuger block3 data register2."]
pub mod blk3_w2;
#[doc = "BLK3_W3 (r) register accessor: an alias for `Reg<BLK3_W3_SPEC>`"]
pub type BLK3_W3 = crate::Reg<blk3_w3::BLK3_W3_SPEC>;
#[doc = "Otp debuger block3 data register3."]
pub mod blk3_w3;
#[doc = "BLK3_W4 (r) register accessor: an alias for `Reg<BLK3_W4_SPEC>`"]
pub type BLK3_W4 = crate::Reg<blk3_w4::BLK3_W4_SPEC>;
#[doc = "Otp debuger block3 data register4."]
pub mod blk3_w4;
#[doc = "BLK3_W5 (r) register accessor: an alias for `Reg<BLK3_W5_SPEC>`"]
pub type BLK3_W5 = crate::Reg<blk3_w5::BLK3_W5_SPEC>;
#[doc = "Otp debuger block3 data register5."]
pub mod blk3_w5;
#[doc = "BLK3_W6 (r) register accessor: an alias for `Reg<BLK3_W6_SPEC>`"]
pub type BLK3_W6 = crate::Reg<blk3_w6::BLK3_W6_SPEC>;
#[doc = "Otp debuger block3 data register6."]
pub mod blk3_w6;
#[doc = "BLK3_W7 (r) register accessor: an alias for `Reg<BLK3_W7_SPEC>`"]
pub type BLK3_W7 = crate::Reg<blk3_w7::BLK3_W7_SPEC>;
#[doc = "Otp debuger block3 data register7."]
pub mod blk3_w7;
#[doc = "BLK3_W8 (r) register accessor: an alias for `Reg<BLK3_W8_SPEC>`"]
pub type BLK3_W8 = crate::Reg<blk3_w8::BLK3_W8_SPEC>;
#[doc = "Otp debuger block3 data register8."]
pub mod blk3_w8;
#[doc = "BLK3_W9 (r) register accessor: an alias for `Reg<BLK3_W9_SPEC>`"]
pub type BLK3_W9 = crate::Reg<blk3_w9::BLK3_W9_SPEC>;
#[doc = "Otp debuger block3 data register9."]
pub mod blk3_w9;
#[doc = "BLK3_W10 (r) register accessor: an alias for `Reg<BLK3_W10_SPEC>`"]
pub type BLK3_W10 = crate::Reg<blk3_w10::BLK3_W10_SPEC>;
#[doc = "Otp debuger block3 data register10."]
pub mod blk3_w10;
#[doc = "BLK3_W11 (r) register accessor: an alias for `Reg<BLK3_W11_SPEC>`"]
pub type BLK3_W11 = crate::Reg<blk3_w11::BLK3_W11_SPEC>;
#[doc = "Otp debuger block3 data register11."]
pub mod blk3_w11;
#[doc = "BLK4_W1 (r) register accessor: an alias for `Reg<BLK4_W1_SPEC>`"]
pub type BLK4_W1 = crate::Reg<blk4_w1::BLK4_W1_SPEC>;
#[doc = "Otp debuger block4 data register1."]
pub mod blk4_w1;
#[doc = "BLK4_W2 (r) register accessor: an alias for `Reg<BLK4_W2_SPEC>`"]
pub type BLK4_W2 = crate::Reg<blk4_w2::BLK4_W2_SPEC>;
#[doc = "Otp debuger block4 data register2."]
pub mod blk4_w2;
#[doc = "BLK4_W3 (r) register accessor: an alias for `Reg<BLK4_W3_SPEC>`"]
pub type BLK4_W3 = crate::Reg<blk4_w3::BLK4_W3_SPEC>;
#[doc = "Otp debuger block4 data register3."]
pub mod blk4_w3;
#[doc = "BLK4_W4 (r) register accessor: an alias for `Reg<BLK4_W4_SPEC>`"]
pub type BLK4_W4 = crate::Reg<blk4_w4::BLK4_W4_SPEC>;
#[doc = "Otp debuger block4 data register4."]
pub mod blk4_w4;
#[doc = "BLK4_W5 (r) register accessor: an alias for `Reg<BLK4_W5_SPEC>`"]
pub type BLK4_W5 = crate::Reg<blk4_w5::BLK4_W5_SPEC>;
#[doc = "Otp debuger block4 data register5."]
pub mod blk4_w5;
#[doc = "BLK4_W6 (r) register accessor: an alias for `Reg<BLK4_W6_SPEC>`"]
pub type BLK4_W6 = crate::Reg<blk4_w6::BLK4_W6_SPEC>;
#[doc = "Otp debuger block4 data register6."]
pub mod blk4_w6;
#[doc = "BLK4_W7 (r) register accessor: an alias for `Reg<BLK4_W7_SPEC>`"]
pub type BLK4_W7 = crate::Reg<blk4_w7::BLK4_W7_SPEC>;
#[doc = "Otp debuger block4 data register7."]
pub mod blk4_w7;
#[doc = "BLK4_W8 (r) register accessor: an alias for `Reg<BLK4_W8_SPEC>`"]
pub type BLK4_W8 = crate::Reg<blk4_w8::BLK4_W8_SPEC>;
#[doc = "Otp debuger block4 data register8."]
pub mod blk4_w8;
#[doc = "BLK4_W9 (r) register accessor: an alias for `Reg<BLK4_W9_SPEC>`"]
pub type BLK4_W9 = crate::Reg<blk4_w9::BLK4_W9_SPEC>;
#[doc = "Otp debuger block4 data register9."]
pub mod blk4_w9;
#[doc = "BLK4_W10 (r) register accessor: an alias for `Reg<BLK4_W10_SPEC>`"]
pub type BLK4_W10 = crate::Reg<blk4_w10::BLK4_W10_SPEC>;
#[doc = "Otp debuger block4 data registe10."]
pub mod blk4_w10;
#[doc = "BLK4_W11 (r) register accessor: an alias for `Reg<BLK4_W11_SPEC>`"]
pub type BLK4_W11 = crate::Reg<blk4_w11::BLK4_W11_SPEC>;
#[doc = "Otp debuger block4 data register11."]
pub mod blk4_w11;
#[doc = "BLK5_W1 (r) register accessor: an alias for `Reg<BLK5_W1_SPEC>`"]
pub type BLK5_W1 = crate::Reg<blk5_w1::BLK5_W1_SPEC>;
#[doc = "Otp debuger block5 data register1."]
pub mod blk5_w1;
#[doc = "BLK5_W2 (r) register accessor: an alias for `Reg<BLK5_W2_SPEC>`"]
pub type BLK5_W2 = crate::Reg<blk5_w2::BLK5_W2_SPEC>;
#[doc = "Otp debuger block5 data register2."]
pub mod blk5_w2;
#[doc = "BLK5_W3 (r) register accessor: an alias for `Reg<BLK5_W3_SPEC>`"]
pub type BLK5_W3 = crate::Reg<blk5_w3::BLK5_W3_SPEC>;
#[doc = "Otp debuger block5 data register3."]
pub mod blk5_w3;
#[doc = "BLK5_W4 (r) register accessor: an alias for `Reg<BLK5_W4_SPEC>`"]
pub type BLK5_W4 = crate::Reg<blk5_w4::BLK5_W4_SPEC>;
#[doc = "Otp debuger block5 data register4."]
pub mod blk5_w4;
#[doc = "BLK5_W5 (r) register accessor: an alias for `Reg<BLK5_W5_SPEC>`"]
pub type BLK5_W5 = crate::Reg<blk5_w5::BLK5_W5_SPEC>;
#[doc = "Otp debuger block5 data register5."]
pub mod blk5_w5;
#[doc = "BLK5_W6 (r) register accessor: an alias for `Reg<BLK5_W6_SPEC>`"]
pub type BLK5_W6 = crate::Reg<blk5_w6::BLK5_W6_SPEC>;
#[doc = "Otp debuger block5 data register6."]
pub mod blk5_w6;
#[doc = "BLK5_W7 (r) register accessor: an alias for `Reg<BLK5_W7_SPEC>`"]
pub type BLK5_W7 = crate::Reg<blk5_w7::BLK5_W7_SPEC>;
#[doc = "Otp debuger block5 data register7."]
pub mod blk5_w7;
#[doc = "BLK5_W8 (r) register accessor: an alias for `Reg<BLK5_W8_SPEC>`"]
pub type BLK5_W8 = crate::Reg<blk5_w8::BLK5_W8_SPEC>;
#[doc = "Otp debuger block5 data register8."]
pub mod blk5_w8;
#[doc = "BLK5_W9 (r) register accessor: an alias for `Reg<BLK5_W9_SPEC>`"]
pub type BLK5_W9 = crate::Reg<blk5_w9::BLK5_W9_SPEC>;
#[doc = "Otp debuger block5 data register9."]
pub mod blk5_w9;
#[doc = "BLK5_W10 (r) register accessor: an alias for `Reg<BLK5_W10_SPEC>`"]
pub type BLK5_W10 = crate::Reg<blk5_w10::BLK5_W10_SPEC>;
#[doc = "Otp debuger block5 data register10."]
pub mod blk5_w10;
#[doc = "BLK5_W11 (r) register accessor: an alias for `Reg<BLK5_W11_SPEC>`"]
pub type BLK5_W11 = crate::Reg<blk5_w11::BLK5_W11_SPEC>;
#[doc = "Otp debuger block5 data register11."]
pub mod blk5_w11;
#[doc = "BLK6_W1 (r) register accessor: an alias for `Reg<BLK6_W1_SPEC>`"]
pub type BLK6_W1 = crate::Reg<blk6_w1::BLK6_W1_SPEC>;
#[doc = "Otp debuger block6 data register1."]
pub mod blk6_w1;
#[doc = "BLK6_W2 (r) register accessor: an alias for `Reg<BLK6_W2_SPEC>`"]
pub type BLK6_W2 = crate::Reg<blk6_w2::BLK6_W2_SPEC>;
#[doc = "Otp debuger block6 data register2."]
pub mod blk6_w2;
#[doc = "BLK6_W3 (r) register accessor: an alias for `Reg<BLK6_W3_SPEC>`"]
pub type BLK6_W3 = crate::Reg<blk6_w3::BLK6_W3_SPEC>;
#[doc = "Otp debuger block6 data register3."]
pub mod blk6_w3;
#[doc = "BLK6_W4 (r) register accessor: an alias for `Reg<BLK6_W4_SPEC>`"]
pub type BLK6_W4 = crate::Reg<blk6_w4::BLK6_W4_SPEC>;
#[doc = "Otp debuger block6 data register4."]
pub mod blk6_w4;
#[doc = "BLK6_W5 (r) register accessor: an alias for `Reg<BLK6_W5_SPEC>`"]
pub type BLK6_W5 = crate::Reg<blk6_w5::BLK6_W5_SPEC>;
#[doc = "Otp debuger block6 data register5."]
pub mod blk6_w5;
#[doc = "BLK6_W6 (r) register accessor: an alias for `Reg<BLK6_W6_SPEC>`"]
pub type BLK6_W6 = crate::Reg<blk6_w6::BLK6_W6_SPEC>;
#[doc = "Otp debuger block6 data register6."]
pub mod blk6_w6;
#[doc = "BLK6_W7 (r) register accessor: an alias for `Reg<BLK6_W7_SPEC>`"]
pub type BLK6_W7 = crate::Reg<blk6_w7::BLK6_W7_SPEC>;
#[doc = "Otp debuger block6 data register7."]
pub mod blk6_w7;
#[doc = "BLK6_W8 (r) register accessor: an alias for `Reg<BLK6_W8_SPEC>`"]
pub type BLK6_W8 = crate::Reg<blk6_w8::BLK6_W8_SPEC>;
#[doc = "Otp debuger block6 data register8."]
pub mod blk6_w8;
#[doc = "BLK6_W9 (r) register accessor: an alias for `Reg<BLK6_W9_SPEC>`"]
pub type BLK6_W9 = crate::Reg<blk6_w9::BLK6_W9_SPEC>;
#[doc = "Otp debuger block6 data register9."]
pub mod blk6_w9;
#[doc = "BLK6_W10 (r) register accessor: an alias for `Reg<BLK6_W10_SPEC>`"]
pub type BLK6_W10 = crate::Reg<blk6_w10::BLK6_W10_SPEC>;
#[doc = "Otp debuger block6 data register10."]
pub mod blk6_w10;
#[doc = "BLK6_W11 (r) register accessor: an alias for `Reg<BLK6_W11_SPEC>`"]
pub type BLK6_W11 = crate::Reg<blk6_w11::BLK6_W11_SPEC>;
#[doc = "Otp debuger block6 data register11."]
pub mod blk6_w11;
#[doc = "BLK7_W1 (r) register accessor: an alias for `Reg<BLK7_W1_SPEC>`"]
pub type BLK7_W1 = crate::Reg<blk7_w1::BLK7_W1_SPEC>;
#[doc = "Otp debuger block7 data register1."]
pub mod blk7_w1;
#[doc = "BLK7_W2 (r) register accessor: an alias for `Reg<BLK7_W2_SPEC>`"]
pub type BLK7_W2 = crate::Reg<blk7_w2::BLK7_W2_SPEC>;
#[doc = "Otp debuger block7 data register2."]
pub mod blk7_w2;
#[doc = "BLK7_W3 (r) register accessor: an alias for `Reg<BLK7_W3_SPEC>`"]
pub type BLK7_W3 = crate::Reg<blk7_w3::BLK7_W3_SPEC>;
#[doc = "Otp debuger block7 data register3."]
pub mod blk7_w3;
#[doc = "BLK7_W4 (r) register accessor: an alias for `Reg<BLK7_W4_SPEC>`"]
pub type BLK7_W4 = crate::Reg<blk7_w4::BLK7_W4_SPEC>;
#[doc = "Otp debuger block7 data register4."]
pub mod blk7_w4;
#[doc = "BLK7_W5 (r) register accessor: an alias for `Reg<BLK7_W5_SPEC>`"]
pub type BLK7_W5 = crate::Reg<blk7_w5::BLK7_W5_SPEC>;
#[doc = "Otp debuger block7 data register5."]
pub mod blk7_w5;
#[doc = "BLK7_W6 (r) register accessor: an alias for `Reg<BLK7_W6_SPEC>`"]
pub type BLK7_W6 = crate::Reg<blk7_w6::BLK7_W6_SPEC>;
#[doc = "Otp debuger block7 data register6."]
pub mod blk7_w6;
#[doc = "BLK7_W7 (r) register accessor: an alias for `Reg<BLK7_W7_SPEC>`"]
pub type BLK7_W7 = crate::Reg<blk7_w7::BLK7_W7_SPEC>;
#[doc = "Otp debuger block7 data register7."]
pub mod blk7_w7;
#[doc = "BLK7_W8 (r) register accessor: an alias for `Reg<BLK7_W8_SPEC>`"]
pub type BLK7_W8 = crate::Reg<blk7_w8::BLK7_W8_SPEC>;
#[doc = "Otp debuger block7 data register8."]
pub mod blk7_w8;
#[doc = "BLK7_W9 (r) register accessor: an alias for `Reg<BLK7_W9_SPEC>`"]
pub type BLK7_W9 = crate::Reg<blk7_w9::BLK7_W9_SPEC>;
#[doc = "Otp debuger block7 data register9."]
pub mod blk7_w9;
#[doc = "BLK7_W10 (r) register accessor: an alias for `Reg<BLK7_W10_SPEC>`"]
pub type BLK7_W10 = crate::Reg<blk7_w10::BLK7_W10_SPEC>;
#[doc = "Otp debuger block7 data register10."]
pub mod blk7_w10;
#[doc = "BLK7_W11 (r) register accessor: an alias for `Reg<BLK7_W11_SPEC>`"]
pub type BLK7_W11 = crate::Reg<blk7_w11::BLK7_W11_SPEC>;
#[doc = "Otp debuger block7 data register11."]
pub mod blk7_w11;
#[doc = "BLK8_W1 (r) register accessor: an alias for `Reg<BLK8_W1_SPEC>`"]
pub type BLK8_W1 = crate::Reg<blk8_w1::BLK8_W1_SPEC>;
#[doc = "Otp debuger block8 data register1."]
pub mod blk8_w1;
#[doc = "BLK8_W2 (r) register accessor: an alias for `Reg<BLK8_W2_SPEC>`"]
pub type BLK8_W2 = crate::Reg<blk8_w2::BLK8_W2_SPEC>;
#[doc = "Otp debuger block8 data register2."]
pub mod blk8_w2;
#[doc = "BLK8_W3 (r) register accessor: an alias for `Reg<BLK8_W3_SPEC>`"]
pub type BLK8_W3 = crate::Reg<blk8_w3::BLK8_W3_SPEC>;
#[doc = "Otp debuger block8 data register3."]
pub mod blk8_w3;
#[doc = "BLK8_W4 (r) register accessor: an alias for `Reg<BLK8_W4_SPEC>`"]
pub type BLK8_W4 = crate::Reg<blk8_w4::BLK8_W4_SPEC>;
#[doc = "Otp debuger block8 data register4."]
pub mod blk8_w4;
#[doc = "BLK8_W5 (r) register accessor: an alias for `Reg<BLK8_W5_SPEC>`"]
pub type BLK8_W5 = crate::Reg<blk8_w5::BLK8_W5_SPEC>;
#[doc = "Otp debuger block8 data register5."]
pub mod blk8_w5;
#[doc = "BLK8_W6 (r) register accessor: an alias for `Reg<BLK8_W6_SPEC>`"]
pub type BLK8_W6 = crate::Reg<blk8_w6::BLK8_W6_SPEC>;
#[doc = "Otp debuger block8 data register6."]
pub mod blk8_w6;
#[doc = "BLK8_W7 (r) register accessor: an alias for `Reg<BLK8_W7_SPEC>`"]
pub type BLK8_W7 = crate::Reg<blk8_w7::BLK8_W7_SPEC>;
#[doc = "Otp debuger block8 data register7."]
pub mod blk8_w7;
#[doc = "BLK8_W8 (r) register accessor: an alias for `Reg<BLK8_W8_SPEC>`"]
pub type BLK8_W8 = crate::Reg<blk8_w8::BLK8_W8_SPEC>;
#[doc = "Otp debuger block8 data register8."]
pub mod blk8_w8;
#[doc = "BLK8_W9 (r) register accessor: an alias for `Reg<BLK8_W9_SPEC>`"]
pub type BLK8_W9 = crate::Reg<blk8_w9::BLK8_W9_SPEC>;
#[doc = "Otp debuger block8 data register9."]
pub mod blk8_w9;
#[doc = "BLK8_W10 (r) register accessor: an alias for `Reg<BLK8_W10_SPEC>`"]
pub type BLK8_W10 = crate::Reg<blk8_w10::BLK8_W10_SPEC>;
#[doc = "Otp debuger block8 data register10."]
pub mod blk8_w10;
#[doc = "BLK8_W11 (r) register accessor: an alias for `Reg<BLK8_W11_SPEC>`"]
pub type BLK8_W11 = crate::Reg<blk8_w11::BLK8_W11_SPEC>;
#[doc = "Otp debuger block8 data register11."]
pub mod blk8_w11;
#[doc = "BLK9_W1 (r) register accessor: an alias for `Reg<BLK9_W1_SPEC>`"]
pub type BLK9_W1 = crate::Reg<blk9_w1::BLK9_W1_SPEC>;
#[doc = "Otp debuger block9 data register1."]
pub mod blk9_w1;
#[doc = "BLK9_W2 (r) register accessor: an alias for `Reg<BLK9_W2_SPEC>`"]
pub type BLK9_W2 = crate::Reg<blk9_w2::BLK9_W2_SPEC>;
#[doc = "Otp debuger block9 data register2."]
pub mod blk9_w2;
#[doc = "BLK9_W3 (r) register accessor: an alias for `Reg<BLK9_W3_SPEC>`"]
pub type BLK9_W3 = crate::Reg<blk9_w3::BLK9_W3_SPEC>;
#[doc = "Otp debuger block9 data register3."]
pub mod blk9_w3;
#[doc = "BLK9_W4 (r) register accessor: an alias for `Reg<BLK9_W4_SPEC>`"]
pub type BLK9_W4 = crate::Reg<blk9_w4::BLK9_W4_SPEC>;
#[doc = "Otp debuger block9 data register4."]
pub mod blk9_w4;
#[doc = "BLK9_W5 (r) register accessor: an alias for `Reg<BLK9_W5_SPEC>`"]
pub type BLK9_W5 = crate::Reg<blk9_w5::BLK9_W5_SPEC>;
#[doc = "Otp debuger block9 data register5."]
pub mod blk9_w5;
#[doc = "BLK9_W6 (r) register accessor: an alias for `Reg<BLK9_W6_SPEC>`"]
pub type BLK9_W6 = crate::Reg<blk9_w6::BLK9_W6_SPEC>;
#[doc = "Otp debuger block9 data register6."]
pub mod blk9_w6;
#[doc = "BLK9_W7 (r) register accessor: an alias for `Reg<BLK9_W7_SPEC>`"]
pub type BLK9_W7 = crate::Reg<blk9_w7::BLK9_W7_SPEC>;
#[doc = "Otp debuger block9 data register7."]
pub mod blk9_w7;
#[doc = "BLK9_W8 (r) register accessor: an alias for `Reg<BLK9_W8_SPEC>`"]
pub type BLK9_W8 = crate::Reg<blk9_w8::BLK9_W8_SPEC>;
#[doc = "Otp debuger block9 data register8."]
pub mod blk9_w8;
#[doc = "BLK9_W9 (r) register accessor: an alias for `Reg<BLK9_W9_SPEC>`"]
pub type BLK9_W9 = crate::Reg<blk9_w9::BLK9_W9_SPEC>;
#[doc = "Otp debuger block9 data register9."]
pub mod blk9_w9;
#[doc = "BLK9_W10 (r) register accessor: an alias for `Reg<BLK9_W10_SPEC>`"]
pub type BLK9_W10 = crate::Reg<blk9_w10::BLK9_W10_SPEC>;
#[doc = "Otp debuger block9 data register10."]
pub mod blk9_w10;
#[doc = "BLK9_W11 (r) register accessor: an alias for `Reg<BLK9_W11_SPEC>`"]
pub type BLK9_W11 = crate::Reg<blk9_w11::BLK9_W11_SPEC>;
#[doc = "Otp debuger block9 data register11."]
pub mod blk9_w11;
#[doc = "BLK10_W1 (r) register accessor: an alias for `Reg<BLK10_W1_SPEC>`"]
pub type BLK10_W1 = crate::Reg<blk10_w1::BLK10_W1_SPEC>;
#[doc = "Otp debuger block10 data register1."]
pub mod blk10_w1;
#[doc = "BLK10_W2 (r) register accessor: an alias for `Reg<BLK10_W2_SPEC>`"]
pub type BLK10_W2 = crate::Reg<blk10_w2::BLK10_W2_SPEC>;
#[doc = "Otp debuger block10 data register2."]
pub mod blk10_w2;
#[doc = "BLK10_W3 (r) register accessor: an alias for `Reg<BLK10_W3_SPEC>`"]
pub type BLK10_W3 = crate::Reg<blk10_w3::BLK10_W3_SPEC>;
#[doc = "Otp debuger block10 data register3."]
pub mod blk10_w3;
#[doc = "BLK10_W4 (r) register accessor: an alias for `Reg<BLK10_W4_SPEC>`"]
pub type BLK10_W4 = crate::Reg<blk10_w4::BLK10_W4_SPEC>;
#[doc = "Otp debuger block10 data register4."]
pub mod blk10_w4;
#[doc = "BLK10_W5 (r) register accessor: an alias for `Reg<BLK10_W5_SPEC>`"]
pub type BLK10_W5 = crate::Reg<blk10_w5::BLK10_W5_SPEC>;
#[doc = "Otp debuger block10 data register5."]
pub mod blk10_w5;
#[doc = "BLK10_W6 (r) register accessor: an alias for `Reg<BLK10_W6_SPEC>`"]
pub type BLK10_W6 = crate::Reg<blk10_w6::BLK10_W6_SPEC>;
#[doc = "Otp debuger block10 data register6."]
pub mod blk10_w6;
#[doc = "BLK10_W7 (r) register accessor: an alias for `Reg<BLK10_W7_SPEC>`"]
pub type BLK10_W7 = crate::Reg<blk10_w7::BLK10_W7_SPEC>;
#[doc = "Otp debuger block10 data register7."]
pub mod blk10_w7;
#[doc = "BLK10_W8 (r) register accessor: an alias for `Reg<BLK10_W8_SPEC>`"]
pub type BLK10_W8 = crate::Reg<blk10_w8::BLK10_W8_SPEC>;
#[doc = "Otp debuger block10 data register8."]
pub mod blk10_w8;
#[doc = "BLK10_W9 (r) register accessor: an alias for `Reg<BLK10_W9_SPEC>`"]
pub type BLK10_W9 = crate::Reg<blk10_w9::BLK10_W9_SPEC>;
#[doc = "Otp debuger block10 data register9."]
pub mod blk10_w9;
#[doc = "BLK10_W10 (r) register accessor: an alias for `Reg<BLK10_W10_SPEC>`"]
pub type BLK10_W10 = crate::Reg<blk10_w10::BLK10_W10_SPEC>;
#[doc = "Otp debuger block10 data register10."]
pub mod blk10_w10;
#[doc = "BLK10_W11 (r) register accessor: an alias for `Reg<BLK10_W11_SPEC>`"]
pub type BLK10_W11 = crate::Reg<blk10_w11::BLK10_W11_SPEC>;
#[doc = "Otp debuger block10 data register11."]
pub mod blk10_w11;
#[doc = "CLK (rw) register accessor: an alias for `Reg<CLK_SPEC>`"]
pub type CLK = crate::Reg<clk::CLK_SPEC>;
#[doc = "Otp debuger clk_en configuration register."]
pub mod clk;
#[doc = "APB2OTP_EN (rw) register accessor: an alias for `Reg<APB2OTP_EN_SPEC>`"]
pub type APB2OTP_EN = crate::Reg<apb2otp_en::APB2OTP_EN_SPEC>;
#[doc = "Otp_debuger apb2otp enable configuration register."]
pub mod apb2otp_en;
#[doc = "DATE (rw) register accessor: an alias for `Reg<DATE_SPEC>`"]
pub type DATE = crate::Reg<date::DATE_SPEC>;
#[doc = "eFuse version register."]
pub mod date;