lpc55-pac 0.5.0

Peripheral access API for NXP LPC55 microcontrollers
Documentation
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
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - SCT configuration register"]
    pub config: crate::Reg<config::CONFIG_SPEC>,
    #[doc = "0x04 - SCT control register"]
    pub ctrl: crate::Reg<ctrl::CTRL_SPEC>,
    #[doc = "0x08 - SCT limit event select register"]
    pub limit: crate::Reg<limit::LIMIT_SPEC>,
    #[doc = "0x0c - SCT halt event select register"]
    pub halt: crate::Reg<halt::HALT_SPEC>,
    #[doc = "0x10 - SCT stop event select register"]
    pub stop: crate::Reg<stop::STOP_SPEC>,
    #[doc = "0x14 - SCT start event select register"]
    pub start: crate::Reg<start::START_SPEC>,
    _reserved6: [u8; 0x28],
    #[doc = "0x40 - SCT counter register"]
    pub count: crate::Reg<count::COUNT_SPEC>,
    #[doc = "0x44 - SCT state register"]
    pub state: crate::Reg<state::STATE_SPEC>,
    #[doc = "0x48 - SCT input register"]
    pub input: crate::Reg<input::INPUT_SPEC>,
    #[doc = "0x4c - SCT match/capture mode register"]
    pub regmode: crate::Reg<regmode::REGMODE_SPEC>,
    #[doc = "0x50 - SCT output register"]
    pub output: crate::Reg<output::OUTPUT_SPEC>,
    #[doc = "0x54 - SCT output counter direction control register"]
    pub outputdirctrl: crate::Reg<outputdirctrl::OUTPUTDIRCTRL_SPEC>,
    #[doc = "0x58 - SCT conflict resolution register"]
    pub res: crate::Reg<res::RES_SPEC>,
    #[doc = "0x5c - SCT DMA request 0 register"]
    pub dmareq0: crate::Reg<dmareq0::DMAREQ0_SPEC>,
    #[doc = "0x60 - SCT DMA request 1 register"]
    pub dmareq1: crate::Reg<dmareq1::DMAREQ1_SPEC>,
    _reserved15: [u8; 0x8c],
    #[doc = "0xf0 - SCT event interrupt enable register"]
    pub even: crate::Reg<even::EVEN_SPEC>,
    #[doc = "0xf4 - SCT event flag register"]
    pub evflag: crate::Reg<evflag::EVFLAG_SPEC>,
    #[doc = "0xf8 - SCT conflict interrupt enable register"]
    pub conen: crate::Reg<conen::CONEN_SPEC>,
    #[doc = "0xfc - SCT conflict flag register"]
    pub conflag: crate::Reg<conflag::CONFLAG_SPEC>,
    _reserved_19_cap0: [u8; 0x04],
    _reserved_20_cap1: [u8; 0x04],
    _reserved_21_cap2: [u8; 0x04],
    _reserved_22_cap3: [u8; 0x04],
    _reserved_23_cap4: [u8; 0x04],
    _reserved_24_cap5: [u8; 0x04],
    _reserved_25_cap6: [u8; 0x04],
    _reserved_26_cap7: [u8; 0x04],
    _reserved_27_cap8: [u8; 0x04],
    _reserved_28_cap9: [u8; 0x04],
    _reserved_29_cap10: [u8; 0x04],
    _reserved_30_cap11: [u8; 0x04],
    _reserved_31_cap12: [u8; 0x04],
    _reserved_32_cap13: [u8; 0x04],
    _reserved_33_cap14: [u8; 0x04],
    _reserved_34_cap15: [u8; 0x04],
    _reserved35: [u8; 0xc0],
    _reserved_35_capctrl0: [u8; 0x04],
    _reserved_36_capctrl1: [u8; 0x04],
    _reserved_37_capctrl2: [u8; 0x04],
    _reserved_38_capctrl3: [u8; 0x04],
    _reserved_39_capctrl4: [u8; 0x04],
    _reserved_40_capctrl5: [u8; 0x04],
    _reserved_41_capctrl6: [u8; 0x04],
    _reserved_42_capctrl7: [u8; 0x04],
    _reserved_43_capctrl8: [u8; 0x04],
    _reserved_44_capctrl9: [u8; 0x04],
    _reserved_45_capctrl10: [u8; 0x04],
    _reserved_46_capctrl11: [u8; 0x04],
    _reserved_47_capctrl12: [u8; 0x04],
    _reserved_48_capctrl13: [u8; 0x04],
    _reserved_49_capctrl14: [u8; 0x04],
    _reserved_50_capctrl15: [u8; 0x04],
    _reserved51: [u8; 0xc0],
    #[doc = "0x300..0x380 - no description available"]
    pub ev: [EV; 16],
    _reserved52: [u8; 0x0180],
    #[doc = "0x500..0x550 - no description available"]
    pub out: [OUT; 10],
}
impl RegisterBlock {
    #[doc = "0x100 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match0(&self) -> &crate::Reg<match0::MATCH0_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(256usize)
                as *const crate::Reg<match0::MATCH0_SPEC>)
        }
    }
    #[doc = "0x100 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap0(&self) -> &crate::Reg<cap0::CAP0_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(256usize)
                as *const crate::Reg<cap0::CAP0_SPEC>)
        }
    }
    #[doc = "0x104 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match1(&self) -> &crate::Reg<match1::MATCH1_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(260usize)
                as *const crate::Reg<match1::MATCH1_SPEC>)
        }
    }
    #[doc = "0x104 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap1(&self) -> &crate::Reg<cap1::CAP1_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(260usize)
                as *const crate::Reg<cap1::CAP1_SPEC>)
        }
    }
    #[doc = "0x108 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match2(&self) -> &crate::Reg<match2::MATCH2_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(264usize)
                as *const crate::Reg<match2::MATCH2_SPEC>)
        }
    }
    #[doc = "0x108 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap2(&self) -> &crate::Reg<cap2::CAP2_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(264usize)
                as *const crate::Reg<cap2::CAP2_SPEC>)
        }
    }
    #[doc = "0x10c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match3(&self) -> &crate::Reg<match3::MATCH3_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(268usize)
                as *const crate::Reg<match3::MATCH3_SPEC>)
        }
    }
    #[doc = "0x10c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap3(&self) -> &crate::Reg<cap3::CAP3_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(268usize)
                as *const crate::Reg<cap3::CAP3_SPEC>)
        }
    }
    #[doc = "0x110 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match4(&self) -> &crate::Reg<match4::MATCH4_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(272usize)
                as *const crate::Reg<match4::MATCH4_SPEC>)
        }
    }
    #[doc = "0x110 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap4(&self) -> &crate::Reg<cap4::CAP4_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(272usize)
                as *const crate::Reg<cap4::CAP4_SPEC>)
        }
    }
    #[doc = "0x114 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match5(&self) -> &crate::Reg<match5::MATCH5_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(276usize)
                as *const crate::Reg<match5::MATCH5_SPEC>)
        }
    }
    #[doc = "0x114 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap5(&self) -> &crate::Reg<cap5::CAP5_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(276usize)
                as *const crate::Reg<cap5::CAP5_SPEC>)
        }
    }
    #[doc = "0x118 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match6(&self) -> &crate::Reg<match6::MATCH6_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(280usize)
                as *const crate::Reg<match6::MATCH6_SPEC>)
        }
    }
    #[doc = "0x118 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap6(&self) -> &crate::Reg<cap6::CAP6_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(280usize)
                as *const crate::Reg<cap6::CAP6_SPEC>)
        }
    }
    #[doc = "0x11c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match7(&self) -> &crate::Reg<match7::MATCH7_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(284usize)
                as *const crate::Reg<match7::MATCH7_SPEC>)
        }
    }
    #[doc = "0x11c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap7(&self) -> &crate::Reg<cap7::CAP7_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(284usize)
                as *const crate::Reg<cap7::CAP7_SPEC>)
        }
    }
    #[doc = "0x120 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match8(&self) -> &crate::Reg<match8::MATCH8_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(288usize)
                as *const crate::Reg<match8::MATCH8_SPEC>)
        }
    }
    #[doc = "0x120 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap8(&self) -> &crate::Reg<cap8::CAP8_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(288usize)
                as *const crate::Reg<cap8::CAP8_SPEC>)
        }
    }
    #[doc = "0x124 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match9(&self) -> &crate::Reg<match9::MATCH9_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(292usize)
                as *const crate::Reg<match9::MATCH9_SPEC>)
        }
    }
    #[doc = "0x124 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap9(&self) -> &crate::Reg<cap9::CAP9_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(292usize)
                as *const crate::Reg<cap9::CAP9_SPEC>)
        }
    }
    #[doc = "0x128 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match10(&self) -> &crate::Reg<match10::MATCH10_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(296usize)
                as *const crate::Reg<match10::MATCH10_SPEC>)
        }
    }
    #[doc = "0x128 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap10(&self) -> &crate::Reg<cap10::CAP10_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(296usize)
                as *const crate::Reg<cap10::CAP10_SPEC>)
        }
    }
    #[doc = "0x12c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match11(&self) -> &crate::Reg<match11::MATCH11_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(300usize)
                as *const crate::Reg<match11::MATCH11_SPEC>)
        }
    }
    #[doc = "0x12c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap11(&self) -> &crate::Reg<cap11::CAP11_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(300usize)
                as *const crate::Reg<cap11::CAP11_SPEC>)
        }
    }
    #[doc = "0x130 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match12(&self) -> &crate::Reg<match12::MATCH12_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(304usize)
                as *const crate::Reg<match12::MATCH12_SPEC>)
        }
    }
    #[doc = "0x130 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap12(&self) -> &crate::Reg<cap12::CAP12_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(304usize)
                as *const crate::Reg<cap12::CAP12_SPEC>)
        }
    }
    #[doc = "0x134 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match13(&self) -> &crate::Reg<match13::MATCH13_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(308usize)
                as *const crate::Reg<match13::MATCH13_SPEC>)
        }
    }
    #[doc = "0x134 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap13(&self) -> &crate::Reg<cap13::CAP13_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(308usize)
                as *const crate::Reg<cap13::CAP13_SPEC>)
        }
    }
    #[doc = "0x138 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match14(&self) -> &crate::Reg<match14::MATCH14_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(312usize)
                as *const crate::Reg<match14::MATCH14_SPEC>)
        }
    }
    #[doc = "0x138 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap14(&self) -> &crate::Reg<cap14::CAP14_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(312usize)
                as *const crate::Reg<cap14::CAP14_SPEC>)
        }
    }
    #[doc = "0x13c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn match15(&self) -> &crate::Reg<match15::MATCH15_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(316usize)
                as *const crate::Reg<match15::MATCH15_SPEC>)
        }
    }
    #[doc = "0x13c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn cap15(&self) -> &crate::Reg<cap15::CAP15_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(316usize)
                as *const crate::Reg<cap15::CAP15_SPEC>)
        }
    }
    #[doc = "0x200 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel0(&self) -> &crate::Reg<matchrel0::MATCHREL0_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(512usize)
                as *const crate::Reg<matchrel0::MATCHREL0_SPEC>)
        }
    }
    #[doc = "0x200 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl0(&self) -> &crate::Reg<capctrl0::CAPCTRL0_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(512usize)
                as *const crate::Reg<capctrl0::CAPCTRL0_SPEC>)
        }
    }
    #[doc = "0x204 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel1(&self) -> &crate::Reg<matchrel1::MATCHREL1_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(516usize)
                as *const crate::Reg<matchrel1::MATCHREL1_SPEC>)
        }
    }
    #[doc = "0x204 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl1(&self) -> &crate::Reg<capctrl1::CAPCTRL1_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(516usize)
                as *const crate::Reg<capctrl1::CAPCTRL1_SPEC>)
        }
    }
    #[doc = "0x208 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel2(&self) -> &crate::Reg<matchrel2::MATCHREL2_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(520usize)
                as *const crate::Reg<matchrel2::MATCHREL2_SPEC>)
        }
    }
    #[doc = "0x208 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl2(&self) -> &crate::Reg<capctrl2::CAPCTRL2_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(520usize)
                as *const crate::Reg<capctrl2::CAPCTRL2_SPEC>)
        }
    }
    #[doc = "0x20c - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel3(&self) -> &crate::Reg<matchrel3::MATCHREL3_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(524usize)
                as *const crate::Reg<matchrel3::MATCHREL3_SPEC>)
        }
    }
    #[doc = "0x20c - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl3(&self) -> &crate::Reg<capctrl3::CAPCTRL3_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(524usize)
                as *const crate::Reg<capctrl3::CAPCTRL3_SPEC>)
        }
    }
    #[doc = "0x210 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel4(&self) -> &crate::Reg<matchrel4::MATCHREL4_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(528usize)
                as *const crate::Reg<matchrel4::MATCHREL4_SPEC>)
        }
    }
    #[doc = "0x210 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl4(&self) -> &crate::Reg<capctrl4::CAPCTRL4_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(528usize)
                as *const crate::Reg<capctrl4::CAPCTRL4_SPEC>)
        }
    }
    #[doc = "0x214 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel5(&self) -> &crate::Reg<matchrel5::MATCHREL5_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(532usize)
                as *const crate::Reg<matchrel5::MATCHREL5_SPEC>)
        }
    }
    #[doc = "0x214 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl5(&self) -> &crate::Reg<capctrl5::CAPCTRL5_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(532usize)
                as *const crate::Reg<capctrl5::CAPCTRL5_SPEC>)
        }
    }
    #[doc = "0x218 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel6(&self) -> &crate::Reg<matchrel6::MATCHREL6_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(536usize)
                as *const crate::Reg<matchrel6::MATCHREL6_SPEC>)
        }
    }
    #[doc = "0x218 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl6(&self) -> &crate::Reg<capctrl6::CAPCTRL6_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(536usize)
                as *const crate::Reg<capctrl6::CAPCTRL6_SPEC>)
        }
    }
    #[doc = "0x21c - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel7(&self) -> &crate::Reg<matchrel7::MATCHREL7_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(540usize)
                as *const crate::Reg<matchrel7::MATCHREL7_SPEC>)
        }
    }
    #[doc = "0x21c - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl7(&self) -> &crate::Reg<capctrl7::CAPCTRL7_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(540usize)
                as *const crate::Reg<capctrl7::CAPCTRL7_SPEC>)
        }
    }
    #[doc = "0x220 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel8(&self) -> &crate::Reg<matchrel8::MATCHREL8_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(544usize)
                as *const crate::Reg<matchrel8::MATCHREL8_SPEC>)
        }
    }
    #[doc = "0x220 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl8(&self) -> &crate::Reg<capctrl8::CAPCTRL8_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(544usize)
                as *const crate::Reg<capctrl8::CAPCTRL8_SPEC>)
        }
    }
    #[doc = "0x224 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel9(&self) -> &crate::Reg<matchrel9::MATCHREL9_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(548usize)
                as *const crate::Reg<matchrel9::MATCHREL9_SPEC>)
        }
    }
    #[doc = "0x224 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl9(&self) -> &crate::Reg<capctrl9::CAPCTRL9_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(548usize)
                as *const crate::Reg<capctrl9::CAPCTRL9_SPEC>)
        }
    }
    #[doc = "0x228 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel10(&self) -> &crate::Reg<matchrel10::MATCHREL10_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(552usize)
                as *const crate::Reg<matchrel10::MATCHREL10_SPEC>)
        }
    }
    #[doc = "0x228 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl10(&self) -> &crate::Reg<capctrl10::CAPCTRL10_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(552usize)
                as *const crate::Reg<capctrl10::CAPCTRL10_SPEC>)
        }
    }
    #[doc = "0x22c - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel11(&self) -> &crate::Reg<matchrel11::MATCHREL11_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(556usize)
                as *const crate::Reg<matchrel11::MATCHREL11_SPEC>)
        }
    }
    #[doc = "0x22c - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl11(&self) -> &crate::Reg<capctrl11::CAPCTRL11_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(556usize)
                as *const crate::Reg<capctrl11::CAPCTRL11_SPEC>)
        }
    }
    #[doc = "0x230 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel12(&self) -> &crate::Reg<matchrel12::MATCHREL12_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(560usize)
                as *const crate::Reg<matchrel12::MATCHREL12_SPEC>)
        }
    }
    #[doc = "0x230 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl12(&self) -> &crate::Reg<capctrl12::CAPCTRL12_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(560usize)
                as *const crate::Reg<capctrl12::CAPCTRL12_SPEC>)
        }
    }
    #[doc = "0x234 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel13(&self) -> &crate::Reg<matchrel13::MATCHREL13_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(564usize)
                as *const crate::Reg<matchrel13::MATCHREL13_SPEC>)
        }
    }
    #[doc = "0x234 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl13(&self) -> &crate::Reg<capctrl13::CAPCTRL13_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(564usize)
                as *const crate::Reg<capctrl13::CAPCTRL13_SPEC>)
        }
    }
    #[doc = "0x238 - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel14(&self) -> &crate::Reg<matchrel14::MATCHREL14_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(568usize)
                as *const crate::Reg<matchrel14::MATCHREL14_SPEC>)
        }
    }
    #[doc = "0x238 - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl14(&self) -> &crate::Reg<capctrl14::CAPCTRL14_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(568usize)
                as *const crate::Reg<capctrl14::CAPCTRL14_SPEC>)
        }
    }
    #[doc = "0x23c - SCT match reload value register"]
    #[inline(always)]
    pub fn matchrel15(&self) -> &crate::Reg<matchrel15::MATCHREL15_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(572usize)
                as *const crate::Reg<matchrel15::MATCHREL15_SPEC>)
        }
    }
    #[doc = "0x23c - SCT capture control register"]
    #[inline(always)]
    pub fn capctrl15(&self) -> &crate::Reg<capctrl15::CAPCTRL15_SPEC> {
        unsafe {
            &*(((self as *const Self) as *const u8).add(572usize)
                as *const crate::Reg<capctrl15::CAPCTRL15_SPEC>)
        }
    }
}
#[doc = r"Register block"]
#[repr(C)]
pub struct EV {
    #[doc = "0x00 - SCT event state register 0"]
    pub ev_state: crate::Reg<self::ev::ev_state::EV_STATE_SPEC>,
    #[doc = "0x04 - SCT event control register 0"]
    pub ev_ctrl: crate::Reg<self::ev::ev_ctrl::EV_CTRL_SPEC>,
}
#[doc = r"Register block"]
#[doc = "no description available"]
pub mod ev;
#[doc = r"Register block"]
#[repr(C)]
pub struct OUT {
    #[doc = "0x00 - SCT output 0 set register"]
    pub out_set: crate::Reg<self::out::out_set::OUT_SET_SPEC>,
    #[doc = "0x04 - SCT output 0 clear register"]
    pub out_clr: crate::Reg<self::out::out_clr::OUT_CLR_SPEC>,
}
#[doc = r"Register block"]
#[doc = "no description available"]
pub mod out;
#[doc = "CONFIG register accessor: an alias for `Reg<CONFIG_SPEC>`"]
pub type CONFIG = crate::Reg<config::CONFIG_SPEC>;
#[doc = "SCT configuration register"]
pub mod config;
#[doc = "CTRL register accessor: an alias for `Reg<CTRL_SPEC>`"]
pub type CTRL = crate::Reg<ctrl::CTRL_SPEC>;
#[doc = "SCT control register"]
pub mod ctrl;
#[doc = "LIMIT register accessor: an alias for `Reg<LIMIT_SPEC>`"]
pub type LIMIT = crate::Reg<limit::LIMIT_SPEC>;
#[doc = "SCT limit event select register"]
pub mod limit;
#[doc = "HALT register accessor: an alias for `Reg<HALT_SPEC>`"]
pub type HALT = crate::Reg<halt::HALT_SPEC>;
#[doc = "SCT halt event select register"]
pub mod halt;
#[doc = "STOP register accessor: an alias for `Reg<STOP_SPEC>`"]
pub type STOP = crate::Reg<stop::STOP_SPEC>;
#[doc = "SCT stop event select register"]
pub mod stop;
#[doc = "START register accessor: an alias for `Reg<START_SPEC>`"]
pub type START = crate::Reg<start::START_SPEC>;
#[doc = "SCT start event select register"]
pub mod start;
#[doc = "COUNT register accessor: an alias for `Reg<COUNT_SPEC>`"]
pub type COUNT = crate::Reg<count::COUNT_SPEC>;
#[doc = "SCT counter register"]
pub mod count;
#[doc = "STATE register accessor: an alias for `Reg<STATE_SPEC>`"]
pub type STATE = crate::Reg<state::STATE_SPEC>;
#[doc = "SCT state register"]
pub mod state;
#[doc = "INPUT register accessor: an alias for `Reg<INPUT_SPEC>`"]
pub type INPUT = crate::Reg<input::INPUT_SPEC>;
#[doc = "SCT input register"]
pub mod input;
#[doc = "REGMODE register accessor: an alias for `Reg<REGMODE_SPEC>`"]
pub type REGMODE = crate::Reg<regmode::REGMODE_SPEC>;
#[doc = "SCT match/capture mode register"]
pub mod regmode;
#[doc = "OUTPUT register accessor: an alias for `Reg<OUTPUT_SPEC>`"]
pub type OUTPUT = crate::Reg<output::OUTPUT_SPEC>;
#[doc = "SCT output register"]
pub mod output;
#[doc = "OUTPUTDIRCTRL register accessor: an alias for `Reg<OUTPUTDIRCTRL_SPEC>`"]
pub type OUTPUTDIRCTRL = crate::Reg<outputdirctrl::OUTPUTDIRCTRL_SPEC>;
#[doc = "SCT output counter direction control register"]
pub mod outputdirctrl;
#[doc = "RES register accessor: an alias for `Reg<RES_SPEC>`"]
pub type RES = crate::Reg<res::RES_SPEC>;
#[doc = "SCT conflict resolution register"]
pub mod res;
#[doc = "DMAREQ0 register accessor: an alias for `Reg<DMAREQ0_SPEC>`"]
pub type DMAREQ0 = crate::Reg<dmareq0::DMAREQ0_SPEC>;
#[doc = "SCT DMA request 0 register"]
pub mod dmareq0;
#[doc = "DMAREQ1 register accessor: an alias for `Reg<DMAREQ1_SPEC>`"]
pub type DMAREQ1 = crate::Reg<dmareq1::DMAREQ1_SPEC>;
#[doc = "SCT DMA request 1 register"]
pub mod dmareq1;
#[doc = "EVEN register accessor: an alias for `Reg<EVEN_SPEC>`"]
pub type EVEN = crate::Reg<even::EVEN_SPEC>;
#[doc = "SCT event interrupt enable register"]
pub mod even;
#[doc = "EVFLAG register accessor: an alias for `Reg<EVFLAG_SPEC>`"]
pub type EVFLAG = crate::Reg<evflag::EVFLAG_SPEC>;
#[doc = "SCT event flag register"]
pub mod evflag;
#[doc = "CONEN register accessor: an alias for `Reg<CONEN_SPEC>`"]
pub type CONEN = crate::Reg<conen::CONEN_SPEC>;
#[doc = "SCT conflict interrupt enable register"]
pub mod conen;
#[doc = "CONFLAG register accessor: an alias for `Reg<CONFLAG_SPEC>`"]
pub type CONFLAG = crate::Reg<conflag::CONFLAG_SPEC>;
#[doc = "SCT conflict flag register"]
pub mod conflag;
#[doc = "CAP0 register accessor: an alias for `Reg<CAP0_SPEC>`"]
pub type CAP0 = crate::Reg<cap0::CAP0_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap0;
#[doc = "MATCH0 register accessor: an alias for `Reg<MATCH0_SPEC>`"]
pub type MATCH0 = crate::Reg<match0::MATCH0_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match0;
#[doc = "CAP1 register accessor: an alias for `Reg<CAP1_SPEC>`"]
pub type CAP1 = crate::Reg<cap1::CAP1_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap1;
#[doc = "MATCH1 register accessor: an alias for `Reg<MATCH1_SPEC>`"]
pub type MATCH1 = crate::Reg<match1::MATCH1_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match1;
#[doc = "CAP2 register accessor: an alias for `Reg<CAP2_SPEC>`"]
pub type CAP2 = crate::Reg<cap2::CAP2_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap2;
#[doc = "MATCH2 register accessor: an alias for `Reg<MATCH2_SPEC>`"]
pub type MATCH2 = crate::Reg<match2::MATCH2_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match2;
#[doc = "CAP3 register accessor: an alias for `Reg<CAP3_SPEC>`"]
pub type CAP3 = crate::Reg<cap3::CAP3_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap3;
#[doc = "MATCH3 register accessor: an alias for `Reg<MATCH3_SPEC>`"]
pub type MATCH3 = crate::Reg<match3::MATCH3_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match3;
#[doc = "CAP4 register accessor: an alias for `Reg<CAP4_SPEC>`"]
pub type CAP4 = crate::Reg<cap4::CAP4_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap4;
#[doc = "MATCH4 register accessor: an alias for `Reg<MATCH4_SPEC>`"]
pub type MATCH4 = crate::Reg<match4::MATCH4_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match4;
#[doc = "CAP5 register accessor: an alias for `Reg<CAP5_SPEC>`"]
pub type CAP5 = crate::Reg<cap5::CAP5_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap5;
#[doc = "MATCH5 register accessor: an alias for `Reg<MATCH5_SPEC>`"]
pub type MATCH5 = crate::Reg<match5::MATCH5_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match5;
#[doc = "CAP6 register accessor: an alias for `Reg<CAP6_SPEC>`"]
pub type CAP6 = crate::Reg<cap6::CAP6_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap6;
#[doc = "MATCH6 register accessor: an alias for `Reg<MATCH6_SPEC>`"]
pub type MATCH6 = crate::Reg<match6::MATCH6_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match6;
#[doc = "CAP7 register accessor: an alias for `Reg<CAP7_SPEC>`"]
pub type CAP7 = crate::Reg<cap7::CAP7_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap7;
#[doc = "MATCH7 register accessor: an alias for `Reg<MATCH7_SPEC>`"]
pub type MATCH7 = crate::Reg<match7::MATCH7_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match7;
#[doc = "CAP8 register accessor: an alias for `Reg<CAP8_SPEC>`"]
pub type CAP8 = crate::Reg<cap8::CAP8_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap8;
#[doc = "MATCH8 register accessor: an alias for `Reg<MATCH8_SPEC>`"]
pub type MATCH8 = crate::Reg<match8::MATCH8_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match8;
#[doc = "CAP9 register accessor: an alias for `Reg<CAP9_SPEC>`"]
pub type CAP9 = crate::Reg<cap9::CAP9_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap9;
#[doc = "MATCH9 register accessor: an alias for `Reg<MATCH9_SPEC>`"]
pub type MATCH9 = crate::Reg<match9::MATCH9_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match9;
#[doc = "CAP10 register accessor: an alias for `Reg<CAP10_SPEC>`"]
pub type CAP10 = crate::Reg<cap10::CAP10_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap10;
#[doc = "MATCH10 register accessor: an alias for `Reg<MATCH10_SPEC>`"]
pub type MATCH10 = crate::Reg<match10::MATCH10_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match10;
#[doc = "CAP11 register accessor: an alias for `Reg<CAP11_SPEC>`"]
pub type CAP11 = crate::Reg<cap11::CAP11_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap11;
#[doc = "MATCH11 register accessor: an alias for `Reg<MATCH11_SPEC>`"]
pub type MATCH11 = crate::Reg<match11::MATCH11_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match11;
#[doc = "CAP12 register accessor: an alias for `Reg<CAP12_SPEC>`"]
pub type CAP12 = crate::Reg<cap12::CAP12_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap12;
#[doc = "MATCH12 register accessor: an alias for `Reg<MATCH12_SPEC>`"]
pub type MATCH12 = crate::Reg<match12::MATCH12_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match12;
#[doc = "CAP13 register accessor: an alias for `Reg<CAP13_SPEC>`"]
pub type CAP13 = crate::Reg<cap13::CAP13_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap13;
#[doc = "MATCH13 register accessor: an alias for `Reg<MATCH13_SPEC>`"]
pub type MATCH13 = crate::Reg<match13::MATCH13_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match13;
#[doc = "CAP14 register accessor: an alias for `Reg<CAP14_SPEC>`"]
pub type CAP14 = crate::Reg<cap14::CAP14_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap14;
#[doc = "MATCH14 register accessor: an alias for `Reg<MATCH14_SPEC>`"]
pub type MATCH14 = crate::Reg<match14::MATCH14_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match14;
#[doc = "CAP15 register accessor: an alias for `Reg<CAP15_SPEC>`"]
pub type CAP15 = crate::Reg<cap15::CAP15_SPEC>;
#[doc = "SCT capture register of capture channel"]
pub mod cap15;
#[doc = "MATCH15 register accessor: an alias for `Reg<MATCH15_SPEC>`"]
pub type MATCH15 = crate::Reg<match15::MATCH15_SPEC>;
#[doc = "SCT match value register of match channels"]
pub mod match15;
#[doc = "CAPCTRL0 register accessor: an alias for `Reg<CAPCTRL0_SPEC>`"]
pub type CAPCTRL0 = crate::Reg<capctrl0::CAPCTRL0_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl0;
#[doc = "MATCHREL0 register accessor: an alias for `Reg<MATCHREL0_SPEC>`"]
pub type MATCHREL0 = crate::Reg<matchrel0::MATCHREL0_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel0;
#[doc = "CAPCTRL1 register accessor: an alias for `Reg<CAPCTRL1_SPEC>`"]
pub type CAPCTRL1 = crate::Reg<capctrl1::CAPCTRL1_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl1;
#[doc = "MATCHREL1 register accessor: an alias for `Reg<MATCHREL1_SPEC>`"]
pub type MATCHREL1 = crate::Reg<matchrel1::MATCHREL1_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel1;
#[doc = "CAPCTRL2 register accessor: an alias for `Reg<CAPCTRL2_SPEC>`"]
pub type CAPCTRL2 = crate::Reg<capctrl2::CAPCTRL2_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl2;
#[doc = "MATCHREL2 register accessor: an alias for `Reg<MATCHREL2_SPEC>`"]
pub type MATCHREL2 = crate::Reg<matchrel2::MATCHREL2_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel2;
#[doc = "CAPCTRL3 register accessor: an alias for `Reg<CAPCTRL3_SPEC>`"]
pub type CAPCTRL3 = crate::Reg<capctrl3::CAPCTRL3_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl3;
#[doc = "MATCHREL3 register accessor: an alias for `Reg<MATCHREL3_SPEC>`"]
pub type MATCHREL3 = crate::Reg<matchrel3::MATCHREL3_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel3;
#[doc = "CAPCTRL4 register accessor: an alias for `Reg<CAPCTRL4_SPEC>`"]
pub type CAPCTRL4 = crate::Reg<capctrl4::CAPCTRL4_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl4;
#[doc = "MATCHREL4 register accessor: an alias for `Reg<MATCHREL4_SPEC>`"]
pub type MATCHREL4 = crate::Reg<matchrel4::MATCHREL4_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel4;
#[doc = "CAPCTRL5 register accessor: an alias for `Reg<CAPCTRL5_SPEC>`"]
pub type CAPCTRL5 = crate::Reg<capctrl5::CAPCTRL5_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl5;
#[doc = "MATCHREL5 register accessor: an alias for `Reg<MATCHREL5_SPEC>`"]
pub type MATCHREL5 = crate::Reg<matchrel5::MATCHREL5_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel5;
#[doc = "CAPCTRL6 register accessor: an alias for `Reg<CAPCTRL6_SPEC>`"]
pub type CAPCTRL6 = crate::Reg<capctrl6::CAPCTRL6_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl6;
#[doc = "MATCHREL6 register accessor: an alias for `Reg<MATCHREL6_SPEC>`"]
pub type MATCHREL6 = crate::Reg<matchrel6::MATCHREL6_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel6;
#[doc = "CAPCTRL7 register accessor: an alias for `Reg<CAPCTRL7_SPEC>`"]
pub type CAPCTRL7 = crate::Reg<capctrl7::CAPCTRL7_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl7;
#[doc = "MATCHREL7 register accessor: an alias for `Reg<MATCHREL7_SPEC>`"]
pub type MATCHREL7 = crate::Reg<matchrel7::MATCHREL7_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel7;
#[doc = "CAPCTRL8 register accessor: an alias for `Reg<CAPCTRL8_SPEC>`"]
pub type CAPCTRL8 = crate::Reg<capctrl8::CAPCTRL8_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl8;
#[doc = "MATCHREL8 register accessor: an alias for `Reg<MATCHREL8_SPEC>`"]
pub type MATCHREL8 = crate::Reg<matchrel8::MATCHREL8_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel8;
#[doc = "CAPCTRL9 register accessor: an alias for `Reg<CAPCTRL9_SPEC>`"]
pub type CAPCTRL9 = crate::Reg<capctrl9::CAPCTRL9_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl9;
#[doc = "MATCHREL9 register accessor: an alias for `Reg<MATCHREL9_SPEC>`"]
pub type MATCHREL9 = crate::Reg<matchrel9::MATCHREL9_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel9;
#[doc = "CAPCTRL10 register accessor: an alias for `Reg<CAPCTRL10_SPEC>`"]
pub type CAPCTRL10 = crate::Reg<capctrl10::CAPCTRL10_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl10;
#[doc = "MATCHREL10 register accessor: an alias for `Reg<MATCHREL10_SPEC>`"]
pub type MATCHREL10 = crate::Reg<matchrel10::MATCHREL10_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel10;
#[doc = "CAPCTRL11 register accessor: an alias for `Reg<CAPCTRL11_SPEC>`"]
pub type CAPCTRL11 = crate::Reg<capctrl11::CAPCTRL11_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl11;
#[doc = "MATCHREL11 register accessor: an alias for `Reg<MATCHREL11_SPEC>`"]
pub type MATCHREL11 = crate::Reg<matchrel11::MATCHREL11_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel11;
#[doc = "CAPCTRL12 register accessor: an alias for `Reg<CAPCTRL12_SPEC>`"]
pub type CAPCTRL12 = crate::Reg<capctrl12::CAPCTRL12_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl12;
#[doc = "MATCHREL12 register accessor: an alias for `Reg<MATCHREL12_SPEC>`"]
pub type MATCHREL12 = crate::Reg<matchrel12::MATCHREL12_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel12;
#[doc = "CAPCTRL13 register accessor: an alias for `Reg<CAPCTRL13_SPEC>`"]
pub type CAPCTRL13 = crate::Reg<capctrl13::CAPCTRL13_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl13;
#[doc = "MATCHREL13 register accessor: an alias for `Reg<MATCHREL13_SPEC>`"]
pub type MATCHREL13 = crate::Reg<matchrel13::MATCHREL13_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel13;
#[doc = "CAPCTRL14 register accessor: an alias for `Reg<CAPCTRL14_SPEC>`"]
pub type CAPCTRL14 = crate::Reg<capctrl14::CAPCTRL14_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl14;
#[doc = "MATCHREL14 register accessor: an alias for `Reg<MATCHREL14_SPEC>`"]
pub type MATCHREL14 = crate::Reg<matchrel14::MATCHREL14_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel14;
#[doc = "CAPCTRL15 register accessor: an alias for `Reg<CAPCTRL15_SPEC>`"]
pub type CAPCTRL15 = crate::Reg<capctrl15::CAPCTRL15_SPEC>;
#[doc = "SCT capture control register"]
pub mod capctrl15;
#[doc = "MATCHREL15 register accessor: an alias for `Reg<MATCHREL15_SPEC>`"]
pub type MATCHREL15 = crate::Reg<matchrel15::MATCHREL15_SPEC>;
#[doc = "SCT match reload value register"]
pub mod matchrel15;