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
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - SCT configuration register"]
    pub config: CONFIG,
    #[doc = "0x04 - SCT control register"]
    pub ctrl: CTRL,
    #[doc = "0x08 - SCT limit event select register"]
    pub limit: LIMIT,
    #[doc = "0x0c - SCT halt event select register"]
    pub halt: HALT,
    #[doc = "0x10 - SCT stop event select register"]
    pub stop: STOP,
    #[doc = "0x14 - SCT start event select register"]
    pub start: START,
    _reserved6: [u8; 40usize],
    #[doc = "0x40 - SCT counter register"]
    pub count: COUNT,
    #[doc = "0x44 - SCT state register"]
    pub state: STATE,
    #[doc = "0x48 - SCT input register"]
    pub input: INPUT,
    #[doc = "0x4c - SCT match/capture mode register"]
    pub regmode: REGMODE,
    #[doc = "0x50 - SCT output register"]
    pub output: OUTPUT,
    #[doc = "0x54 - SCT output counter direction control register"]
    pub outputdirctrl: OUTPUTDIRCTRL,
    #[doc = "0x58 - SCT conflict resolution register"]
    pub res: RES,
    #[doc = "0x5c - SCT DMA request 0 register"]
    pub dma0request: DMA0REQUEST,
    #[doc = "0x60 - SCT DMA request 1 register"]
    pub dma1request: DMA1REQUEST,
    _reserved15: [u8; 140usize],
    #[doc = "0xf0 - SCT event interrupt enable register"]
    pub even: EVEN,
    #[doc = "0xf4 - SCT event flag register"]
    pub evflag: EVFLAG,
    #[doc = "0xf8 - SCT conflict interrupt enable register"]
    pub conen: CONEN,
    #[doc = "0xfc - SCT conflict flag register"]
    pub conflag: CONFLAG,
    _reserved_19_sctcap0: [u8; 4usize],
    _reserved_20_sctcap1: [u8; 4usize],
    _reserved_21_sctcap2: [u8; 4usize],
    _reserved_22_sctcap3: [u8; 4usize],
    _reserved_23_sctcap4: [u8; 4usize],
    _reserved_24_sctcap5: [u8; 4usize],
    _reserved_25_sctcap6: [u8; 4usize],
    _reserved_26_sctcap7: [u8; 4usize],
    _reserved_27_sctcap8: [u8; 4usize],
    _reserved_28_sctcap9: [u8; 4usize],
    _reserved_29_sctcap10: [u8; 4usize],
    _reserved_30_sctcap11: [u8; 4usize],
    _reserved_31_sctcap12: [u8; 4usize],
    _reserved_32_sctcap13: [u8; 4usize],
    _reserved_33_sctcap14: [u8; 4usize],
    _reserved_34_sctcap15: [u8; 4usize],
    _reserved35: [u8; 192usize],
    _reserved_35_sctcapctrl0: [u8; 4usize],
    _reserved_36_sctcapctrl1: [u8; 4usize],
    _reserved_37_sctcapctrl2: [u8; 4usize],
    _reserved_38_sctcapctrl3: [u8; 4usize],
    _reserved_39_sctcapctrl4: [u8; 4usize],
    _reserved_40_sctcapctrl5: [u8; 4usize],
    _reserved_41_sctcapctrl6: [u8; 4usize],
    _reserved_42_sctcapctrl7: [u8; 4usize],
    _reserved_43_sctcapctrl8: [u8; 4usize],
    _reserved_44_sctcapctrl9: [u8; 4usize],
    _reserved_45_sctcapctrl10: [u8; 4usize],
    _reserved_46_sctcapctrl11: [u8; 4usize],
    _reserved_47_sctcapctrl12: [u8; 4usize],
    _reserved_48_sctcapctrl13: [u8; 4usize],
    _reserved_49_sctcapctrl14: [u8; 4usize],
    _reserved_50_sctcapctrl15: [u8; 4usize],
    _reserved51: [u8; 192usize],
    #[doc = "0x300 - no description available"]
    pub event: [EVENT; 16],
    _reserved52: [u8; 384usize],
    #[doc = "0x500 - no description available"]
    pub out: [OUT; 10],
}
impl RegisterBlock {
    #[doc = "0x100 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch0(&self) -> &SCTMATCH0 {
        unsafe { &*(((self as *const Self) as *const u8).add(256usize) as *const SCTMATCH0) }
    }
    #[doc = "0x100 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch0_mut(&self) -> &mut SCTMATCH0 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(256usize) as *mut SCTMATCH0) }
    }
    #[doc = "0x100 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap0(&self) -> &SCTCAP0 {
        unsafe { &*(((self as *const Self) as *const u8).add(256usize) as *const SCTCAP0) }
    }
    #[doc = "0x100 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap0_mut(&self) -> &mut SCTCAP0 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(256usize) as *mut SCTCAP0) }
    }
    #[doc = "0x104 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch1(&self) -> &SCTMATCH1 {
        unsafe { &*(((self as *const Self) as *const u8).add(260usize) as *const SCTMATCH1) }
    }
    #[doc = "0x104 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch1_mut(&self) -> &mut SCTMATCH1 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(260usize) as *mut SCTMATCH1) }
    }
    #[doc = "0x104 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap1(&self) -> &SCTCAP1 {
        unsafe { &*(((self as *const Self) as *const u8).add(260usize) as *const SCTCAP1) }
    }
    #[doc = "0x104 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap1_mut(&self) -> &mut SCTCAP1 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(260usize) as *mut SCTCAP1) }
    }
    #[doc = "0x108 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch2(&self) -> &SCTMATCH2 {
        unsafe { &*(((self as *const Self) as *const u8).add(264usize) as *const SCTMATCH2) }
    }
    #[doc = "0x108 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch2_mut(&self) -> &mut SCTMATCH2 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(264usize) as *mut SCTMATCH2) }
    }
    #[doc = "0x108 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap2(&self) -> &SCTCAP2 {
        unsafe { &*(((self as *const Self) as *const u8).add(264usize) as *const SCTCAP2) }
    }
    #[doc = "0x108 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap2_mut(&self) -> &mut SCTCAP2 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(264usize) as *mut SCTCAP2) }
    }
    #[doc = "0x10c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch3(&self) -> &SCTMATCH3 {
        unsafe { &*(((self as *const Self) as *const u8).add(268usize) as *const SCTMATCH3) }
    }
    #[doc = "0x10c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch3_mut(&self) -> &mut SCTMATCH3 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(268usize) as *mut SCTMATCH3) }
    }
    #[doc = "0x10c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap3(&self) -> &SCTCAP3 {
        unsafe { &*(((self as *const Self) as *const u8).add(268usize) as *const SCTCAP3) }
    }
    #[doc = "0x10c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap3_mut(&self) -> &mut SCTCAP3 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(268usize) as *mut SCTCAP3) }
    }
    #[doc = "0x110 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch4(&self) -> &SCTMATCH4 {
        unsafe { &*(((self as *const Self) as *const u8).add(272usize) as *const SCTMATCH4) }
    }
    #[doc = "0x110 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch4_mut(&self) -> &mut SCTMATCH4 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(272usize) as *mut SCTMATCH4) }
    }
    #[doc = "0x110 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap4(&self) -> &SCTCAP4 {
        unsafe { &*(((self as *const Self) as *const u8).add(272usize) as *const SCTCAP4) }
    }
    #[doc = "0x110 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap4_mut(&self) -> &mut SCTCAP4 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(272usize) as *mut SCTCAP4) }
    }
    #[doc = "0x114 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch5(&self) -> &SCTMATCH5 {
        unsafe { &*(((self as *const Self) as *const u8).add(276usize) as *const SCTMATCH5) }
    }
    #[doc = "0x114 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch5_mut(&self) -> &mut SCTMATCH5 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(276usize) as *mut SCTMATCH5) }
    }
    #[doc = "0x114 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap5(&self) -> &SCTCAP5 {
        unsafe { &*(((self as *const Self) as *const u8).add(276usize) as *const SCTCAP5) }
    }
    #[doc = "0x114 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap5_mut(&self) -> &mut SCTCAP5 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(276usize) as *mut SCTCAP5) }
    }
    #[doc = "0x118 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch6(&self) -> &SCTMATCH6 {
        unsafe { &*(((self as *const Self) as *const u8).add(280usize) as *const SCTMATCH6) }
    }
    #[doc = "0x118 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch6_mut(&self) -> &mut SCTMATCH6 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(280usize) as *mut SCTMATCH6) }
    }
    #[doc = "0x118 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap6(&self) -> &SCTCAP6 {
        unsafe { &*(((self as *const Self) as *const u8).add(280usize) as *const SCTCAP6) }
    }
    #[doc = "0x118 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap6_mut(&self) -> &mut SCTCAP6 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(280usize) as *mut SCTCAP6) }
    }
    #[doc = "0x11c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch7(&self) -> &SCTMATCH7 {
        unsafe { &*(((self as *const Self) as *const u8).add(284usize) as *const SCTMATCH7) }
    }
    #[doc = "0x11c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch7_mut(&self) -> &mut SCTMATCH7 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(284usize) as *mut SCTMATCH7) }
    }
    #[doc = "0x11c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap7(&self) -> &SCTCAP7 {
        unsafe { &*(((self as *const Self) as *const u8).add(284usize) as *const SCTCAP7) }
    }
    #[doc = "0x11c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap7_mut(&self) -> &mut SCTCAP7 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(284usize) as *mut SCTCAP7) }
    }
    #[doc = "0x120 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch8(&self) -> &SCTMATCH8 {
        unsafe { &*(((self as *const Self) as *const u8).add(288usize) as *const SCTMATCH8) }
    }
    #[doc = "0x120 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch8_mut(&self) -> &mut SCTMATCH8 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(288usize) as *mut SCTMATCH8) }
    }
    #[doc = "0x120 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap8(&self) -> &SCTCAP8 {
        unsafe { &*(((self as *const Self) as *const u8).add(288usize) as *const SCTCAP8) }
    }
    #[doc = "0x120 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap8_mut(&self) -> &mut SCTCAP8 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(288usize) as *mut SCTCAP8) }
    }
    #[doc = "0x124 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch9(&self) -> &SCTMATCH9 {
        unsafe { &*(((self as *const Self) as *const u8).add(292usize) as *const SCTMATCH9) }
    }
    #[doc = "0x124 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch9_mut(&self) -> &mut SCTMATCH9 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(292usize) as *mut SCTMATCH9) }
    }
    #[doc = "0x124 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap9(&self) -> &SCTCAP9 {
        unsafe { &*(((self as *const Self) as *const u8).add(292usize) as *const SCTCAP9) }
    }
    #[doc = "0x124 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap9_mut(&self) -> &mut SCTCAP9 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(292usize) as *mut SCTCAP9) }
    }
    #[doc = "0x128 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch10(&self) -> &SCTMATCH10 {
        unsafe { &*(((self as *const Self) as *const u8).add(296usize) as *const SCTMATCH10) }
    }
    #[doc = "0x128 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch10_mut(&self) -> &mut SCTMATCH10 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(296usize) as *mut SCTMATCH10) }
    }
    #[doc = "0x128 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap10(&self) -> &SCTCAP10 {
        unsafe { &*(((self as *const Self) as *const u8).add(296usize) as *const SCTCAP10) }
    }
    #[doc = "0x128 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap10_mut(&self) -> &mut SCTCAP10 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(296usize) as *mut SCTCAP10) }
    }
    #[doc = "0x12c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch11(&self) -> &SCTMATCH11 {
        unsafe { &*(((self as *const Self) as *const u8).add(300usize) as *const SCTMATCH11) }
    }
    #[doc = "0x12c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch11_mut(&self) -> &mut SCTMATCH11 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(300usize) as *mut SCTMATCH11) }
    }
    #[doc = "0x12c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap11(&self) -> &SCTCAP11 {
        unsafe { &*(((self as *const Self) as *const u8).add(300usize) as *const SCTCAP11) }
    }
    #[doc = "0x12c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap11_mut(&self) -> &mut SCTCAP11 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(300usize) as *mut SCTCAP11) }
    }
    #[doc = "0x130 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch12(&self) -> &SCTMATCH12 {
        unsafe { &*(((self as *const Self) as *const u8).add(304usize) as *const SCTMATCH12) }
    }
    #[doc = "0x130 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch12_mut(&self) -> &mut SCTMATCH12 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(304usize) as *mut SCTMATCH12) }
    }
    #[doc = "0x130 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap12(&self) -> &SCTCAP12 {
        unsafe { &*(((self as *const Self) as *const u8).add(304usize) as *const SCTCAP12) }
    }
    #[doc = "0x130 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap12_mut(&self) -> &mut SCTCAP12 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(304usize) as *mut SCTCAP12) }
    }
    #[doc = "0x134 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch13(&self) -> &SCTMATCH13 {
        unsafe { &*(((self as *const Self) as *const u8).add(308usize) as *const SCTMATCH13) }
    }
    #[doc = "0x134 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch13_mut(&self) -> &mut SCTMATCH13 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(308usize) as *mut SCTMATCH13) }
    }
    #[doc = "0x134 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap13(&self) -> &SCTCAP13 {
        unsafe { &*(((self as *const Self) as *const u8).add(308usize) as *const SCTCAP13) }
    }
    #[doc = "0x134 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap13_mut(&self) -> &mut SCTCAP13 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(308usize) as *mut SCTCAP13) }
    }
    #[doc = "0x138 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch14(&self) -> &SCTMATCH14 {
        unsafe { &*(((self as *const Self) as *const u8).add(312usize) as *const SCTMATCH14) }
    }
    #[doc = "0x138 - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch14_mut(&self) -> &mut SCTMATCH14 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(312usize) as *mut SCTMATCH14) }
    }
    #[doc = "0x138 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap14(&self) -> &SCTCAP14 {
        unsafe { &*(((self as *const Self) as *const u8).add(312usize) as *const SCTCAP14) }
    }
    #[doc = "0x138 - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap14_mut(&self) -> &mut SCTCAP14 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(312usize) as *mut SCTCAP14) }
    }
    #[doc = "0x13c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch15(&self) -> &SCTMATCH15 {
        unsafe { &*(((self as *const Self) as *const u8).add(316usize) as *const SCTMATCH15) }
    }
    #[doc = "0x13c - SCT match value register of match channels"]
    #[inline(always)]
    pub fn sctmatch15_mut(&self) -> &mut SCTMATCH15 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(316usize) as *mut SCTMATCH15) }
    }
    #[doc = "0x13c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap15(&self) -> &SCTCAP15 {
        unsafe { &*(((self as *const Self) as *const u8).add(316usize) as *const SCTCAP15) }
    }
    #[doc = "0x13c - SCT capture register of capture channel"]
    #[inline(always)]
    pub fn sctcap15_mut(&self) -> &mut SCTCAP15 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(316usize) as *mut SCTCAP15) }
    }
    #[doc = "0x200 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel0(&self) -> &SCTMATCHREL0 {
        unsafe { &*(((self as *const Self) as *const u8).add(512usize) as *const SCTMATCHREL0) }
    }
    #[doc = "0x200 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel0_mut(&self) -> &mut SCTMATCHREL0 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(512usize) as *mut SCTMATCHREL0) }
    }
    #[doc = "0x200 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl0(&self) -> &SCTCAPCTRL0 {
        unsafe { &*(((self as *const Self) as *const u8).add(512usize) as *const SCTCAPCTRL0) }
    }
    #[doc = "0x200 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl0_mut(&self) -> &mut SCTCAPCTRL0 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(512usize) as *mut SCTCAPCTRL0) }
    }
    #[doc = "0x204 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel1(&self) -> &SCTMATCHREL1 {
        unsafe { &*(((self as *const Self) as *const u8).add(516usize) as *const SCTMATCHREL1) }
    }
    #[doc = "0x204 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel1_mut(&self) -> &mut SCTMATCHREL1 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(516usize) as *mut SCTMATCHREL1) }
    }
    #[doc = "0x204 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl1(&self) -> &SCTCAPCTRL1 {
        unsafe { &*(((self as *const Self) as *const u8).add(516usize) as *const SCTCAPCTRL1) }
    }
    #[doc = "0x204 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl1_mut(&self) -> &mut SCTCAPCTRL1 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(516usize) as *mut SCTCAPCTRL1) }
    }
    #[doc = "0x208 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel2(&self) -> &SCTMATCHREL2 {
        unsafe { &*(((self as *const Self) as *const u8).add(520usize) as *const SCTMATCHREL2) }
    }
    #[doc = "0x208 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel2_mut(&self) -> &mut SCTMATCHREL2 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(520usize) as *mut SCTMATCHREL2) }
    }
    #[doc = "0x208 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl2(&self) -> &SCTCAPCTRL2 {
        unsafe { &*(((self as *const Self) as *const u8).add(520usize) as *const SCTCAPCTRL2) }
    }
    #[doc = "0x208 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl2_mut(&self) -> &mut SCTCAPCTRL2 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(520usize) as *mut SCTCAPCTRL2) }
    }
    #[doc = "0x20c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel3(&self) -> &SCTMATCHREL3 {
        unsafe { &*(((self as *const Self) as *const u8).add(524usize) as *const SCTMATCHREL3) }
    }
    #[doc = "0x20c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel3_mut(&self) -> &mut SCTMATCHREL3 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(524usize) as *mut SCTMATCHREL3) }
    }
    #[doc = "0x20c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl3(&self) -> &SCTCAPCTRL3 {
        unsafe { &*(((self as *const Self) as *const u8).add(524usize) as *const SCTCAPCTRL3) }
    }
    #[doc = "0x20c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl3_mut(&self) -> &mut SCTCAPCTRL3 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(524usize) as *mut SCTCAPCTRL3) }
    }
    #[doc = "0x210 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel4(&self) -> &SCTMATCHREL4 {
        unsafe { &*(((self as *const Self) as *const u8).add(528usize) as *const SCTMATCHREL4) }
    }
    #[doc = "0x210 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel4_mut(&self) -> &mut SCTMATCHREL4 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(528usize) as *mut SCTMATCHREL4) }
    }
    #[doc = "0x210 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl4(&self) -> &SCTCAPCTRL4 {
        unsafe { &*(((self as *const Self) as *const u8).add(528usize) as *const SCTCAPCTRL4) }
    }
    #[doc = "0x210 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl4_mut(&self) -> &mut SCTCAPCTRL4 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(528usize) as *mut SCTCAPCTRL4) }
    }
    #[doc = "0x214 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel5(&self) -> &SCTMATCHREL5 {
        unsafe { &*(((self as *const Self) as *const u8).add(532usize) as *const SCTMATCHREL5) }
    }
    #[doc = "0x214 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel5_mut(&self) -> &mut SCTMATCHREL5 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(532usize) as *mut SCTMATCHREL5) }
    }
    #[doc = "0x214 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl5(&self) -> &SCTCAPCTRL5 {
        unsafe { &*(((self as *const Self) as *const u8).add(532usize) as *const SCTCAPCTRL5) }
    }
    #[doc = "0x214 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl5_mut(&self) -> &mut SCTCAPCTRL5 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(532usize) as *mut SCTCAPCTRL5) }
    }
    #[doc = "0x218 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel6(&self) -> &SCTMATCHREL6 {
        unsafe { &*(((self as *const Self) as *const u8).add(536usize) as *const SCTMATCHREL6) }
    }
    #[doc = "0x218 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel6_mut(&self) -> &mut SCTMATCHREL6 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(536usize) as *mut SCTMATCHREL6) }
    }
    #[doc = "0x218 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl6(&self) -> &SCTCAPCTRL6 {
        unsafe { &*(((self as *const Self) as *const u8).add(536usize) as *const SCTCAPCTRL6) }
    }
    #[doc = "0x218 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl6_mut(&self) -> &mut SCTCAPCTRL6 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(536usize) as *mut SCTCAPCTRL6) }
    }
    #[doc = "0x21c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel7(&self) -> &SCTMATCHREL7 {
        unsafe { &*(((self as *const Self) as *const u8).add(540usize) as *const SCTMATCHREL7) }
    }
    #[doc = "0x21c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel7_mut(&self) -> &mut SCTMATCHREL7 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(540usize) as *mut SCTMATCHREL7) }
    }
    #[doc = "0x21c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl7(&self) -> &SCTCAPCTRL7 {
        unsafe { &*(((self as *const Self) as *const u8).add(540usize) as *const SCTCAPCTRL7) }
    }
    #[doc = "0x21c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl7_mut(&self) -> &mut SCTCAPCTRL7 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(540usize) as *mut SCTCAPCTRL7) }
    }
    #[doc = "0x220 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel8(&self) -> &SCTMATCHREL8 {
        unsafe { &*(((self as *const Self) as *const u8).add(544usize) as *const SCTMATCHREL8) }
    }
    #[doc = "0x220 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel8_mut(&self) -> &mut SCTMATCHREL8 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(544usize) as *mut SCTMATCHREL8) }
    }
    #[doc = "0x220 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl8(&self) -> &SCTCAPCTRL8 {
        unsafe { &*(((self as *const Self) as *const u8).add(544usize) as *const SCTCAPCTRL8) }
    }
    #[doc = "0x220 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl8_mut(&self) -> &mut SCTCAPCTRL8 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(544usize) as *mut SCTCAPCTRL8) }
    }
    #[doc = "0x224 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel9(&self) -> &SCTMATCHREL9 {
        unsafe { &*(((self as *const Self) as *const u8).add(548usize) as *const SCTMATCHREL9) }
    }
    #[doc = "0x224 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel9_mut(&self) -> &mut SCTMATCHREL9 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(548usize) as *mut SCTMATCHREL9) }
    }
    #[doc = "0x224 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl9(&self) -> &SCTCAPCTRL9 {
        unsafe { &*(((self as *const Self) as *const u8).add(548usize) as *const SCTCAPCTRL9) }
    }
    #[doc = "0x224 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl9_mut(&self) -> &mut SCTCAPCTRL9 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(548usize) as *mut SCTCAPCTRL9) }
    }
    #[doc = "0x228 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel10(&self) -> &SCTMATCHREL10 {
        unsafe { &*(((self as *const Self) as *const u8).add(552usize) as *const SCTMATCHREL10) }
    }
    #[doc = "0x228 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel10_mut(&self) -> &mut SCTMATCHREL10 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(552usize) as *mut SCTMATCHREL10) }
    }
    #[doc = "0x228 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl10(&self) -> &SCTCAPCTRL10 {
        unsafe { &*(((self as *const Self) as *const u8).add(552usize) as *const SCTCAPCTRL10) }
    }
    #[doc = "0x228 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl10_mut(&self) -> &mut SCTCAPCTRL10 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(552usize) as *mut SCTCAPCTRL10) }
    }
    #[doc = "0x22c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel11(&self) -> &SCTMATCHREL11 {
        unsafe { &*(((self as *const Self) as *const u8).add(556usize) as *const SCTMATCHREL11) }
    }
    #[doc = "0x22c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel11_mut(&self) -> &mut SCTMATCHREL11 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(556usize) as *mut SCTMATCHREL11) }
    }
    #[doc = "0x22c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl11(&self) -> &SCTCAPCTRL11 {
        unsafe { &*(((self as *const Self) as *const u8).add(556usize) as *const SCTCAPCTRL11) }
    }
    #[doc = "0x22c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl11_mut(&self) -> &mut SCTCAPCTRL11 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(556usize) as *mut SCTCAPCTRL11) }
    }
    #[doc = "0x230 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel12(&self) -> &SCTMATCHREL12 {
        unsafe { &*(((self as *const Self) as *const u8).add(560usize) as *const SCTMATCHREL12) }
    }
    #[doc = "0x230 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel12_mut(&self) -> &mut SCTMATCHREL12 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(560usize) as *mut SCTMATCHREL12) }
    }
    #[doc = "0x230 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl12(&self) -> &SCTCAPCTRL12 {
        unsafe { &*(((self as *const Self) as *const u8).add(560usize) as *const SCTCAPCTRL12) }
    }
    #[doc = "0x230 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl12_mut(&self) -> &mut SCTCAPCTRL12 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(560usize) as *mut SCTCAPCTRL12) }
    }
    #[doc = "0x234 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel13(&self) -> &SCTMATCHREL13 {
        unsafe { &*(((self as *const Self) as *const u8).add(564usize) as *const SCTMATCHREL13) }
    }
    #[doc = "0x234 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel13_mut(&self) -> &mut SCTMATCHREL13 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(564usize) as *mut SCTMATCHREL13) }
    }
    #[doc = "0x234 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl13(&self) -> &SCTCAPCTRL13 {
        unsafe { &*(((self as *const Self) as *const u8).add(564usize) as *const SCTCAPCTRL13) }
    }
    #[doc = "0x234 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl13_mut(&self) -> &mut SCTCAPCTRL13 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(564usize) as *mut SCTCAPCTRL13) }
    }
    #[doc = "0x238 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel14(&self) -> &SCTMATCHREL14 {
        unsafe { &*(((self as *const Self) as *const u8).add(568usize) as *const SCTMATCHREL14) }
    }
    #[doc = "0x238 - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel14_mut(&self) -> &mut SCTMATCHREL14 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(568usize) as *mut SCTMATCHREL14) }
    }
    #[doc = "0x238 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl14(&self) -> &SCTCAPCTRL14 {
        unsafe { &*(((self as *const Self) as *const u8).add(568usize) as *const SCTCAPCTRL14) }
    }
    #[doc = "0x238 - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl14_mut(&self) -> &mut SCTCAPCTRL14 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(568usize) as *mut SCTCAPCTRL14) }
    }
    #[doc = "0x23c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel15(&self) -> &SCTMATCHREL15 {
        unsafe { &*(((self as *const Self) as *const u8).add(572usize) as *const SCTMATCHREL15) }
    }
    #[doc = "0x23c - SCT match reload value register"]
    #[inline(always)]
    pub fn sctmatchrel15_mut(&self) -> &mut SCTMATCHREL15 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(572usize) as *mut SCTMATCHREL15) }
    }
    #[doc = "0x23c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl15(&self) -> &SCTCAPCTRL15 {
        unsafe { &*(((self as *const Self) as *const u8).add(572usize) as *const SCTCAPCTRL15) }
    }
    #[doc = "0x23c - SCT capture control register"]
    #[inline(always)]
    pub fn sctcapctrl15_mut(&self) -> &mut SCTCAPCTRL15 {
        unsafe { &mut *(((self as *const Self) as *mut u8).add(572usize) as *mut SCTCAPCTRL15) }
    }
}
#[doc = r"Register block"]
#[repr(C)]
pub struct EVENT {
    #[doc = "0x00 - SCT event state register 0"]
    pub state: self::event::STATE,
    #[doc = "0x04 - SCT event control register 0"]
    pub ctrl: self::event::CTRL,
}
#[doc = r"Register block"]
#[doc = "no description available"]
pub mod event;
#[doc = r"Register block"]
#[repr(C)]
pub struct OUT {
    #[doc = "0x00 - SCT output 0 set register"]
    pub set: self::out::SET,
    #[doc = "0x04 - SCT output 0 clear register"]
    pub clr: self::out::CLR,
}
#[doc = r"Register block"]
#[doc = "no description available"]
pub mod out;
#[doc = "SCT configuration register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [config](config) module"]
pub type CONFIG = crate::Reg<u32, _CONFIG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CONFIG;
#[doc = "`read()` method returns [config::R](config::R) reader structure"]
impl crate::Readable for CONFIG {}
#[doc = "`write(|w| ..)` method takes [config::W](config::W) writer structure"]
impl crate::Writable for CONFIG {}
#[doc = "SCT configuration register"]
pub mod config;
#[doc = "SCT control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [ctrl](ctrl) module"]
pub type CTRL = crate::Reg<u32, _CTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CTRL;
#[doc = "`read()` method returns [ctrl::R](ctrl::R) reader structure"]
impl crate::Readable for CTRL {}
#[doc = "`write(|w| ..)` method takes [ctrl::W](ctrl::W) writer structure"]
impl crate::Writable for CTRL {}
#[doc = "SCT control register"]
pub mod ctrl;
#[doc = "SCT limit event select register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [limit](limit) module"]
pub type LIMIT = crate::Reg<u32, _LIMIT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _LIMIT;
#[doc = "`read()` method returns [limit::R](limit::R) reader structure"]
impl crate::Readable for LIMIT {}
#[doc = "`write(|w| ..)` method takes [limit::W](limit::W) writer structure"]
impl crate::Writable for LIMIT {}
#[doc = "SCT limit event select register"]
pub mod limit;
#[doc = "SCT halt event select register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [halt](halt) module"]
pub type HALT = crate::Reg<u32, _HALT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _HALT;
#[doc = "`read()` method returns [halt::R](halt::R) reader structure"]
impl crate::Readable for HALT {}
#[doc = "`write(|w| ..)` method takes [halt::W](halt::W) writer structure"]
impl crate::Writable for HALT {}
#[doc = "SCT halt event select register"]
pub mod halt;
#[doc = "SCT stop event select register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [stop](stop) module"]
pub type STOP = crate::Reg<u32, _STOP>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _STOP;
#[doc = "`read()` method returns [stop::R](stop::R) reader structure"]
impl crate::Readable for STOP {}
#[doc = "`write(|w| ..)` method takes [stop::W](stop::W) writer structure"]
impl crate::Writable for STOP {}
#[doc = "SCT stop event select register"]
pub mod stop;
#[doc = "SCT start event select register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [start](start) module"]
pub type START = crate::Reg<u32, _START>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _START;
#[doc = "`read()` method returns [start::R](start::R) reader structure"]
impl crate::Readable for START {}
#[doc = "`write(|w| ..)` method takes [start::W](start::W) writer structure"]
impl crate::Writable for START {}
#[doc = "SCT start event select register"]
pub mod start;
#[doc = "SCT counter register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [count](count) module"]
pub type COUNT = crate::Reg<u32, _COUNT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _COUNT;
#[doc = "`read()` method returns [count::R](count::R) reader structure"]
impl crate::Readable for COUNT {}
#[doc = "`write(|w| ..)` method takes [count::W](count::W) writer structure"]
impl crate::Writable for COUNT {}
#[doc = "SCT counter register"]
pub mod count;
#[doc = "SCT state register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [state](state) module"]
pub type STATE = crate::Reg<u32, _STATE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _STATE;
#[doc = "`read()` method returns [state::R](state::R) reader structure"]
impl crate::Readable for STATE {}
#[doc = "`write(|w| ..)` method takes [state::W](state::W) writer structure"]
impl crate::Writable for STATE {}
#[doc = "SCT state register"]
pub mod state;
#[doc = "SCT input register\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [input](input) module"]
pub type INPUT = crate::Reg<u32, _INPUT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _INPUT;
#[doc = "`read()` method returns [input::R](input::R) reader structure"]
impl crate::Readable for INPUT {}
#[doc = "SCT input register"]
pub mod input;
#[doc = "SCT match/capture mode register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [regmode](regmode) module"]
pub type REGMODE = crate::Reg<u32, _REGMODE>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _REGMODE;
#[doc = "`read()` method returns [regmode::R](regmode::R) reader structure"]
impl crate::Readable for REGMODE {}
#[doc = "`write(|w| ..)` method takes [regmode::W](regmode::W) writer structure"]
impl crate::Writable for REGMODE {}
#[doc = "SCT match/capture mode register"]
pub mod regmode;
#[doc = "SCT output register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [output](output) module"]
pub type OUTPUT = crate::Reg<u32, _OUTPUT>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _OUTPUT;
#[doc = "`read()` method returns [output::R](output::R) reader structure"]
impl crate::Readable for OUTPUT {}
#[doc = "`write(|w| ..)` method takes [output::W](output::W) writer structure"]
impl crate::Writable for OUTPUT {}
#[doc = "SCT output register"]
pub mod output;
#[doc = "SCT output counter direction control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [outputdirctrl](outputdirctrl) module"]
pub type OUTPUTDIRCTRL = crate::Reg<u32, _OUTPUTDIRCTRL>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _OUTPUTDIRCTRL;
#[doc = "`read()` method returns [outputdirctrl::R](outputdirctrl::R) reader structure"]
impl crate::Readable for OUTPUTDIRCTRL {}
#[doc = "`write(|w| ..)` method takes [outputdirctrl::W](outputdirctrl::W) writer structure"]
impl crate::Writable for OUTPUTDIRCTRL {}
#[doc = "SCT output counter direction control register"]
pub mod outputdirctrl;
#[doc = "SCT conflict resolution register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [res](res) module"]
pub type RES = crate::Reg<u32, _RES>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _RES;
#[doc = "`read()` method returns [res::R](res::R) reader structure"]
impl crate::Readable for RES {}
#[doc = "`write(|w| ..)` method takes [res::W](res::W) writer structure"]
impl crate::Writable for RES {}
#[doc = "SCT conflict resolution register"]
pub mod res;
#[doc = "SCT DMA request 0 register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [dma0request](dma0request) module"]
pub type DMA0REQUEST = crate::Reg<u32, _DMA0REQUEST>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DMA0REQUEST;
#[doc = "`read()` method returns [dma0request::R](dma0request::R) reader structure"]
impl crate::Readable for DMA0REQUEST {}
#[doc = "`write(|w| ..)` method takes [dma0request::W](dma0request::W) writer structure"]
impl crate::Writable for DMA0REQUEST {}
#[doc = "SCT DMA request 0 register"]
pub mod dma0request;
#[doc = "SCT DMA request 1 register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [dma1request](dma1request) module"]
pub type DMA1REQUEST = crate::Reg<u32, _DMA1REQUEST>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _DMA1REQUEST;
#[doc = "`read()` method returns [dma1request::R](dma1request::R) reader structure"]
impl crate::Readable for DMA1REQUEST {}
#[doc = "`write(|w| ..)` method takes [dma1request::W](dma1request::W) writer structure"]
impl crate::Writable for DMA1REQUEST {}
#[doc = "SCT DMA request 1 register"]
pub mod dma1request;
#[doc = "SCT event interrupt enable register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [even](even) module"]
pub type EVEN = crate::Reg<u32, _EVEN>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EVEN;
#[doc = "`read()` method returns [even::R](even::R) reader structure"]
impl crate::Readable for EVEN {}
#[doc = "`write(|w| ..)` method takes [even::W](even::W) writer structure"]
impl crate::Writable for EVEN {}
#[doc = "SCT event interrupt enable register"]
pub mod even;
#[doc = "SCT event flag register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [evflag](evflag) module"]
pub type EVFLAG = crate::Reg<u32, _EVFLAG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _EVFLAG;
#[doc = "`read()` method returns [evflag::R](evflag::R) reader structure"]
impl crate::Readable for EVFLAG {}
#[doc = "`write(|w| ..)` method takes [evflag::W](evflag::W) writer structure"]
impl crate::Writable for EVFLAG {}
#[doc = "SCT event flag register"]
pub mod evflag;
#[doc = "SCT conflict interrupt enable register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [conen](conen) module"]
pub type CONEN = crate::Reg<u32, _CONEN>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CONEN;
#[doc = "`read()` method returns [conen::R](conen::R) reader structure"]
impl crate::Readable for CONEN {}
#[doc = "`write(|w| ..)` method takes [conen::W](conen::W) writer structure"]
impl crate::Writable for CONEN {}
#[doc = "SCT conflict interrupt enable register"]
pub mod conen;
#[doc = "SCT conflict flag register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [conflag](conflag) module"]
pub type CONFLAG = crate::Reg<u32, _CONFLAG>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _CONFLAG;
#[doc = "`read()` method returns [conflag::R](conflag::R) reader structure"]
impl crate::Readable for CONFLAG {}
#[doc = "`write(|w| ..)` method takes [conflag::W](conflag::W) writer structure"]
impl crate::Writable for CONFLAG {}
#[doc = "SCT conflict flag register"]
pub mod conflag;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap0](sctcap0) module"]
pub type SCTCAP0 = crate::Reg<u32, _SCTCAP0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP0;
#[doc = "`read()` method returns [sctcap0::R](sctcap0::R) reader structure"]
impl crate::Readable for SCTCAP0 {}
#[doc = "`write(|w| ..)` method takes [sctcap0::W](sctcap0::W) writer structure"]
impl crate::Writable for SCTCAP0 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap0;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch0](sctmatch0) module"]
pub type SCTMATCH0 = crate::Reg<u32, _SCTMATCH0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH0;
#[doc = "`read()` method returns [sctmatch0::R](sctmatch0::R) reader structure"]
impl crate::Readable for SCTMATCH0 {}
#[doc = "`write(|w| ..)` method takes [sctmatch0::W](sctmatch0::W) writer structure"]
impl crate::Writable for SCTMATCH0 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch0;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap1](sctcap1) module"]
pub type SCTCAP1 = crate::Reg<u32, _SCTCAP1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP1;
#[doc = "`read()` method returns [sctcap1::R](sctcap1::R) reader structure"]
impl crate::Readable for SCTCAP1 {}
#[doc = "`write(|w| ..)` method takes [sctcap1::W](sctcap1::W) writer structure"]
impl crate::Writable for SCTCAP1 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap1;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch1](sctmatch1) module"]
pub type SCTMATCH1 = crate::Reg<u32, _SCTMATCH1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH1;
#[doc = "`read()` method returns [sctmatch1::R](sctmatch1::R) reader structure"]
impl crate::Readable for SCTMATCH1 {}
#[doc = "`write(|w| ..)` method takes [sctmatch1::W](sctmatch1::W) writer structure"]
impl crate::Writable for SCTMATCH1 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch1;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap2](sctcap2) module"]
pub type SCTCAP2 = crate::Reg<u32, _SCTCAP2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP2;
#[doc = "`read()` method returns [sctcap2::R](sctcap2::R) reader structure"]
impl crate::Readable for SCTCAP2 {}
#[doc = "`write(|w| ..)` method takes [sctcap2::W](sctcap2::W) writer structure"]
impl crate::Writable for SCTCAP2 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap2;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch2](sctmatch2) module"]
pub type SCTMATCH2 = crate::Reg<u32, _SCTMATCH2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH2;
#[doc = "`read()` method returns [sctmatch2::R](sctmatch2::R) reader structure"]
impl crate::Readable for SCTMATCH2 {}
#[doc = "`write(|w| ..)` method takes [sctmatch2::W](sctmatch2::W) writer structure"]
impl crate::Writable for SCTMATCH2 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch2;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap3](sctcap3) module"]
pub type SCTCAP3 = crate::Reg<u32, _SCTCAP3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP3;
#[doc = "`read()` method returns [sctcap3::R](sctcap3::R) reader structure"]
impl crate::Readable for SCTCAP3 {}
#[doc = "`write(|w| ..)` method takes [sctcap3::W](sctcap3::W) writer structure"]
impl crate::Writable for SCTCAP3 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap3;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch3](sctmatch3) module"]
pub type SCTMATCH3 = crate::Reg<u32, _SCTMATCH3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH3;
#[doc = "`read()` method returns [sctmatch3::R](sctmatch3::R) reader structure"]
impl crate::Readable for SCTMATCH3 {}
#[doc = "`write(|w| ..)` method takes [sctmatch3::W](sctmatch3::W) writer structure"]
impl crate::Writable for SCTMATCH3 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch3;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap4](sctcap4) module"]
pub type SCTCAP4 = crate::Reg<u32, _SCTCAP4>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP4;
#[doc = "`read()` method returns [sctcap4::R](sctcap4::R) reader structure"]
impl crate::Readable for SCTCAP4 {}
#[doc = "`write(|w| ..)` method takes [sctcap4::W](sctcap4::W) writer structure"]
impl crate::Writable for SCTCAP4 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap4;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch4](sctmatch4) module"]
pub type SCTMATCH4 = crate::Reg<u32, _SCTMATCH4>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH4;
#[doc = "`read()` method returns [sctmatch4::R](sctmatch4::R) reader structure"]
impl crate::Readable for SCTMATCH4 {}
#[doc = "`write(|w| ..)` method takes [sctmatch4::W](sctmatch4::W) writer structure"]
impl crate::Writable for SCTMATCH4 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch4;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap5](sctcap5) module"]
pub type SCTCAP5 = crate::Reg<u32, _SCTCAP5>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP5;
#[doc = "`read()` method returns [sctcap5::R](sctcap5::R) reader structure"]
impl crate::Readable for SCTCAP5 {}
#[doc = "`write(|w| ..)` method takes [sctcap5::W](sctcap5::W) writer structure"]
impl crate::Writable for SCTCAP5 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap5;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch5](sctmatch5) module"]
pub type SCTMATCH5 = crate::Reg<u32, _SCTMATCH5>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH5;
#[doc = "`read()` method returns [sctmatch5::R](sctmatch5::R) reader structure"]
impl crate::Readable for SCTMATCH5 {}
#[doc = "`write(|w| ..)` method takes [sctmatch5::W](sctmatch5::W) writer structure"]
impl crate::Writable for SCTMATCH5 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch5;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap6](sctcap6) module"]
pub type SCTCAP6 = crate::Reg<u32, _SCTCAP6>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP6;
#[doc = "`read()` method returns [sctcap6::R](sctcap6::R) reader structure"]
impl crate::Readable for SCTCAP6 {}
#[doc = "`write(|w| ..)` method takes [sctcap6::W](sctcap6::W) writer structure"]
impl crate::Writable for SCTCAP6 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap6;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch6](sctmatch6) module"]
pub type SCTMATCH6 = crate::Reg<u32, _SCTMATCH6>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH6;
#[doc = "`read()` method returns [sctmatch6::R](sctmatch6::R) reader structure"]
impl crate::Readable for SCTMATCH6 {}
#[doc = "`write(|w| ..)` method takes [sctmatch6::W](sctmatch6::W) writer structure"]
impl crate::Writable for SCTMATCH6 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch6;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap7](sctcap7) module"]
pub type SCTCAP7 = crate::Reg<u32, _SCTCAP7>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP7;
#[doc = "`read()` method returns [sctcap7::R](sctcap7::R) reader structure"]
impl crate::Readable for SCTCAP7 {}
#[doc = "`write(|w| ..)` method takes [sctcap7::W](sctcap7::W) writer structure"]
impl crate::Writable for SCTCAP7 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap7;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch7](sctmatch7) module"]
pub type SCTMATCH7 = crate::Reg<u32, _SCTMATCH7>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH7;
#[doc = "`read()` method returns [sctmatch7::R](sctmatch7::R) reader structure"]
impl crate::Readable for SCTMATCH7 {}
#[doc = "`write(|w| ..)` method takes [sctmatch7::W](sctmatch7::W) writer structure"]
impl crate::Writable for SCTMATCH7 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch7;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap8](sctcap8) module"]
pub type SCTCAP8 = crate::Reg<u32, _SCTCAP8>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP8;
#[doc = "`read()` method returns [sctcap8::R](sctcap8::R) reader structure"]
impl crate::Readable for SCTCAP8 {}
#[doc = "`write(|w| ..)` method takes [sctcap8::W](sctcap8::W) writer structure"]
impl crate::Writable for SCTCAP8 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap8;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch8](sctmatch8) module"]
pub type SCTMATCH8 = crate::Reg<u32, _SCTMATCH8>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH8;
#[doc = "`read()` method returns [sctmatch8::R](sctmatch8::R) reader structure"]
impl crate::Readable for SCTMATCH8 {}
#[doc = "`write(|w| ..)` method takes [sctmatch8::W](sctmatch8::W) writer structure"]
impl crate::Writable for SCTMATCH8 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch8;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap9](sctcap9) module"]
pub type SCTCAP9 = crate::Reg<u32, _SCTCAP9>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP9;
#[doc = "`read()` method returns [sctcap9::R](sctcap9::R) reader structure"]
impl crate::Readable for SCTCAP9 {}
#[doc = "`write(|w| ..)` method takes [sctcap9::W](sctcap9::W) writer structure"]
impl crate::Writable for SCTCAP9 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap9;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch9](sctmatch9) module"]
pub type SCTMATCH9 = crate::Reg<u32, _SCTMATCH9>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH9;
#[doc = "`read()` method returns [sctmatch9::R](sctmatch9::R) reader structure"]
impl crate::Readable for SCTMATCH9 {}
#[doc = "`write(|w| ..)` method takes [sctmatch9::W](sctmatch9::W) writer structure"]
impl crate::Writable for SCTMATCH9 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch9;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap10](sctcap10) module"]
pub type SCTCAP10 = crate::Reg<u32, _SCTCAP10>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP10;
#[doc = "`read()` method returns [sctcap10::R](sctcap10::R) reader structure"]
impl crate::Readable for SCTCAP10 {}
#[doc = "`write(|w| ..)` method takes [sctcap10::W](sctcap10::W) writer structure"]
impl crate::Writable for SCTCAP10 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap10;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch10](sctmatch10) module"]
pub type SCTMATCH10 = crate::Reg<u32, _SCTMATCH10>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH10;
#[doc = "`read()` method returns [sctmatch10::R](sctmatch10::R) reader structure"]
impl crate::Readable for SCTMATCH10 {}
#[doc = "`write(|w| ..)` method takes [sctmatch10::W](sctmatch10::W) writer structure"]
impl crate::Writable for SCTMATCH10 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch10;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap11](sctcap11) module"]
pub type SCTCAP11 = crate::Reg<u32, _SCTCAP11>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP11;
#[doc = "`read()` method returns [sctcap11::R](sctcap11::R) reader structure"]
impl crate::Readable for SCTCAP11 {}
#[doc = "`write(|w| ..)` method takes [sctcap11::W](sctcap11::W) writer structure"]
impl crate::Writable for SCTCAP11 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap11;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch11](sctmatch11) module"]
pub type SCTMATCH11 = crate::Reg<u32, _SCTMATCH11>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH11;
#[doc = "`read()` method returns [sctmatch11::R](sctmatch11::R) reader structure"]
impl crate::Readable for SCTMATCH11 {}
#[doc = "`write(|w| ..)` method takes [sctmatch11::W](sctmatch11::W) writer structure"]
impl crate::Writable for SCTMATCH11 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch11;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap12](sctcap12) module"]
pub type SCTCAP12 = crate::Reg<u32, _SCTCAP12>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP12;
#[doc = "`read()` method returns [sctcap12::R](sctcap12::R) reader structure"]
impl crate::Readable for SCTCAP12 {}
#[doc = "`write(|w| ..)` method takes [sctcap12::W](sctcap12::W) writer structure"]
impl crate::Writable for SCTCAP12 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap12;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch12](sctmatch12) module"]
pub type SCTMATCH12 = crate::Reg<u32, _SCTMATCH12>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH12;
#[doc = "`read()` method returns [sctmatch12::R](sctmatch12::R) reader structure"]
impl crate::Readable for SCTMATCH12 {}
#[doc = "`write(|w| ..)` method takes [sctmatch12::W](sctmatch12::W) writer structure"]
impl crate::Writable for SCTMATCH12 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch12;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap13](sctcap13) module"]
pub type SCTCAP13 = crate::Reg<u32, _SCTCAP13>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP13;
#[doc = "`read()` method returns [sctcap13::R](sctcap13::R) reader structure"]
impl crate::Readable for SCTCAP13 {}
#[doc = "`write(|w| ..)` method takes [sctcap13::W](sctcap13::W) writer structure"]
impl crate::Writable for SCTCAP13 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap13;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch13](sctmatch13) module"]
pub type SCTMATCH13 = crate::Reg<u32, _SCTMATCH13>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH13;
#[doc = "`read()` method returns [sctmatch13::R](sctmatch13::R) reader structure"]
impl crate::Readable for SCTMATCH13 {}
#[doc = "`write(|w| ..)` method takes [sctmatch13::W](sctmatch13::W) writer structure"]
impl crate::Writable for SCTMATCH13 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch13;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap14](sctcap14) module"]
pub type SCTCAP14 = crate::Reg<u32, _SCTCAP14>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP14;
#[doc = "`read()` method returns [sctcap14::R](sctcap14::R) reader structure"]
impl crate::Readable for SCTCAP14 {}
#[doc = "`write(|w| ..)` method takes [sctcap14::W](sctcap14::W) writer structure"]
impl crate::Writable for SCTCAP14 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap14;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch14](sctmatch14) module"]
pub type SCTMATCH14 = crate::Reg<u32, _SCTMATCH14>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH14;
#[doc = "`read()` method returns [sctmatch14::R](sctmatch14::R) reader structure"]
impl crate::Readable for SCTMATCH14 {}
#[doc = "`write(|w| ..)` method takes [sctmatch14::W](sctmatch14::W) writer structure"]
impl crate::Writable for SCTMATCH14 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch14;
#[doc = "SCT capture register of capture channel\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcap15](sctcap15) module"]
pub type SCTCAP15 = crate::Reg<u32, _SCTCAP15>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAP15;
#[doc = "`read()` method returns [sctcap15::R](sctcap15::R) reader structure"]
impl crate::Readable for SCTCAP15 {}
#[doc = "`write(|w| ..)` method takes [sctcap15::W](sctcap15::W) writer structure"]
impl crate::Writable for SCTCAP15 {}
#[doc = "SCT capture register of capture channel"]
pub mod sctcap15;
#[doc = "SCT match value register of match channels\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatch15](sctmatch15) module"]
pub type SCTMATCH15 = crate::Reg<u32, _SCTMATCH15>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCH15;
#[doc = "`read()` method returns [sctmatch15::R](sctmatch15::R) reader structure"]
impl crate::Readable for SCTMATCH15 {}
#[doc = "`write(|w| ..)` method takes [sctmatch15::W](sctmatch15::W) writer structure"]
impl crate::Writable for SCTMATCH15 {}
#[doc = "SCT match value register of match channels"]
pub mod sctmatch15;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl0](sctcapctrl0) module"]
pub type SCTCAPCTRL0 = crate::Reg<u32, _SCTCAPCTRL0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL0;
#[doc = "`read()` method returns [sctcapctrl0::R](sctcapctrl0::R) reader structure"]
impl crate::Readable for SCTCAPCTRL0 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl0::W](sctcapctrl0::W) writer structure"]
impl crate::Writable for SCTCAPCTRL0 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl0;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel0](sctmatchrel0) module"]
pub type SCTMATCHREL0 = crate::Reg<u32, _SCTMATCHREL0>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL0;
#[doc = "`read()` method returns [sctmatchrel0::R](sctmatchrel0::R) reader structure"]
impl crate::Readable for SCTMATCHREL0 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel0::W](sctmatchrel0::W) writer structure"]
impl crate::Writable for SCTMATCHREL0 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel0;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl1](sctcapctrl1) module"]
pub type SCTCAPCTRL1 = crate::Reg<u32, _SCTCAPCTRL1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL1;
#[doc = "`read()` method returns [sctcapctrl1::R](sctcapctrl1::R) reader structure"]
impl crate::Readable for SCTCAPCTRL1 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl1::W](sctcapctrl1::W) writer structure"]
impl crate::Writable for SCTCAPCTRL1 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl1;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel1](sctmatchrel1) module"]
pub type SCTMATCHREL1 = crate::Reg<u32, _SCTMATCHREL1>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL1;
#[doc = "`read()` method returns [sctmatchrel1::R](sctmatchrel1::R) reader structure"]
impl crate::Readable for SCTMATCHREL1 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel1::W](sctmatchrel1::W) writer structure"]
impl crate::Writable for SCTMATCHREL1 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel1;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl2](sctcapctrl2) module"]
pub type SCTCAPCTRL2 = crate::Reg<u32, _SCTCAPCTRL2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL2;
#[doc = "`read()` method returns [sctcapctrl2::R](sctcapctrl2::R) reader structure"]
impl crate::Readable for SCTCAPCTRL2 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl2::W](sctcapctrl2::W) writer structure"]
impl crate::Writable for SCTCAPCTRL2 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl2;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel2](sctmatchrel2) module"]
pub type SCTMATCHREL2 = crate::Reg<u32, _SCTMATCHREL2>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL2;
#[doc = "`read()` method returns [sctmatchrel2::R](sctmatchrel2::R) reader structure"]
impl crate::Readable for SCTMATCHREL2 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel2::W](sctmatchrel2::W) writer structure"]
impl crate::Writable for SCTMATCHREL2 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel2;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl3](sctcapctrl3) module"]
pub type SCTCAPCTRL3 = crate::Reg<u32, _SCTCAPCTRL3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL3;
#[doc = "`read()` method returns [sctcapctrl3::R](sctcapctrl3::R) reader structure"]
impl crate::Readable for SCTCAPCTRL3 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl3::W](sctcapctrl3::W) writer structure"]
impl crate::Writable for SCTCAPCTRL3 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl3;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel3](sctmatchrel3) module"]
pub type SCTMATCHREL3 = crate::Reg<u32, _SCTMATCHREL3>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL3;
#[doc = "`read()` method returns [sctmatchrel3::R](sctmatchrel3::R) reader structure"]
impl crate::Readable for SCTMATCHREL3 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel3::W](sctmatchrel3::W) writer structure"]
impl crate::Writable for SCTMATCHREL3 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel3;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl4](sctcapctrl4) module"]
pub type SCTCAPCTRL4 = crate::Reg<u32, _SCTCAPCTRL4>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL4;
#[doc = "`read()` method returns [sctcapctrl4::R](sctcapctrl4::R) reader structure"]
impl crate::Readable for SCTCAPCTRL4 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl4::W](sctcapctrl4::W) writer structure"]
impl crate::Writable for SCTCAPCTRL4 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl4;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel4](sctmatchrel4) module"]
pub type SCTMATCHREL4 = crate::Reg<u32, _SCTMATCHREL4>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL4;
#[doc = "`read()` method returns [sctmatchrel4::R](sctmatchrel4::R) reader structure"]
impl crate::Readable for SCTMATCHREL4 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel4::W](sctmatchrel4::W) writer structure"]
impl crate::Writable for SCTMATCHREL4 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel4;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl5](sctcapctrl5) module"]
pub type SCTCAPCTRL5 = crate::Reg<u32, _SCTCAPCTRL5>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL5;
#[doc = "`read()` method returns [sctcapctrl5::R](sctcapctrl5::R) reader structure"]
impl crate::Readable for SCTCAPCTRL5 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl5::W](sctcapctrl5::W) writer structure"]
impl crate::Writable for SCTCAPCTRL5 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl5;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel5](sctmatchrel5) module"]
pub type SCTMATCHREL5 = crate::Reg<u32, _SCTMATCHREL5>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL5;
#[doc = "`read()` method returns [sctmatchrel5::R](sctmatchrel5::R) reader structure"]
impl crate::Readable for SCTMATCHREL5 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel5::W](sctmatchrel5::W) writer structure"]
impl crate::Writable for SCTMATCHREL5 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel5;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl6](sctcapctrl6) module"]
pub type SCTCAPCTRL6 = crate::Reg<u32, _SCTCAPCTRL6>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL6;
#[doc = "`read()` method returns [sctcapctrl6::R](sctcapctrl6::R) reader structure"]
impl crate::Readable for SCTCAPCTRL6 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl6::W](sctcapctrl6::W) writer structure"]
impl crate::Writable for SCTCAPCTRL6 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl6;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel6](sctmatchrel6) module"]
pub type SCTMATCHREL6 = crate::Reg<u32, _SCTMATCHREL6>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL6;
#[doc = "`read()` method returns [sctmatchrel6::R](sctmatchrel6::R) reader structure"]
impl crate::Readable for SCTMATCHREL6 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel6::W](sctmatchrel6::W) writer structure"]
impl crate::Writable for SCTMATCHREL6 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel6;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl7](sctcapctrl7) module"]
pub type SCTCAPCTRL7 = crate::Reg<u32, _SCTCAPCTRL7>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL7;
#[doc = "`read()` method returns [sctcapctrl7::R](sctcapctrl7::R) reader structure"]
impl crate::Readable for SCTCAPCTRL7 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl7::W](sctcapctrl7::W) writer structure"]
impl crate::Writable for SCTCAPCTRL7 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl7;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel7](sctmatchrel7) module"]
pub type SCTMATCHREL7 = crate::Reg<u32, _SCTMATCHREL7>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL7;
#[doc = "`read()` method returns [sctmatchrel7::R](sctmatchrel7::R) reader structure"]
impl crate::Readable for SCTMATCHREL7 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel7::W](sctmatchrel7::W) writer structure"]
impl crate::Writable for SCTMATCHREL7 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel7;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl8](sctcapctrl8) module"]
pub type SCTCAPCTRL8 = crate::Reg<u32, _SCTCAPCTRL8>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL8;
#[doc = "`read()` method returns [sctcapctrl8::R](sctcapctrl8::R) reader structure"]
impl crate::Readable for SCTCAPCTRL8 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl8::W](sctcapctrl8::W) writer structure"]
impl crate::Writable for SCTCAPCTRL8 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl8;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel8](sctmatchrel8) module"]
pub type SCTMATCHREL8 = crate::Reg<u32, _SCTMATCHREL8>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL8;
#[doc = "`read()` method returns [sctmatchrel8::R](sctmatchrel8::R) reader structure"]
impl crate::Readable for SCTMATCHREL8 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel8::W](sctmatchrel8::W) writer structure"]
impl crate::Writable for SCTMATCHREL8 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel8;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl9](sctcapctrl9) module"]
pub type SCTCAPCTRL9 = crate::Reg<u32, _SCTCAPCTRL9>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL9;
#[doc = "`read()` method returns [sctcapctrl9::R](sctcapctrl9::R) reader structure"]
impl crate::Readable for SCTCAPCTRL9 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl9::W](sctcapctrl9::W) writer structure"]
impl crate::Writable for SCTCAPCTRL9 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl9;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel9](sctmatchrel9) module"]
pub type SCTMATCHREL9 = crate::Reg<u32, _SCTMATCHREL9>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL9;
#[doc = "`read()` method returns [sctmatchrel9::R](sctmatchrel9::R) reader structure"]
impl crate::Readable for SCTMATCHREL9 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel9::W](sctmatchrel9::W) writer structure"]
impl crate::Writable for SCTMATCHREL9 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel9;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl10](sctcapctrl10) module"]
pub type SCTCAPCTRL10 = crate::Reg<u32, _SCTCAPCTRL10>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL10;
#[doc = "`read()` method returns [sctcapctrl10::R](sctcapctrl10::R) reader structure"]
impl crate::Readable for SCTCAPCTRL10 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl10::W](sctcapctrl10::W) writer structure"]
impl crate::Writable for SCTCAPCTRL10 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl10;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel10](sctmatchrel10) module"]
pub type SCTMATCHREL10 = crate::Reg<u32, _SCTMATCHREL10>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL10;
#[doc = "`read()` method returns [sctmatchrel10::R](sctmatchrel10::R) reader structure"]
impl crate::Readable for SCTMATCHREL10 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel10::W](sctmatchrel10::W) writer structure"]
impl crate::Writable for SCTMATCHREL10 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel10;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl11](sctcapctrl11) module"]
pub type SCTCAPCTRL11 = crate::Reg<u32, _SCTCAPCTRL11>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL11;
#[doc = "`read()` method returns [sctcapctrl11::R](sctcapctrl11::R) reader structure"]
impl crate::Readable for SCTCAPCTRL11 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl11::W](sctcapctrl11::W) writer structure"]
impl crate::Writable for SCTCAPCTRL11 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl11;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel11](sctmatchrel11) module"]
pub type SCTMATCHREL11 = crate::Reg<u32, _SCTMATCHREL11>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL11;
#[doc = "`read()` method returns [sctmatchrel11::R](sctmatchrel11::R) reader structure"]
impl crate::Readable for SCTMATCHREL11 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel11::W](sctmatchrel11::W) writer structure"]
impl crate::Writable for SCTMATCHREL11 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel11;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl12](sctcapctrl12) module"]
pub type SCTCAPCTRL12 = crate::Reg<u32, _SCTCAPCTRL12>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL12;
#[doc = "`read()` method returns [sctcapctrl12::R](sctcapctrl12::R) reader structure"]
impl crate::Readable for SCTCAPCTRL12 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl12::W](sctcapctrl12::W) writer structure"]
impl crate::Writable for SCTCAPCTRL12 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl12;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel12](sctmatchrel12) module"]
pub type SCTMATCHREL12 = crate::Reg<u32, _SCTMATCHREL12>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL12;
#[doc = "`read()` method returns [sctmatchrel12::R](sctmatchrel12::R) reader structure"]
impl crate::Readable for SCTMATCHREL12 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel12::W](sctmatchrel12::W) writer structure"]
impl crate::Writable for SCTMATCHREL12 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel12;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl13](sctcapctrl13) module"]
pub type SCTCAPCTRL13 = crate::Reg<u32, _SCTCAPCTRL13>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL13;
#[doc = "`read()` method returns [sctcapctrl13::R](sctcapctrl13::R) reader structure"]
impl crate::Readable for SCTCAPCTRL13 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl13::W](sctcapctrl13::W) writer structure"]
impl crate::Writable for SCTCAPCTRL13 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl13;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel13](sctmatchrel13) module"]
pub type SCTMATCHREL13 = crate::Reg<u32, _SCTMATCHREL13>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL13;
#[doc = "`read()` method returns [sctmatchrel13::R](sctmatchrel13::R) reader structure"]
impl crate::Readable for SCTMATCHREL13 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel13::W](sctmatchrel13::W) writer structure"]
impl crate::Writable for SCTMATCHREL13 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel13;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl14](sctcapctrl14) module"]
pub type SCTCAPCTRL14 = crate::Reg<u32, _SCTCAPCTRL14>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL14;
#[doc = "`read()` method returns [sctcapctrl14::R](sctcapctrl14::R) reader structure"]
impl crate::Readable for SCTCAPCTRL14 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl14::W](sctcapctrl14::W) writer structure"]
impl crate::Writable for SCTCAPCTRL14 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl14;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel14](sctmatchrel14) module"]
pub type SCTMATCHREL14 = crate::Reg<u32, _SCTMATCHREL14>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL14;
#[doc = "`read()` method returns [sctmatchrel14::R](sctmatchrel14::R) reader structure"]
impl crate::Readable for SCTMATCHREL14 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel14::W](sctmatchrel14::W) writer structure"]
impl crate::Writable for SCTMATCHREL14 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel14;
#[doc = "SCT capture control register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctcapctrl15](sctcapctrl15) module"]
pub type SCTCAPCTRL15 = crate::Reg<u32, _SCTCAPCTRL15>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTCAPCTRL15;
#[doc = "`read()` method returns [sctcapctrl15::R](sctcapctrl15::R) reader structure"]
impl crate::Readable for SCTCAPCTRL15 {}
#[doc = "`write(|w| ..)` method takes [sctcapctrl15::W](sctcapctrl15::W) writer structure"]
impl crate::Writable for SCTCAPCTRL15 {}
#[doc = "SCT capture control register"]
pub mod sctcapctrl15;
#[doc = "SCT match reload value register\n\nThis register you can [`read`](crate::generic::Reg::read), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about avaliable fields see [sctmatchrel15](sctmatchrel15) module"]
pub type SCTMATCHREL15 = crate::Reg<u32, _SCTMATCHREL15>;
#[allow(missing_docs)]
#[doc(hidden)]
pub struct _SCTMATCHREL15;
#[doc = "`read()` method returns [sctmatchrel15::R](sctmatchrel15::R) reader structure"]
impl crate::Readable for SCTMATCHREL15 {}
#[doc = "`write(|w| ..)` method takes [sctmatchrel15::W](sctmatchrel15::W) writer structure"]
impl crate::Writable for SCTMATCHREL15 {}
#[doc = "SCT match reload value register"]
pub mod sctmatchrel15;