cc13x0_pac 0.10.3

Peripheral Access Crate for TI's cc13x0 microcontroller
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
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
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    _reserved0: [u8; 0x1c],
    stat: Stat,
    _reserved1: [u8; 0x04],
    cfg: Cfg,
    syscode_start: SyscodeStart,
    flash_size: FlashSize,
    _reserved4: [u8; 0x0c],
    fwlock: Fwlock,
    fwflag: Fwflag,
    _reserved6: [u8; 0x0fbc],
    efuse: Efuse,
    efuseaddr: Efuseaddr,
    dataupper: Dataupper,
    datalower: Datalower,
    efusecfg: Efusecfg,
    efusestat: Efusestat,
    acc: Acc,
    boundary: Boundary,
    efuseflag: Efuseflag,
    efusekey: Efusekey,
    efuserelease: Efuserelease,
    efusepins: Efusepins,
    efusecra: Efusecra,
    efuseread: Efuseread,
    efuseprogram: Efuseprogram,
    efuseerror: Efuseerror,
    singlebit: Singlebit,
    twobit: Twobit,
    selftestcyc: Selftestcyc,
    selftestsign: Selftestsign,
    _reserved26: [u8; 0x0fb0],
    frdctl: Frdctl,
    fsprd: Fsprd,
    fedacctl1: Fedacctl1,
    fedacctl2: Fedacctl2,
    fcor_err_cnt: FcorErrCnt,
    fcor_err_add: FcorErrAdd,
    fcor_err_pos: FcorErrPos,
    fedacstat: Fedacstat,
    func_err_add: FuncErrAdd,
    fedacsdis: Fedacsdis,
    fprim_add_tag: FprimAddTag,
    fredu_add_tag: FreduAddTag,
    fbprot: Fbprot,
    fbse: Fbse,
    fbbusy: Fbbusy,
    fbac: Fbac,
    fbfallback: Fbfallback,
    fbprdy: Fbprdy,
    fpac1: Fpac1,
    fpac2: Fpac2,
    fmac: Fmac,
    fmstat: Fmstat,
    femu_dmsw: FemuDmsw,
    femu_dlsw: FemuDlsw,
    femu_ecc: FemuEcc,
    flock: Flock,
    femu_addr: FemuAddr,
    fdiagctl: Fdiagctl,
    fraw_datah: FrawDatah,
    fraw_datal: FrawDatal,
    fraw_ecc: FrawEcc,
    fpar_ovr: FparOvr,
    fvreadct: Fvreadct,
    fvhvct1: Fvhvct1,
    fvhvct2: Fvhvct2,
    fvhvct3: Fvhvct3,
    fvnvct: Fvnvct,
    fvslp: Fvslp,
    fvwlct: Fvwlct,
    fefusectl: Fefusectl,
    fefusestat: Fefusestat,
    fefusedata: Fefusedata,
    fseqpmp: Fseqpmp,
    fclktrim: Fclktrim,
    rom_test: RomTest,
    _reserved71: [u8; 0x0c],
    fedacsdis2: Fedacsdis2,
    _reserved72: [u8; 0x3c],
    fbstrobes: Fbstrobes,
    fpstrobes: Fpstrobes,
    fbmode: Fbmode,
    ftcr: Ftcr,
    faddr: Faddr,
    fpmtctl: Fpmtctl,
    pbistctl: Pbistctl,
    ftctl: Ftctl,
    fwpwrite0: Fwpwrite0,
    fwpwrite1: Fwpwrite1,
    fwpwrite2: Fwpwrite2,
    fwpwrite3: Fwpwrite3,
    fwpwrite4: Fwpwrite4,
    fwpwrite5: Fwpwrite5,
    fwpwrite6: Fwpwrite6,
    fwpwrite7: Fwpwrite7,
    fwpwrite_ecc: FwpwriteEcc,
    fswstat: Fswstat,
    _reserved90: [u8; 0xb8],
    fsm_glbctl: FsmGlbctl,
    fsm_state: FsmState,
    fsm_stat: FsmStat,
    fsm_cmd: FsmCmd,
    fsm_pe_osu: FsmPeOsu,
    fsm_vstat: FsmVstat,
    fsm_pe_vsu: FsmPeVsu,
    fsm_cmp_vsu: FsmCmpVsu,
    fsm_ex_val: FsmExVal,
    fsm_rd_h: FsmRdH,
    fsm_p_oh: FsmPOh,
    fsm_era_oh: FsmEraOh,
    fsm_sav_ppul: FsmSavPpul,
    fsm_pe_vh: FsmPeVh,
    _reserved104: [u8; 0x08],
    fsm_prg_pw: FsmPrgPw,
    fsm_era_pw: FsmEraPw,
    _reserved106: [u8; 0x0c],
    fsm_sav_era_pul: FsmSavEraPul,
    fsm_timer: FsmTimer,
    fsm_mode: FsmMode,
    fsm_pgm: FsmPgm,
    fsm_era: FsmEra,
    fsm_prg_pul: FsmPrgPul,
    fsm_era_pul: FsmEraPul,
    fsm_step_size: FsmStepSize,
    fsm_pul_cntr: FsmPulCntr,
    fsm_ec_step_height: FsmEcStepHeight,
    fsm_st_machine: FsmStMachine,
    fsm_fles: FsmFles,
    _reserved118: [u8; 0x04],
    fsm_wr_ena: FsmWrEna,
    fsm_acc_pp: FsmAccPp,
    fsm_acc_ep: FsmAccEp,
    _reserved121: [u8; 0x0c],
    fsm_addr: FsmAddr,
    fsm_sector: FsmSector,
    fmc_rev_id: FmcRevId,
    fsm_err_addr: FsmErrAddr,
    fsm_pgm_maxpul: FsmPgmMaxpul,
    fsm_execute: FsmExecute,
    eeprom_cfg: EepromCfg,
    _reserved128: [u8; 0x04],
    fsm_sector1: FsmSector1,
    fsm_sector2: FsmSector2,
    _reserved130: [u8; 0x18],
    fsm_bsle0: FsmBsle0,
    fsm_bsle1: FsmBsle1,
    _reserved132: [u8; 0x08],
    fsm_bslp0: FsmBslp0,
    fsm_bslp1: FsmBslp1,
    _reserved134: [u8; 0x0108],
    fcfg_bank: FcfgBank,
    fcfg_wrapper: FcfgWrapper,
    fcfg_bnk_type: FcfgBnkType,
    _reserved137: [u8; 0x04],
    fcfg_b0_start: FcfgB0Start,
    fcfg_b1_start: FcfgB1Start,
    fcfg_b2_start: FcfgB2Start,
    fcfg_b3_start: FcfgB3Start,
    fcfg_b4_start: FcfgB4Start,
    fcfg_b5_start: FcfgB5Start,
    fcfg_b6_start: FcfgB6Start,
    fcfg_b7_start: FcfgB7Start,
    fcfg_b0_ssize0: FcfgB0Ssize0,
    fcfg_b0_ssize1: FcfgB0Ssize1,
    fcfg_b0_ssize2: FcfgB0Ssize2,
    fcfg_b0_ssize3: FcfgB0Ssize3,
    fcfg_b1_ssize0: FcfgB1Ssize0,
    fcfg_b1_ssize1: FcfgB1Ssize1,
    fcfg_b1_ssize2: FcfgB1Ssize2,
    fcfg_b1_ssize3: FcfgB1Ssize3,
    fcfg_b2_ssize0: FcfgB2Ssize0,
    fcfg_b2_ssize1: FcfgB2Ssize1,
    fcfg_b2_ssize2: FcfgB2Ssize2,
    fcfg_b2_ssize3: FcfgB2Ssize3,
    fcfg_b3_ssize0: FcfgB3Ssize0,
    fcfg_b3_ssize1: FcfgB3Ssize1,
    fcfg_b3_ssize2: FcfgB3Ssize2,
    fcfg_b3_ssize3: FcfgB3Ssize3,
    fcfg_b4_ssize0: FcfgB4Ssize0,
    fcfg_b4_ssize1: FcfgB4Ssize1,
    fcfg_b4_ssize2: FcfgB4Ssize2,
    fcfg_b4_ssize3: FcfgB4Ssize3,
    fcfg_b5_ssize0: FcfgB5Ssize0,
    fcfg_b5_ssize1: FcfgB5Ssize1,
    fcfg_b5_ssize2: FcfgB5Ssize2,
    fcfg_b5_ssize3: FcfgB5Ssize3,
    fcfg_b6_ssize0: FcfgB6Ssize0,
    fcfg_b6_ssize1: FcfgB6Ssize1,
    fcfg_b6_ssize2: FcfgB6Ssize2,
    fcfg_b6_ssize3: FcfgB6Ssize3,
    fcfg_b7_ssize0: FcfgB7Ssize0,
    fcfg_b7_ssize1: FcfgB7Ssize1,
    fcfg_b7_ssize2: FcfgB7Ssize2,
    fcfg_b7_ssize3: FcfgB7Ssize3,
}
impl RegisterBlock {
    #[doc = "0x1c - FMC and Efuse Status"]
    #[inline(always)]
    pub const fn stat(&self) -> &Stat {
        &self.stat
    }
    #[doc = "0x24 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn cfg(&self) -> &Cfg {
        &self.cfg
    }
    #[doc = "0x28 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn syscode_start(&self) -> &SyscodeStart {
        &self.syscode_start
    }
    #[doc = "0x2c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn flash_size(&self) -> &FlashSize {
        &self.flash_size
    }
    #[doc = "0x3c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwlock(&self) -> &Fwlock {
        &self.fwlock
    }
    #[doc = "0x40 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwflag(&self) -> &Fwflag {
        &self.fwflag
    }
    #[doc = "0x1000 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efuse(&self) -> &Efuse {
        &self.efuse
    }
    #[doc = "0x1004 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efuseaddr(&self) -> &Efuseaddr {
        &self.efuseaddr
    }
    #[doc = "0x1008 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn dataupper(&self) -> &Dataupper {
        &self.dataupper
    }
    #[doc = "0x100c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn datalower(&self) -> &Datalower {
        &self.datalower
    }
    #[doc = "0x1010 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efusecfg(&self) -> &Efusecfg {
        &self.efusecfg
    }
    #[doc = "0x1014 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efusestat(&self) -> &Efusestat {
        &self.efusestat
    }
    #[doc = "0x1018 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn acc(&self) -> &Acc {
        &self.acc
    }
    #[doc = "0x101c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn boundary(&self) -> &Boundary {
        &self.boundary
    }
    #[doc = "0x1020 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efuseflag(&self) -> &Efuseflag {
        &self.efuseflag
    }
    #[doc = "0x1024 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efusekey(&self) -> &Efusekey {
        &self.efusekey
    }
    #[doc = "0x1028 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efuserelease(&self) -> &Efuserelease {
        &self.efuserelease
    }
    #[doc = "0x102c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efusepins(&self) -> &Efusepins {
        &self.efusepins
    }
    #[doc = "0x1030 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efusecra(&self) -> &Efusecra {
        &self.efusecra
    }
    #[doc = "0x1034 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efuseread(&self) -> &Efuseread {
        &self.efuseread
    }
    #[doc = "0x1038 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efuseprogram(&self) -> &Efuseprogram {
        &self.efuseprogram
    }
    #[doc = "0x103c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn efuseerror(&self) -> &Efuseerror {
        &self.efuseerror
    }
    #[doc = "0x1040 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn singlebit(&self) -> &Singlebit {
        &self.singlebit
    }
    #[doc = "0x1044 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn twobit(&self) -> &Twobit {
        &self.twobit
    }
    #[doc = "0x1048 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn selftestcyc(&self) -> &Selftestcyc {
        &self.selftestcyc
    }
    #[doc = "0x104c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn selftestsign(&self) -> &Selftestsign {
        &self.selftestsign
    }
    #[doc = "0x2000 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn frdctl(&self) -> &Frdctl {
        &self.frdctl
    }
    #[doc = "0x2004 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsprd(&self) -> &Fsprd {
        &self.fsprd
    }
    #[doc = "0x2008 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fedacctl1(&self) -> &Fedacctl1 {
        &self.fedacctl1
    }
    #[doc = "0x200c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fedacctl2(&self) -> &Fedacctl2 {
        &self.fedacctl2
    }
    #[doc = "0x2010 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcor_err_cnt(&self) -> &FcorErrCnt {
        &self.fcor_err_cnt
    }
    #[doc = "0x2014 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcor_err_add(&self) -> &FcorErrAdd {
        &self.fcor_err_add
    }
    #[doc = "0x2018 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcor_err_pos(&self) -> &FcorErrPos {
        &self.fcor_err_pos
    }
    #[doc = "0x201c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fedacstat(&self) -> &Fedacstat {
        &self.fedacstat
    }
    #[doc = "0x2020 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn func_err_add(&self) -> &FuncErrAdd {
        &self.func_err_add
    }
    #[doc = "0x2024 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fedacsdis(&self) -> &Fedacsdis {
        &self.fedacsdis
    }
    #[doc = "0x2028 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fprim_add_tag(&self) -> &FprimAddTag {
        &self.fprim_add_tag
    }
    #[doc = "0x202c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fredu_add_tag(&self) -> &FreduAddTag {
        &self.fredu_add_tag
    }
    #[doc = "0x2030 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbprot(&self) -> &Fbprot {
        &self.fbprot
    }
    #[doc = "0x2034 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbse(&self) -> &Fbse {
        &self.fbse
    }
    #[doc = "0x2038 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbbusy(&self) -> &Fbbusy {
        &self.fbbusy
    }
    #[doc = "0x203c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbac(&self) -> &Fbac {
        &self.fbac
    }
    #[doc = "0x2040 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbfallback(&self) -> &Fbfallback {
        &self.fbfallback
    }
    #[doc = "0x2044 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbprdy(&self) -> &Fbprdy {
        &self.fbprdy
    }
    #[doc = "0x2048 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fpac1(&self) -> &Fpac1 {
        &self.fpac1
    }
    #[doc = "0x204c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fpac2(&self) -> &Fpac2 {
        &self.fpac2
    }
    #[doc = "0x2050 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fmac(&self) -> &Fmac {
        &self.fmac
    }
    #[doc = "0x2054 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fmstat(&self) -> &Fmstat {
        &self.fmstat
    }
    #[doc = "0x2058 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn femu_dmsw(&self) -> &FemuDmsw {
        &self.femu_dmsw
    }
    #[doc = "0x205c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn femu_dlsw(&self) -> &FemuDlsw {
        &self.femu_dlsw
    }
    #[doc = "0x2060 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn femu_ecc(&self) -> &FemuEcc {
        &self.femu_ecc
    }
    #[doc = "0x2064 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn flock(&self) -> &Flock {
        &self.flock
    }
    #[doc = "0x2068 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn femu_addr(&self) -> &FemuAddr {
        &self.femu_addr
    }
    #[doc = "0x206c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fdiagctl(&self) -> &Fdiagctl {
        &self.fdiagctl
    }
    #[doc = "0x2070 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fraw_datah(&self) -> &FrawDatah {
        &self.fraw_datah
    }
    #[doc = "0x2074 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fraw_datal(&self) -> &FrawDatal {
        &self.fraw_datal
    }
    #[doc = "0x2078 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fraw_ecc(&self) -> &FrawEcc {
        &self.fraw_ecc
    }
    #[doc = "0x207c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fpar_ovr(&self) -> &FparOvr {
        &self.fpar_ovr
    }
    #[doc = "0x2080 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fvreadct(&self) -> &Fvreadct {
        &self.fvreadct
    }
    #[doc = "0x2084 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fvhvct1(&self) -> &Fvhvct1 {
        &self.fvhvct1
    }
    #[doc = "0x2088 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fvhvct2(&self) -> &Fvhvct2 {
        &self.fvhvct2
    }
    #[doc = "0x208c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fvhvct3(&self) -> &Fvhvct3 {
        &self.fvhvct3
    }
    #[doc = "0x2090 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fvnvct(&self) -> &Fvnvct {
        &self.fvnvct
    }
    #[doc = "0x2094 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fvslp(&self) -> &Fvslp {
        &self.fvslp
    }
    #[doc = "0x2098 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fvwlct(&self) -> &Fvwlct {
        &self.fvwlct
    }
    #[doc = "0x209c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fefusectl(&self) -> &Fefusectl {
        &self.fefusectl
    }
    #[doc = "0x20a0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fefusestat(&self) -> &Fefusestat {
        &self.fefusestat
    }
    #[doc = "0x20a4 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fefusedata(&self) -> &Fefusedata {
        &self.fefusedata
    }
    #[doc = "0x20a8 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fseqpmp(&self) -> &Fseqpmp {
        &self.fseqpmp
    }
    #[doc = "0x20ac - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fclktrim(&self) -> &Fclktrim {
        &self.fclktrim
    }
    #[doc = "0x20b0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn rom_test(&self) -> &RomTest {
        &self.rom_test
    }
    #[doc = "0x20c0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fedacsdis2(&self) -> &Fedacsdis2 {
        &self.fedacsdis2
    }
    #[doc = "0x2100 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbstrobes(&self) -> &Fbstrobes {
        &self.fbstrobes
    }
    #[doc = "0x2104 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fpstrobes(&self) -> &Fpstrobes {
        &self.fpstrobes
    }
    #[doc = "0x2108 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fbmode(&self) -> &Fbmode {
        &self.fbmode
    }
    #[doc = "0x210c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn ftcr(&self) -> &Ftcr {
        &self.ftcr
    }
    #[doc = "0x2110 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn faddr(&self) -> &Faddr {
        &self.faddr
    }
    #[doc = "0x2114 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fpmtctl(&self) -> &Fpmtctl {
        &self.fpmtctl
    }
    #[doc = "0x2118 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn pbistctl(&self) -> &Pbistctl {
        &self.pbistctl
    }
    #[doc = "0x211c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn ftctl(&self) -> &Ftctl {
        &self.ftctl
    }
    #[doc = "0x2120 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite0(&self) -> &Fwpwrite0 {
        &self.fwpwrite0
    }
    #[doc = "0x2124 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite1(&self) -> &Fwpwrite1 {
        &self.fwpwrite1
    }
    #[doc = "0x2128 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite2(&self) -> &Fwpwrite2 {
        &self.fwpwrite2
    }
    #[doc = "0x212c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite3(&self) -> &Fwpwrite3 {
        &self.fwpwrite3
    }
    #[doc = "0x2130 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite4(&self) -> &Fwpwrite4 {
        &self.fwpwrite4
    }
    #[doc = "0x2134 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite5(&self) -> &Fwpwrite5 {
        &self.fwpwrite5
    }
    #[doc = "0x2138 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite6(&self) -> &Fwpwrite6 {
        &self.fwpwrite6
    }
    #[doc = "0x213c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite7(&self) -> &Fwpwrite7 {
        &self.fwpwrite7
    }
    #[doc = "0x2140 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fwpwrite_ecc(&self) -> &FwpwriteEcc {
        &self.fwpwrite_ecc
    }
    #[doc = "0x2144 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fswstat(&self) -> &Fswstat {
        &self.fswstat
    }
    #[doc = "0x2200 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_glbctl(&self) -> &FsmGlbctl {
        &self.fsm_glbctl
    }
    #[doc = "0x2204 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_state(&self) -> &FsmState {
        &self.fsm_state
    }
    #[doc = "0x2208 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_stat(&self) -> &FsmStat {
        &self.fsm_stat
    }
    #[doc = "0x220c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_cmd(&self) -> &FsmCmd {
        &self.fsm_cmd
    }
    #[doc = "0x2210 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_pe_osu(&self) -> &FsmPeOsu {
        &self.fsm_pe_osu
    }
    #[doc = "0x2214 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_vstat(&self) -> &FsmVstat {
        &self.fsm_vstat
    }
    #[doc = "0x2218 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_pe_vsu(&self) -> &FsmPeVsu {
        &self.fsm_pe_vsu
    }
    #[doc = "0x221c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_cmp_vsu(&self) -> &FsmCmpVsu {
        &self.fsm_cmp_vsu
    }
    #[doc = "0x2220 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_ex_val(&self) -> &FsmExVal {
        &self.fsm_ex_val
    }
    #[doc = "0x2224 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_rd_h(&self) -> &FsmRdH {
        &self.fsm_rd_h
    }
    #[doc = "0x2228 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_p_oh(&self) -> &FsmPOh {
        &self.fsm_p_oh
    }
    #[doc = "0x222c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_era_oh(&self) -> &FsmEraOh {
        &self.fsm_era_oh
    }
    #[doc = "0x2230 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_sav_ppul(&self) -> &FsmSavPpul {
        &self.fsm_sav_ppul
    }
    #[doc = "0x2234 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_pe_vh(&self) -> &FsmPeVh {
        &self.fsm_pe_vh
    }
    #[doc = "0x2240 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_prg_pw(&self) -> &FsmPrgPw {
        &self.fsm_prg_pw
    }
    #[doc = "0x2244 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_era_pw(&self) -> &FsmEraPw {
        &self.fsm_era_pw
    }
    #[doc = "0x2254 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_sav_era_pul(&self) -> &FsmSavEraPul {
        &self.fsm_sav_era_pul
    }
    #[doc = "0x2258 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_timer(&self) -> &FsmTimer {
        &self.fsm_timer
    }
    #[doc = "0x225c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_mode(&self) -> &FsmMode {
        &self.fsm_mode
    }
    #[doc = "0x2260 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_pgm(&self) -> &FsmPgm {
        &self.fsm_pgm
    }
    #[doc = "0x2264 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_era(&self) -> &FsmEra {
        &self.fsm_era
    }
    #[doc = "0x2268 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_prg_pul(&self) -> &FsmPrgPul {
        &self.fsm_prg_pul
    }
    #[doc = "0x226c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_era_pul(&self) -> &FsmEraPul {
        &self.fsm_era_pul
    }
    #[doc = "0x2270 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_step_size(&self) -> &FsmStepSize {
        &self.fsm_step_size
    }
    #[doc = "0x2274 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_pul_cntr(&self) -> &FsmPulCntr {
        &self.fsm_pul_cntr
    }
    #[doc = "0x2278 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_ec_step_height(&self) -> &FsmEcStepHeight {
        &self.fsm_ec_step_height
    }
    #[doc = "0x227c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_st_machine(&self) -> &FsmStMachine {
        &self.fsm_st_machine
    }
    #[doc = "0x2280 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_fles(&self) -> &FsmFles {
        &self.fsm_fles
    }
    #[doc = "0x2288 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_wr_ena(&self) -> &FsmWrEna {
        &self.fsm_wr_ena
    }
    #[doc = "0x228c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_acc_pp(&self) -> &FsmAccPp {
        &self.fsm_acc_pp
    }
    #[doc = "0x2290 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_acc_ep(&self) -> &FsmAccEp {
        &self.fsm_acc_ep
    }
    #[doc = "0x22a0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_addr(&self) -> &FsmAddr {
        &self.fsm_addr
    }
    #[doc = "0x22a4 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_sector(&self) -> &FsmSector {
        &self.fsm_sector
    }
    #[doc = "0x22a8 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fmc_rev_id(&self) -> &FmcRevId {
        &self.fmc_rev_id
    }
    #[doc = "0x22ac - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_err_addr(&self) -> &FsmErrAddr {
        &self.fsm_err_addr
    }
    #[doc = "0x22b0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_pgm_maxpul(&self) -> &FsmPgmMaxpul {
        &self.fsm_pgm_maxpul
    }
    #[doc = "0x22b4 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_execute(&self) -> &FsmExecute {
        &self.fsm_execute
    }
    #[doc = "0x22b8 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn eeprom_cfg(&self) -> &EepromCfg {
        &self.eeprom_cfg
    }
    #[doc = "0x22c0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_sector1(&self) -> &FsmSector1 {
        &self.fsm_sector1
    }
    #[doc = "0x22c4 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_sector2(&self) -> &FsmSector2 {
        &self.fsm_sector2
    }
    #[doc = "0x22e0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_bsle0(&self) -> &FsmBsle0 {
        &self.fsm_bsle0
    }
    #[doc = "0x22e4 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_bsle1(&self) -> &FsmBsle1 {
        &self.fsm_bsle1
    }
    #[doc = "0x22f0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_bslp0(&self) -> &FsmBslp0 {
        &self.fsm_bslp0
    }
    #[doc = "0x22f4 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fsm_bslp1(&self) -> &FsmBslp1 {
        &self.fsm_bslp1
    }
    #[doc = "0x2400 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_bank(&self) -> &FcfgBank {
        &self.fcfg_bank
    }
    #[doc = "0x2404 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_wrapper(&self) -> &FcfgWrapper {
        &self.fcfg_wrapper
    }
    #[doc = "0x2408 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_bnk_type(&self) -> &FcfgBnkType {
        &self.fcfg_bnk_type
    }
    #[doc = "0x2410 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b0_start(&self) -> &FcfgB0Start {
        &self.fcfg_b0_start
    }
    #[doc = "0x2414 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b1_start(&self) -> &FcfgB1Start {
        &self.fcfg_b1_start
    }
    #[doc = "0x2418 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b2_start(&self) -> &FcfgB2Start {
        &self.fcfg_b2_start
    }
    #[doc = "0x241c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b3_start(&self) -> &FcfgB3Start {
        &self.fcfg_b3_start
    }
    #[doc = "0x2420 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b4_start(&self) -> &FcfgB4Start {
        &self.fcfg_b4_start
    }
    #[doc = "0x2424 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b5_start(&self) -> &FcfgB5Start {
        &self.fcfg_b5_start
    }
    #[doc = "0x2428 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b6_start(&self) -> &FcfgB6Start {
        &self.fcfg_b6_start
    }
    #[doc = "0x242c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b7_start(&self) -> &FcfgB7Start {
        &self.fcfg_b7_start
    }
    #[doc = "0x2430 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b0_ssize0(&self) -> &FcfgB0Ssize0 {
        &self.fcfg_b0_ssize0
    }
    #[doc = "0x2434 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b0_ssize1(&self) -> &FcfgB0Ssize1 {
        &self.fcfg_b0_ssize1
    }
    #[doc = "0x2438 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b0_ssize2(&self) -> &FcfgB0Ssize2 {
        &self.fcfg_b0_ssize2
    }
    #[doc = "0x243c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b0_ssize3(&self) -> &FcfgB0Ssize3 {
        &self.fcfg_b0_ssize3
    }
    #[doc = "0x2440 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b1_ssize0(&self) -> &FcfgB1Ssize0 {
        &self.fcfg_b1_ssize0
    }
    #[doc = "0x2444 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b1_ssize1(&self) -> &FcfgB1Ssize1 {
        &self.fcfg_b1_ssize1
    }
    #[doc = "0x2448 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b1_ssize2(&self) -> &FcfgB1Ssize2 {
        &self.fcfg_b1_ssize2
    }
    #[doc = "0x244c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b1_ssize3(&self) -> &FcfgB1Ssize3 {
        &self.fcfg_b1_ssize3
    }
    #[doc = "0x2450 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b2_ssize0(&self) -> &FcfgB2Ssize0 {
        &self.fcfg_b2_ssize0
    }
    #[doc = "0x2454 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b2_ssize1(&self) -> &FcfgB2Ssize1 {
        &self.fcfg_b2_ssize1
    }
    #[doc = "0x2458 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b2_ssize2(&self) -> &FcfgB2Ssize2 {
        &self.fcfg_b2_ssize2
    }
    #[doc = "0x245c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b2_ssize3(&self) -> &FcfgB2Ssize3 {
        &self.fcfg_b2_ssize3
    }
    #[doc = "0x2460 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b3_ssize0(&self) -> &FcfgB3Ssize0 {
        &self.fcfg_b3_ssize0
    }
    #[doc = "0x2464 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b3_ssize1(&self) -> &FcfgB3Ssize1 {
        &self.fcfg_b3_ssize1
    }
    #[doc = "0x2468 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b3_ssize2(&self) -> &FcfgB3Ssize2 {
        &self.fcfg_b3_ssize2
    }
    #[doc = "0x246c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b3_ssize3(&self) -> &FcfgB3Ssize3 {
        &self.fcfg_b3_ssize3
    }
    #[doc = "0x2470 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b4_ssize0(&self) -> &FcfgB4Ssize0 {
        &self.fcfg_b4_ssize0
    }
    #[doc = "0x2474 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b4_ssize1(&self) -> &FcfgB4Ssize1 {
        &self.fcfg_b4_ssize1
    }
    #[doc = "0x2478 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b4_ssize2(&self) -> &FcfgB4Ssize2 {
        &self.fcfg_b4_ssize2
    }
    #[doc = "0x247c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b4_ssize3(&self) -> &FcfgB4Ssize3 {
        &self.fcfg_b4_ssize3
    }
    #[doc = "0x2480 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b5_ssize0(&self) -> &FcfgB5Ssize0 {
        &self.fcfg_b5_ssize0
    }
    #[doc = "0x2484 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b5_ssize1(&self) -> &FcfgB5Ssize1 {
        &self.fcfg_b5_ssize1
    }
    #[doc = "0x2488 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b5_ssize2(&self) -> &FcfgB5Ssize2 {
        &self.fcfg_b5_ssize2
    }
    #[doc = "0x248c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b5_ssize3(&self) -> &FcfgB5Ssize3 {
        &self.fcfg_b5_ssize3
    }
    #[doc = "0x2490 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b6_ssize0(&self) -> &FcfgB6Ssize0 {
        &self.fcfg_b6_ssize0
    }
    #[doc = "0x2494 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b6_ssize1(&self) -> &FcfgB6Ssize1 {
        &self.fcfg_b6_ssize1
    }
    #[doc = "0x2498 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b6_ssize2(&self) -> &FcfgB6Ssize2 {
        &self.fcfg_b6_ssize2
    }
    #[doc = "0x249c - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b6_ssize3(&self) -> &FcfgB6Ssize3 {
        &self.fcfg_b6_ssize3
    }
    #[doc = "0x24a0 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b7_ssize0(&self) -> &FcfgB7Ssize0 {
        &self.fcfg_b7_ssize0
    }
    #[doc = "0x24a4 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b7_ssize1(&self) -> &FcfgB7Ssize1 {
        &self.fcfg_b7_ssize1
    }
    #[doc = "0x24a8 - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b7_ssize2(&self) -> &FcfgB7Ssize2 {
        &self.fcfg_b7_ssize2
    }
    #[doc = "0x24ac - Internal. Only to be used through TI provided API."]
    #[inline(always)]
    pub const fn fcfg_b7_ssize3(&self) -> &FcfgB7Ssize3 {
        &self.fcfg_b7_ssize3
    }
}
#[doc = "STAT (rw) register accessor: FMC and Efuse Status\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`stat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`stat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@stat`]
module"]
#[doc(alias = "STAT")]
pub type Stat = crate::Reg<stat::StatSpec>;
#[doc = "FMC and Efuse Status"]
pub mod stat;
#[doc = "CFG (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
#[doc(alias = "CFG")]
pub type Cfg = crate::Reg<cfg::CfgSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod cfg;
#[doc = "SYSCODE_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`syscode_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`syscode_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@syscode_start`]
module"]
#[doc(alias = "SYSCODE_START")]
pub type SyscodeStart = crate::Reg<syscode_start::SyscodeStartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod syscode_start;
#[doc = "FLASH_SIZE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`flash_size::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`flash_size::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@flash_size`]
module"]
#[doc(alias = "FLASH_SIZE")]
pub type FlashSize = crate::Reg<flash_size::FlashSizeSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod flash_size;
#[doc = "FWLOCK (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwlock::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwlock::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwlock`]
module"]
#[doc(alias = "FWLOCK")]
pub type Fwlock = crate::Reg<fwlock::FwlockSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwlock;
#[doc = "FWFLAG (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwflag::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwflag::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwflag`]
module"]
#[doc(alias = "FWFLAG")]
pub type Fwflag = crate::Reg<fwflag::FwflagSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwflag;
#[doc = "EFUSE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efuse::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efuse::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efuse`]
module"]
#[doc(alias = "EFUSE")]
pub type Efuse = crate::Reg<efuse::EfuseSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuse;
#[doc = "EFUSEADDR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efuseaddr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efuseaddr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efuseaddr`]
module"]
#[doc(alias = "EFUSEADDR")]
pub type Efuseaddr = crate::Reg<efuseaddr::EfuseaddrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseaddr;
#[doc = "DATAUPPER (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dataupper::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dataupper::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dataupper`]
module"]
#[doc(alias = "DATAUPPER")]
pub type Dataupper = crate::Reg<dataupper::DataupperSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod dataupper;
#[doc = "DATALOWER (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`datalower::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`datalower::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@datalower`]
module"]
#[doc(alias = "DATALOWER")]
pub type Datalower = crate::Reg<datalower::DatalowerSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod datalower;
#[doc = "EFUSECFG (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efusecfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efusecfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efusecfg`]
module"]
#[doc(alias = "EFUSECFG")]
pub type Efusecfg = crate::Reg<efusecfg::EfusecfgSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusecfg;
#[doc = "EFUSESTAT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efusestat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efusestat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efusestat`]
module"]
#[doc(alias = "EFUSESTAT")]
pub type Efusestat = crate::Reg<efusestat::EfusestatSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusestat;
#[doc = "ACC (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`acc::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`acc::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@acc`]
module"]
#[doc(alias = "ACC")]
pub type Acc = crate::Reg<acc::AccSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod acc;
#[doc = "BOUNDARY (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`boundary::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`boundary::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@boundary`]
module"]
#[doc(alias = "BOUNDARY")]
pub type Boundary = crate::Reg<boundary::BoundarySpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod boundary;
#[doc = "EFUSEFLAG (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efuseflag::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efuseflag::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efuseflag`]
module"]
#[doc(alias = "EFUSEFLAG")]
pub type Efuseflag = crate::Reg<efuseflag::EfuseflagSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseflag;
#[doc = "EFUSEKEY (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efusekey::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efusekey::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efusekey`]
module"]
#[doc(alias = "EFUSEKEY")]
pub type Efusekey = crate::Reg<efusekey::EfusekeySpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusekey;
#[doc = "EFUSERELEASE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efuserelease::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efuserelease::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efuserelease`]
module"]
#[doc(alias = "EFUSERELEASE")]
pub type Efuserelease = crate::Reg<efuserelease::EfusereleaseSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuserelease;
#[doc = "EFUSEPINS (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efusepins::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efusepins::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efusepins`]
module"]
#[doc(alias = "EFUSEPINS")]
pub type Efusepins = crate::Reg<efusepins::EfusepinsSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusepins;
#[doc = "EFUSECRA (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efusecra::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efusecra::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efusecra`]
module"]
#[doc(alias = "EFUSECRA")]
pub type Efusecra = crate::Reg<efusecra::EfusecraSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusecra;
#[doc = "EFUSEREAD (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efuseread::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efuseread::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efuseread`]
module"]
#[doc(alias = "EFUSEREAD")]
pub type Efuseread = crate::Reg<efuseread::EfusereadSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseread;
#[doc = "EFUSEPROGRAM (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efuseprogram::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efuseprogram::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efuseprogram`]
module"]
#[doc(alias = "EFUSEPROGRAM")]
pub type Efuseprogram = crate::Reg<efuseprogram::EfuseprogramSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseprogram;
#[doc = "EFUSEERROR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`efuseerror::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`efuseerror::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efuseerror`]
module"]
#[doc(alias = "EFUSEERROR")]
pub type Efuseerror = crate::Reg<efuseerror::EfuseerrorSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseerror;
#[doc = "SINGLEBIT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`singlebit::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`singlebit::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@singlebit`]
module"]
#[doc(alias = "SINGLEBIT")]
pub type Singlebit = crate::Reg<singlebit::SinglebitSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod singlebit;
#[doc = "TWOBIT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`twobit::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`twobit::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@twobit`]
module"]
#[doc(alias = "TWOBIT")]
pub type Twobit = crate::Reg<twobit::TwobitSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod twobit;
#[doc = "SELFTESTCYC (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`selftestcyc::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`selftestcyc::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@selftestcyc`]
module"]
#[doc(alias = "SELFTESTCYC")]
pub type Selftestcyc = crate::Reg<selftestcyc::SelftestcycSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod selftestcyc;
#[doc = "SELFTESTSIGN (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`selftestsign::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`selftestsign::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@selftestsign`]
module"]
#[doc(alias = "SELFTESTSIGN")]
pub type Selftestsign = crate::Reg<selftestsign::SelftestsignSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod selftestsign;
#[doc = "FRDCTL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`frdctl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`frdctl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@frdctl`]
module"]
#[doc(alias = "FRDCTL")]
pub type Frdctl = crate::Reg<frdctl::FrdctlSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod frdctl;
#[doc = "FSPRD (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsprd::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsprd::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsprd`]
module"]
#[doc(alias = "FSPRD")]
pub type Fsprd = crate::Reg<fsprd::FsprdSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsprd;
#[doc = "FEDACCTL1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fedacctl1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fedacctl1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fedacctl1`]
module"]
#[doc(alias = "FEDACCTL1")]
pub type Fedacctl1 = crate::Reg<fedacctl1::Fedacctl1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacctl1;
#[doc = "FEDACCTL2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fedacctl2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fedacctl2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fedacctl2`]
module"]
#[doc(alias = "FEDACCTL2")]
pub type Fedacctl2 = crate::Reg<fedacctl2::Fedacctl2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacctl2;
#[doc = "FCOR_ERR_CNT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcor_err_cnt::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcor_err_cnt::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcor_err_cnt`]
module"]
#[doc(alias = "FCOR_ERR_CNT")]
pub type FcorErrCnt = crate::Reg<fcor_err_cnt::FcorErrCntSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_cnt;
#[doc = "FCOR_ERR_ADD (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcor_err_add::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcor_err_add::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcor_err_add`]
module"]
#[doc(alias = "FCOR_ERR_ADD")]
pub type FcorErrAdd = crate::Reg<fcor_err_add::FcorErrAddSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_add;
#[doc = "FCOR_ERR_POS (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcor_err_pos::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcor_err_pos::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcor_err_pos`]
module"]
#[doc(alias = "FCOR_ERR_POS")]
pub type FcorErrPos = crate::Reg<fcor_err_pos::FcorErrPosSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_pos;
#[doc = "FEDACSTAT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fedacstat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fedacstat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fedacstat`]
module"]
#[doc(alias = "FEDACSTAT")]
pub type Fedacstat = crate::Reg<fedacstat::FedacstatSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacstat;
#[doc = "FUNC_ERR_ADD (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`func_err_add::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`func_err_add::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@func_err_add`]
module"]
#[doc(alias = "FUNC_ERR_ADD")]
pub type FuncErrAdd = crate::Reg<func_err_add::FuncErrAddSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod func_err_add;
#[doc = "FEDACSDIS (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fedacsdis::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fedacsdis::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fedacsdis`]
module"]
#[doc(alias = "FEDACSDIS")]
pub type Fedacsdis = crate::Reg<fedacsdis::FedacsdisSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacsdis;
#[doc = "FPRIM_ADD_TAG (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fprim_add_tag::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fprim_add_tag::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fprim_add_tag`]
module"]
#[doc(alias = "FPRIM_ADD_TAG")]
pub type FprimAddTag = crate::Reg<fprim_add_tag::FprimAddTagSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fprim_add_tag;
#[doc = "FREDU_ADD_TAG (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fredu_add_tag::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fredu_add_tag::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fredu_add_tag`]
module"]
#[doc(alias = "FREDU_ADD_TAG")]
pub type FreduAddTag = crate::Reg<fredu_add_tag::FreduAddTagSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fredu_add_tag;
#[doc = "FBPROT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbprot::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbprot::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbprot`]
module"]
#[doc(alias = "FBPROT")]
pub type Fbprot = crate::Reg<fbprot::FbprotSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbprot;
#[doc = "FBSE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbse::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbse::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbse`]
module"]
#[doc(alias = "FBSE")]
pub type Fbse = crate::Reg<fbse::FbseSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbse;
#[doc = "FBBUSY (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbbusy::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbbusy::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbbusy`]
module"]
#[doc(alias = "FBBUSY")]
pub type Fbbusy = crate::Reg<fbbusy::FbbusySpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbbusy;
#[doc = "FBAC (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbac::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbac::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbac`]
module"]
#[doc(alias = "FBAC")]
pub type Fbac = crate::Reg<fbac::FbacSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbac;
#[doc = "FBFALLBACK (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbfallback::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbfallback::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbfallback`]
module"]
#[doc(alias = "FBFALLBACK")]
pub type Fbfallback = crate::Reg<fbfallback::FbfallbackSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbfallback;
#[doc = "FBPRDY (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbprdy::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbprdy::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbprdy`]
module"]
#[doc(alias = "FBPRDY")]
pub type Fbprdy = crate::Reg<fbprdy::FbprdySpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbprdy;
#[doc = "FPAC1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fpac1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fpac1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fpac1`]
module"]
#[doc(alias = "FPAC1")]
pub type Fpac1 = crate::Reg<fpac1::Fpac1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpac1;
#[doc = "FPAC2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fpac2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fpac2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fpac2`]
module"]
#[doc(alias = "FPAC2")]
pub type Fpac2 = crate::Reg<fpac2::Fpac2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpac2;
#[doc = "FMAC (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fmac::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fmac::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fmac`]
module"]
#[doc(alias = "FMAC")]
pub type Fmac = crate::Reg<fmac::FmacSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmac;
#[doc = "FMSTAT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fmstat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fmstat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fmstat`]
module"]
#[doc(alias = "FMSTAT")]
pub type Fmstat = crate::Reg<fmstat::FmstatSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmstat;
#[doc = "FEMU_DMSW (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`femu_dmsw::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`femu_dmsw::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@femu_dmsw`]
module"]
#[doc(alias = "FEMU_DMSW")]
pub type FemuDmsw = crate::Reg<femu_dmsw::FemuDmswSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_dmsw;
#[doc = "FEMU_DLSW (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`femu_dlsw::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`femu_dlsw::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@femu_dlsw`]
module"]
#[doc(alias = "FEMU_DLSW")]
pub type FemuDlsw = crate::Reg<femu_dlsw::FemuDlswSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_dlsw;
#[doc = "FEMU_ECC (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`femu_ecc::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`femu_ecc::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@femu_ecc`]
module"]
#[doc(alias = "FEMU_ECC")]
pub type FemuEcc = crate::Reg<femu_ecc::FemuEccSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_ecc;
#[doc = "FLOCK (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`flock::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`flock::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@flock`]
module"]
#[doc(alias = "FLOCK")]
pub type Flock = crate::Reg<flock::FlockSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod flock;
#[doc = "FEMU_ADDR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`femu_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`femu_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@femu_addr`]
module"]
#[doc(alias = "FEMU_ADDR")]
pub type FemuAddr = crate::Reg<femu_addr::FemuAddrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_addr;
#[doc = "FDIAGCTL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fdiagctl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fdiagctl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fdiagctl`]
module"]
#[doc(alias = "FDIAGCTL")]
pub type Fdiagctl = crate::Reg<fdiagctl::FdiagctlSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fdiagctl;
#[doc = "FRAW_DATAH (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fraw_datah::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fraw_datah::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fraw_datah`]
module"]
#[doc(alias = "FRAW_DATAH")]
pub type FrawDatah = crate::Reg<fraw_datah::FrawDatahSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_datah;
#[doc = "FRAW_DATAL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fraw_datal::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fraw_datal::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fraw_datal`]
module"]
#[doc(alias = "FRAW_DATAL")]
pub type FrawDatal = crate::Reg<fraw_datal::FrawDatalSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_datal;
#[doc = "FRAW_ECC (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fraw_ecc::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fraw_ecc::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fraw_ecc`]
module"]
#[doc(alias = "FRAW_ECC")]
pub type FrawEcc = crate::Reg<fraw_ecc::FrawEccSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_ecc;
#[doc = "FPAR_OVR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fpar_ovr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fpar_ovr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fpar_ovr`]
module"]
#[doc(alias = "FPAR_OVR")]
pub type FparOvr = crate::Reg<fpar_ovr::FparOvrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpar_ovr;
#[doc = "FVREADCT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fvreadct::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fvreadct::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fvreadct`]
module"]
#[doc(alias = "FVREADCT")]
pub type Fvreadct = crate::Reg<fvreadct::FvreadctSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvreadct;
#[doc = "FVHVCT1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fvhvct1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fvhvct1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fvhvct1`]
module"]
#[doc(alias = "FVHVCT1")]
pub type Fvhvct1 = crate::Reg<fvhvct1::Fvhvct1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct1;
#[doc = "FVHVCT2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fvhvct2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fvhvct2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fvhvct2`]
module"]
#[doc(alias = "FVHVCT2")]
pub type Fvhvct2 = crate::Reg<fvhvct2::Fvhvct2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct2;
#[doc = "FVHVCT3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fvhvct3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fvhvct3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fvhvct3`]
module"]
#[doc(alias = "FVHVCT3")]
pub type Fvhvct3 = crate::Reg<fvhvct3::Fvhvct3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct3;
#[doc = "FVNVCT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fvnvct::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fvnvct::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fvnvct`]
module"]
#[doc(alias = "FVNVCT")]
pub type Fvnvct = crate::Reg<fvnvct::FvnvctSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvnvct;
#[doc = "FVSLP (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fvslp::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fvslp::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fvslp`]
module"]
#[doc(alias = "FVSLP")]
pub type Fvslp = crate::Reg<fvslp::FvslpSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvslp;
#[doc = "FVWLCT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fvwlct::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fvwlct::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fvwlct`]
module"]
#[doc(alias = "FVWLCT")]
pub type Fvwlct = crate::Reg<fvwlct::FvwlctSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvwlct;
#[doc = "FEFUSECTL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fefusectl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fefusectl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fefusectl`]
module"]
#[doc(alias = "FEFUSECTL")]
pub type Fefusectl = crate::Reg<fefusectl::FefusectlSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusectl;
#[doc = "FEFUSESTAT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fefusestat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fefusestat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fefusestat`]
module"]
#[doc(alias = "FEFUSESTAT")]
pub type Fefusestat = crate::Reg<fefusestat::FefusestatSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusestat;
#[doc = "FEFUSEDATA (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fefusedata::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fefusedata::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fefusedata`]
module"]
#[doc(alias = "FEFUSEDATA")]
pub type Fefusedata = crate::Reg<fefusedata::FefusedataSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusedata;
#[doc = "FSEQPMP (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fseqpmp::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fseqpmp::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fseqpmp`]
module"]
#[doc(alias = "FSEQPMP")]
pub type Fseqpmp = crate::Reg<fseqpmp::FseqpmpSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fseqpmp;
#[doc = "FCLKTRIM (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fclktrim::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fclktrim::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fclktrim`]
module"]
#[doc(alias = "FCLKTRIM")]
pub type Fclktrim = crate::Reg<fclktrim::FclktrimSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fclktrim;
#[doc = "ROM_TEST (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`rom_test::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`rom_test::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rom_test`]
module"]
#[doc(alias = "ROM_TEST")]
pub type RomTest = crate::Reg<rom_test::RomTestSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod rom_test;
#[doc = "FEDACSDIS2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fedacsdis2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fedacsdis2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fedacsdis2`]
module"]
#[doc(alias = "FEDACSDIS2")]
pub type Fedacsdis2 = crate::Reg<fedacsdis2::Fedacsdis2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacsdis2;
#[doc = "FBSTROBES (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbstrobes::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbstrobes::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbstrobes`]
module"]
#[doc(alias = "FBSTROBES")]
pub type Fbstrobes = crate::Reg<fbstrobes::FbstrobesSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbstrobes;
#[doc = "FPSTROBES (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fpstrobes::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fpstrobes::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fpstrobes`]
module"]
#[doc(alias = "FPSTROBES")]
pub type Fpstrobes = crate::Reg<fpstrobes::FpstrobesSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpstrobes;
#[doc = "FBMODE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fbmode::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fbmode::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fbmode`]
module"]
#[doc(alias = "FBMODE")]
pub type Fbmode = crate::Reg<fbmode::FbmodeSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbmode;
#[doc = "FTCR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ftcr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ftcr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ftcr`]
module"]
#[doc(alias = "FTCR")]
pub type Ftcr = crate::Reg<ftcr::FtcrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod ftcr;
#[doc = "FADDR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`faddr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`faddr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@faddr`]
module"]
#[doc(alias = "FADDR")]
pub type Faddr = crate::Reg<faddr::FaddrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod faddr;
#[doc = "FPMTCTL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fpmtctl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fpmtctl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fpmtctl`]
module"]
#[doc(alias = "FPMTCTL")]
pub type Fpmtctl = crate::Reg<fpmtctl::FpmtctlSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpmtctl;
#[doc = "PBISTCTL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`pbistctl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`pbistctl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pbistctl`]
module"]
#[doc(alias = "PBISTCTL")]
pub type Pbistctl = crate::Reg<pbistctl::PbistctlSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod pbistctl;
#[doc = "FTCTL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ftctl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ftctl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ftctl`]
module"]
#[doc(alias = "FTCTL")]
pub type Ftctl = crate::Reg<ftctl::FtctlSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod ftctl;
#[doc = "FWPWRITE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite0`]
module"]
#[doc(alias = "FWPWRITE0")]
pub type Fwpwrite0 = crate::Reg<fwpwrite0::Fwpwrite0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite0;
#[doc = "FWPWRITE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite1`]
module"]
#[doc(alias = "FWPWRITE1")]
pub type Fwpwrite1 = crate::Reg<fwpwrite1::Fwpwrite1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite1;
#[doc = "FWPWRITE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite2`]
module"]
#[doc(alias = "FWPWRITE2")]
pub type Fwpwrite2 = crate::Reg<fwpwrite2::Fwpwrite2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite2;
#[doc = "FWPWRITE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite3`]
module"]
#[doc(alias = "FWPWRITE3")]
pub type Fwpwrite3 = crate::Reg<fwpwrite3::Fwpwrite3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite3;
#[doc = "FWPWRITE4 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite4`]
module"]
#[doc(alias = "FWPWRITE4")]
pub type Fwpwrite4 = crate::Reg<fwpwrite4::Fwpwrite4Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite4;
#[doc = "FWPWRITE5 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite5`]
module"]
#[doc(alias = "FWPWRITE5")]
pub type Fwpwrite5 = crate::Reg<fwpwrite5::Fwpwrite5Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite5;
#[doc = "FWPWRITE6 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite6`]
module"]
#[doc(alias = "FWPWRITE6")]
pub type Fwpwrite6 = crate::Reg<fwpwrite6::Fwpwrite6Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite6;
#[doc = "FWPWRITE7 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite7`]
module"]
#[doc(alias = "FWPWRITE7")]
pub type Fwpwrite7 = crate::Reg<fwpwrite7::Fwpwrite7Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite7;
#[doc = "FWPWRITE_ECC (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fwpwrite_ecc::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fwpwrite_ecc::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fwpwrite_ecc`]
module"]
#[doc(alias = "FWPWRITE_ECC")]
pub type FwpwriteEcc = crate::Reg<fwpwrite_ecc::FwpwriteEccSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite_ecc;
#[doc = "FSWSTAT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fswstat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fswstat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fswstat`]
module"]
#[doc(alias = "FSWSTAT")]
pub type Fswstat = crate::Reg<fswstat::FswstatSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fswstat;
#[doc = "FSM_GLBCTL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_glbctl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_glbctl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_glbctl`]
module"]
#[doc(alias = "FSM_GLBCTL")]
pub type FsmGlbctl = crate::Reg<fsm_glbctl::FsmGlbctlSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_glbctl;
#[doc = "FSM_STATE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_state::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_state::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_state`]
module"]
#[doc(alias = "FSM_STATE")]
pub type FsmState = crate::Reg<fsm_state::FsmStateSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_state;
#[doc = "FSM_STAT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_stat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_stat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_stat`]
module"]
#[doc(alias = "FSM_STAT")]
pub type FsmStat = crate::Reg<fsm_stat::FsmStatSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_stat;
#[doc = "FSM_CMD (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_cmd::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_cmd::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_cmd`]
module"]
#[doc(alias = "FSM_CMD")]
pub type FsmCmd = crate::Reg<fsm_cmd::FsmCmdSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_cmd;
#[doc = "FSM_PE_OSU (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_pe_osu::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_pe_osu::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_pe_osu`]
module"]
#[doc(alias = "FSM_PE_OSU")]
pub type FsmPeOsu = crate::Reg<fsm_pe_osu::FsmPeOsuSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_osu;
#[doc = "FSM_VSTAT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_vstat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_vstat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_vstat`]
module"]
#[doc(alias = "FSM_VSTAT")]
pub type FsmVstat = crate::Reg<fsm_vstat::FsmVstatSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_vstat;
#[doc = "FSM_PE_VSU (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_pe_vsu::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_pe_vsu::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_pe_vsu`]
module"]
#[doc(alias = "FSM_PE_VSU")]
pub type FsmPeVsu = crate::Reg<fsm_pe_vsu::FsmPeVsuSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_vsu;
#[doc = "FSM_CMP_VSU (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_cmp_vsu::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_cmp_vsu::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_cmp_vsu`]
module"]
#[doc(alias = "FSM_CMP_VSU")]
pub type FsmCmpVsu = crate::Reg<fsm_cmp_vsu::FsmCmpVsuSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_cmp_vsu;
#[doc = "FSM_EX_VAL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_ex_val::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_ex_val::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_ex_val`]
module"]
#[doc(alias = "FSM_EX_VAL")]
pub type FsmExVal = crate::Reg<fsm_ex_val::FsmExValSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_ex_val;
#[doc = "FSM_RD_H (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_rd_h::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_rd_h::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_rd_h`]
module"]
#[doc(alias = "FSM_RD_H")]
pub type FsmRdH = crate::Reg<fsm_rd_h::FsmRdHSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_rd_h;
#[doc = "FSM_P_OH (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_p_oh::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_p_oh::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_p_oh`]
module"]
#[doc(alias = "FSM_P_OH")]
pub type FsmPOh = crate::Reg<fsm_p_oh::FsmPOhSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_p_oh;
#[doc = "FSM_ERA_OH (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_era_oh::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_era_oh::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_era_oh`]
module"]
#[doc(alias = "FSM_ERA_OH")]
pub type FsmEraOh = crate::Reg<fsm_era_oh::FsmEraOhSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_oh;
#[doc = "FSM_SAV_PPUL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_sav_ppul::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_sav_ppul::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_sav_ppul`]
module"]
#[doc(alias = "FSM_SAV_PPUL")]
pub type FsmSavPpul = crate::Reg<fsm_sav_ppul::FsmSavPpulSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sav_ppul;
#[doc = "FSM_PE_VH (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_pe_vh::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_pe_vh::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_pe_vh`]
module"]
#[doc(alias = "FSM_PE_VH")]
pub type FsmPeVh = crate::Reg<fsm_pe_vh::FsmPeVhSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_vh;
#[doc = "FSM_PRG_PW (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_prg_pw::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_prg_pw::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_prg_pw`]
module"]
#[doc(alias = "FSM_PRG_PW")]
pub type FsmPrgPw = crate::Reg<fsm_prg_pw::FsmPrgPwSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_prg_pw;
#[doc = "FSM_ERA_PW (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_era_pw::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_era_pw::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_era_pw`]
module"]
#[doc(alias = "FSM_ERA_PW")]
pub type FsmEraPw = crate::Reg<fsm_era_pw::FsmEraPwSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_pw;
#[doc = "FSM_SAV_ERA_PUL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_sav_era_pul::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_sav_era_pul::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_sav_era_pul`]
module"]
#[doc(alias = "FSM_SAV_ERA_PUL")]
pub type FsmSavEraPul = crate::Reg<fsm_sav_era_pul::FsmSavEraPulSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sav_era_pul;
#[doc = "FSM_TIMER (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_timer::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_timer::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_timer`]
module"]
#[doc(alias = "FSM_TIMER")]
pub type FsmTimer = crate::Reg<fsm_timer::FsmTimerSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_timer;
#[doc = "FSM_MODE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_mode::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_mode::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_mode`]
module"]
#[doc(alias = "FSM_MODE")]
pub type FsmMode = crate::Reg<fsm_mode::FsmModeSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_mode;
#[doc = "FSM_PGM (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_pgm::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_pgm::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_pgm`]
module"]
#[doc(alias = "FSM_PGM")]
pub type FsmPgm = crate::Reg<fsm_pgm::FsmPgmSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pgm;
#[doc = "FSM_ERA (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_era::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_era::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_era`]
module"]
#[doc(alias = "FSM_ERA")]
pub type FsmEra = crate::Reg<fsm_era::FsmEraSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era;
#[doc = "FSM_PRG_PUL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_prg_pul::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_prg_pul::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_prg_pul`]
module"]
#[doc(alias = "FSM_PRG_PUL")]
pub type FsmPrgPul = crate::Reg<fsm_prg_pul::FsmPrgPulSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_prg_pul;
#[doc = "FSM_ERA_PUL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_era_pul::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_era_pul::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_era_pul`]
module"]
#[doc(alias = "FSM_ERA_PUL")]
pub type FsmEraPul = crate::Reg<fsm_era_pul::FsmEraPulSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_pul;
#[doc = "FSM_STEP_SIZE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_step_size::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_step_size::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_step_size`]
module"]
#[doc(alias = "FSM_STEP_SIZE")]
pub type FsmStepSize = crate::Reg<fsm_step_size::FsmStepSizeSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_step_size;
#[doc = "FSM_PUL_CNTR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_pul_cntr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_pul_cntr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_pul_cntr`]
module"]
#[doc(alias = "FSM_PUL_CNTR")]
pub type FsmPulCntr = crate::Reg<fsm_pul_cntr::FsmPulCntrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pul_cntr;
#[doc = "FSM_EC_STEP_HEIGHT (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_ec_step_height::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_ec_step_height::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_ec_step_height`]
module"]
#[doc(alias = "FSM_EC_STEP_HEIGHT")]
pub type FsmEcStepHeight = crate::Reg<fsm_ec_step_height::FsmEcStepHeightSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_ec_step_height;
#[doc = "FSM_ST_MACHINE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_st_machine::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_st_machine::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_st_machine`]
module"]
#[doc(alias = "FSM_ST_MACHINE")]
pub type FsmStMachine = crate::Reg<fsm_st_machine::FsmStMachineSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_st_machine;
#[doc = "FSM_FLES (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_fles::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_fles::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_fles`]
module"]
#[doc(alias = "FSM_FLES")]
pub type FsmFles = crate::Reg<fsm_fles::FsmFlesSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_fles;
#[doc = "FSM_WR_ENA (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_wr_ena::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_wr_ena::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_wr_ena`]
module"]
#[doc(alias = "FSM_WR_ENA")]
pub type FsmWrEna = crate::Reg<fsm_wr_ena::FsmWrEnaSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_wr_ena;
#[doc = "FSM_ACC_PP (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_acc_pp::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_acc_pp::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_acc_pp`]
module"]
#[doc(alias = "FSM_ACC_PP")]
pub type FsmAccPp = crate::Reg<fsm_acc_pp::FsmAccPpSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_acc_pp;
#[doc = "FSM_ACC_EP (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_acc_ep::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_acc_ep::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_acc_ep`]
module"]
#[doc(alias = "FSM_ACC_EP")]
pub type FsmAccEp = crate::Reg<fsm_acc_ep::FsmAccEpSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_acc_ep;
#[doc = "FSM_ADDR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_addr`]
module"]
#[doc(alias = "FSM_ADDR")]
pub type FsmAddr = crate::Reg<fsm_addr::FsmAddrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_addr;
#[doc = "FSM_SECTOR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_sector::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_sector::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_sector`]
module"]
#[doc(alias = "FSM_SECTOR")]
pub type FsmSector = crate::Reg<fsm_sector::FsmSectorSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector;
#[doc = "FMC_REV_ID (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fmc_rev_id::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fmc_rev_id::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fmc_rev_id`]
module"]
#[doc(alias = "FMC_REV_ID")]
pub type FmcRevId = crate::Reg<fmc_rev_id::FmcRevIdSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmc_rev_id;
#[doc = "FSM_ERR_ADDR (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_err_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_err_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_err_addr`]
module"]
#[doc(alias = "FSM_ERR_ADDR")]
pub type FsmErrAddr = crate::Reg<fsm_err_addr::FsmErrAddrSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_err_addr;
#[doc = "FSM_PGM_MAXPUL (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_pgm_maxpul::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_pgm_maxpul::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_pgm_maxpul`]
module"]
#[doc(alias = "FSM_PGM_MAXPUL")]
pub type FsmPgmMaxpul = crate::Reg<fsm_pgm_maxpul::FsmPgmMaxpulSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pgm_maxpul;
#[doc = "FSM_EXECUTE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_execute::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_execute::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_execute`]
module"]
#[doc(alias = "FSM_EXECUTE")]
pub type FsmExecute = crate::Reg<fsm_execute::FsmExecuteSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_execute;
#[doc = "EEPROM_CFG (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`eeprom_cfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`eeprom_cfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@eeprom_cfg`]
module"]
#[doc(alias = "EEPROM_CFG")]
pub type EepromCfg = crate::Reg<eeprom_cfg::EepromCfgSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod eeprom_cfg;
#[doc = "FSM_SECTOR1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_sector1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_sector1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_sector1`]
module"]
#[doc(alias = "FSM_SECTOR1")]
pub type FsmSector1 = crate::Reg<fsm_sector1::FsmSector1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector1;
#[doc = "FSM_SECTOR2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_sector2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_sector2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_sector2`]
module"]
#[doc(alias = "FSM_SECTOR2")]
pub type FsmSector2 = crate::Reg<fsm_sector2::FsmSector2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector2;
#[doc = "FSM_BSLE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_bsle0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_bsle0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_bsle0`]
module"]
#[doc(alias = "FSM_BSLE0")]
pub type FsmBsle0 = crate::Reg<fsm_bsle0::FsmBsle0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bsle0;
#[doc = "FSM_BSLE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_bsle1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_bsle1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_bsle1`]
module"]
#[doc(alias = "FSM_BSLE1")]
pub type FsmBsle1 = crate::Reg<fsm_bsle1::FsmBsle1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bsle1;
#[doc = "FSM_BSLP0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_bslp0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_bslp0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_bslp0`]
module"]
#[doc(alias = "FSM_BSLP0")]
pub type FsmBslp0 = crate::Reg<fsm_bslp0::FsmBslp0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bslp0;
#[doc = "FSM_BSLP1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fsm_bslp1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fsm_bslp1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fsm_bslp1`]
module"]
#[doc(alias = "FSM_BSLP1")]
pub type FsmBslp1 = crate::Reg<fsm_bslp1::FsmBslp1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bslp1;
#[doc = "FCFG_BANK (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_bank::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_bank::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_bank`]
module"]
#[doc(alias = "FCFG_BANK")]
pub type FcfgBank = crate::Reg<fcfg_bank::FcfgBankSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_bank;
#[doc = "FCFG_WRAPPER (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_wrapper::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_wrapper::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_wrapper`]
module"]
#[doc(alias = "FCFG_WRAPPER")]
pub type FcfgWrapper = crate::Reg<fcfg_wrapper::FcfgWrapperSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_wrapper;
#[doc = "FCFG_BNK_TYPE (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_bnk_type::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_bnk_type::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_bnk_type`]
module"]
#[doc(alias = "FCFG_BNK_TYPE")]
pub type FcfgBnkType = crate::Reg<fcfg_bnk_type::FcfgBnkTypeSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_bnk_type;
#[doc = "FCFG_B0_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b0_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b0_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b0_start`]
module"]
#[doc(alias = "FCFG_B0_START")]
pub type FcfgB0Start = crate::Reg<fcfg_b0_start::FcfgB0StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_start;
#[doc = "FCFG_B1_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b1_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b1_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b1_start`]
module"]
#[doc(alias = "FCFG_B1_START")]
pub type FcfgB1Start = crate::Reg<fcfg_b1_start::FcfgB1StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_start;
#[doc = "FCFG_B2_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b2_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b2_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b2_start`]
module"]
#[doc(alias = "FCFG_B2_START")]
pub type FcfgB2Start = crate::Reg<fcfg_b2_start::FcfgB2StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_start;
#[doc = "FCFG_B3_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b3_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b3_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b3_start`]
module"]
#[doc(alias = "FCFG_B3_START")]
pub type FcfgB3Start = crate::Reg<fcfg_b3_start::FcfgB3StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_start;
#[doc = "FCFG_B4_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b4_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b4_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b4_start`]
module"]
#[doc(alias = "FCFG_B4_START")]
pub type FcfgB4Start = crate::Reg<fcfg_b4_start::FcfgB4StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_start;
#[doc = "FCFG_B5_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b5_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b5_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b5_start`]
module"]
#[doc(alias = "FCFG_B5_START")]
pub type FcfgB5Start = crate::Reg<fcfg_b5_start::FcfgB5StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_start;
#[doc = "FCFG_B6_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b6_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b6_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b6_start`]
module"]
#[doc(alias = "FCFG_B6_START")]
pub type FcfgB6Start = crate::Reg<fcfg_b6_start::FcfgB6StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_start;
#[doc = "FCFG_B7_START (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b7_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b7_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b7_start`]
module"]
#[doc(alias = "FCFG_B7_START")]
pub type FcfgB7Start = crate::Reg<fcfg_b7_start::FcfgB7StartSpec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_start;
#[doc = "FCFG_B0_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b0_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b0_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b0_ssize0`]
module"]
#[doc(alias = "FCFG_B0_SSIZE0")]
pub type FcfgB0Ssize0 = crate::Reg<fcfg_b0_ssize0::FcfgB0Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize0;
#[doc = "FCFG_B0_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b0_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b0_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b0_ssize1`]
module"]
#[doc(alias = "FCFG_B0_SSIZE1")]
pub type FcfgB0Ssize1 = crate::Reg<fcfg_b0_ssize1::FcfgB0Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize1;
#[doc = "FCFG_B0_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b0_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b0_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b0_ssize2`]
module"]
#[doc(alias = "FCFG_B0_SSIZE2")]
pub type FcfgB0Ssize2 = crate::Reg<fcfg_b0_ssize2::FcfgB0Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize2;
#[doc = "FCFG_B0_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b0_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b0_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b0_ssize3`]
module"]
#[doc(alias = "FCFG_B0_SSIZE3")]
pub type FcfgB0Ssize3 = crate::Reg<fcfg_b0_ssize3::FcfgB0Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize3;
#[doc = "FCFG_B1_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b1_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b1_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b1_ssize0`]
module"]
#[doc(alias = "FCFG_B1_SSIZE0")]
pub type FcfgB1Ssize0 = crate::Reg<fcfg_b1_ssize0::FcfgB1Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize0;
#[doc = "FCFG_B1_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b1_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b1_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b1_ssize1`]
module"]
#[doc(alias = "FCFG_B1_SSIZE1")]
pub type FcfgB1Ssize1 = crate::Reg<fcfg_b1_ssize1::FcfgB1Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize1;
#[doc = "FCFG_B1_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b1_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b1_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b1_ssize2`]
module"]
#[doc(alias = "FCFG_B1_SSIZE2")]
pub type FcfgB1Ssize2 = crate::Reg<fcfg_b1_ssize2::FcfgB1Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize2;
#[doc = "FCFG_B1_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b1_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b1_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b1_ssize3`]
module"]
#[doc(alias = "FCFG_B1_SSIZE3")]
pub type FcfgB1Ssize3 = crate::Reg<fcfg_b1_ssize3::FcfgB1Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize3;
#[doc = "FCFG_B2_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b2_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b2_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b2_ssize0`]
module"]
#[doc(alias = "FCFG_B2_SSIZE0")]
pub type FcfgB2Ssize0 = crate::Reg<fcfg_b2_ssize0::FcfgB2Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize0;
#[doc = "FCFG_B2_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b2_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b2_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b2_ssize1`]
module"]
#[doc(alias = "FCFG_B2_SSIZE1")]
pub type FcfgB2Ssize1 = crate::Reg<fcfg_b2_ssize1::FcfgB2Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize1;
#[doc = "FCFG_B2_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b2_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b2_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b2_ssize2`]
module"]
#[doc(alias = "FCFG_B2_SSIZE2")]
pub type FcfgB2Ssize2 = crate::Reg<fcfg_b2_ssize2::FcfgB2Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize2;
#[doc = "FCFG_B2_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b2_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b2_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b2_ssize3`]
module"]
#[doc(alias = "FCFG_B2_SSIZE3")]
pub type FcfgB2Ssize3 = crate::Reg<fcfg_b2_ssize3::FcfgB2Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize3;
#[doc = "FCFG_B3_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b3_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b3_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b3_ssize0`]
module"]
#[doc(alias = "FCFG_B3_SSIZE0")]
pub type FcfgB3Ssize0 = crate::Reg<fcfg_b3_ssize0::FcfgB3Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize0;
#[doc = "FCFG_B3_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b3_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b3_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b3_ssize1`]
module"]
#[doc(alias = "FCFG_B3_SSIZE1")]
pub type FcfgB3Ssize1 = crate::Reg<fcfg_b3_ssize1::FcfgB3Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize1;
#[doc = "FCFG_B3_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b3_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b3_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b3_ssize2`]
module"]
#[doc(alias = "FCFG_B3_SSIZE2")]
pub type FcfgB3Ssize2 = crate::Reg<fcfg_b3_ssize2::FcfgB3Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize2;
#[doc = "FCFG_B3_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b3_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b3_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b3_ssize3`]
module"]
#[doc(alias = "FCFG_B3_SSIZE3")]
pub type FcfgB3Ssize3 = crate::Reg<fcfg_b3_ssize3::FcfgB3Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize3;
#[doc = "FCFG_B4_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b4_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b4_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b4_ssize0`]
module"]
#[doc(alias = "FCFG_B4_SSIZE0")]
pub type FcfgB4Ssize0 = crate::Reg<fcfg_b4_ssize0::FcfgB4Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize0;
#[doc = "FCFG_B4_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b4_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b4_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b4_ssize1`]
module"]
#[doc(alias = "FCFG_B4_SSIZE1")]
pub type FcfgB4Ssize1 = crate::Reg<fcfg_b4_ssize1::FcfgB4Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize1;
#[doc = "FCFG_B4_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b4_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b4_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b4_ssize2`]
module"]
#[doc(alias = "FCFG_B4_SSIZE2")]
pub type FcfgB4Ssize2 = crate::Reg<fcfg_b4_ssize2::FcfgB4Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize2;
#[doc = "FCFG_B4_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b4_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b4_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b4_ssize3`]
module"]
#[doc(alias = "FCFG_B4_SSIZE3")]
pub type FcfgB4Ssize3 = crate::Reg<fcfg_b4_ssize3::FcfgB4Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize3;
#[doc = "FCFG_B5_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b5_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b5_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b5_ssize0`]
module"]
#[doc(alias = "FCFG_B5_SSIZE0")]
pub type FcfgB5Ssize0 = crate::Reg<fcfg_b5_ssize0::FcfgB5Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize0;
#[doc = "FCFG_B5_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b5_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b5_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b5_ssize1`]
module"]
#[doc(alias = "FCFG_B5_SSIZE1")]
pub type FcfgB5Ssize1 = crate::Reg<fcfg_b5_ssize1::FcfgB5Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize1;
#[doc = "FCFG_B5_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b5_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b5_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b5_ssize2`]
module"]
#[doc(alias = "FCFG_B5_SSIZE2")]
pub type FcfgB5Ssize2 = crate::Reg<fcfg_b5_ssize2::FcfgB5Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize2;
#[doc = "FCFG_B5_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b5_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b5_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b5_ssize3`]
module"]
#[doc(alias = "FCFG_B5_SSIZE3")]
pub type FcfgB5Ssize3 = crate::Reg<fcfg_b5_ssize3::FcfgB5Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize3;
#[doc = "FCFG_B6_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b6_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b6_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b6_ssize0`]
module"]
#[doc(alias = "FCFG_B6_SSIZE0")]
pub type FcfgB6Ssize0 = crate::Reg<fcfg_b6_ssize0::FcfgB6Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize0;
#[doc = "FCFG_B6_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b6_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b6_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b6_ssize1`]
module"]
#[doc(alias = "FCFG_B6_SSIZE1")]
pub type FcfgB6Ssize1 = crate::Reg<fcfg_b6_ssize1::FcfgB6Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize1;
#[doc = "FCFG_B6_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b6_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b6_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b6_ssize2`]
module"]
#[doc(alias = "FCFG_B6_SSIZE2")]
pub type FcfgB6Ssize2 = crate::Reg<fcfg_b6_ssize2::FcfgB6Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize2;
#[doc = "FCFG_B6_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b6_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b6_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b6_ssize3`]
module"]
#[doc(alias = "FCFG_B6_SSIZE3")]
pub type FcfgB6Ssize3 = crate::Reg<fcfg_b6_ssize3::FcfgB6Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize3;
#[doc = "FCFG_B7_SSIZE0 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b7_ssize0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b7_ssize0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b7_ssize0`]
module"]
#[doc(alias = "FCFG_B7_SSIZE0")]
pub type FcfgB7Ssize0 = crate::Reg<fcfg_b7_ssize0::FcfgB7Ssize0Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize0;
#[doc = "FCFG_B7_SSIZE1 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b7_ssize1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b7_ssize1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b7_ssize1`]
module"]
#[doc(alias = "FCFG_B7_SSIZE1")]
pub type FcfgB7Ssize1 = crate::Reg<fcfg_b7_ssize1::FcfgB7Ssize1Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize1;
#[doc = "FCFG_B7_SSIZE2 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b7_ssize2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b7_ssize2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b7_ssize2`]
module"]
#[doc(alias = "FCFG_B7_SSIZE2")]
pub type FcfgB7Ssize2 = crate::Reg<fcfg_b7_ssize2::FcfgB7Ssize2Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize2;
#[doc = "FCFG_B7_SSIZE3 (rw) register accessor: Internal. Only to be used through TI provided API.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fcfg_b7_ssize3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fcfg_b7_ssize3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcfg_b7_ssize3`]
module"]
#[doc(alias = "FCFG_B7_SSIZE3")]
pub type FcfgB7Ssize3 = crate::Reg<fcfg_b7_ssize3::FcfgB7Ssize3Spec>;
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize3;