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
#[doc = "Crossbar Switch"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "Crossbar A Select Register 0"]
    pub SEL0: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 1"]
    pub SEL1: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 2"]
    pub SEL2: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 3"]
    pub SEL3: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 4"]
    pub SEL4: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 5"]
    pub SEL5: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 6"]
    pub SEL6: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 7"]
    pub SEL7: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 8"]
    pub SEL8: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 9"]
    pub SEL9: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 10"]
    pub SEL10: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 11"]
    pub SEL11: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 12"]
    pub SEL12: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 13"]
    pub SEL13: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 14"]
    pub SEL14: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 15"]
    pub SEL15: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 16"]
    pub SEL16: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 17"]
    pub SEL17: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 18"]
    pub SEL18: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 19"]
    pub SEL19: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 20"]
    pub SEL20: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 21"]
    pub SEL21: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 22"]
    pub SEL22: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 23"]
    pub SEL23: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 24"]
    pub SEL24: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 25"]
    pub SEL25: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 26"]
    pub SEL26: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 27"]
    pub SEL27: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 28"]
    pub SEL28: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 29"]
    pub SEL29: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 30"]
    pub SEL30: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 31"]
    pub SEL31: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 32"]
    pub SEL32: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 33"]
    pub SEL33: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 34"]
    pub SEL34: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 35"]
    pub SEL35: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 36"]
    pub SEL36: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 37"]
    pub SEL37: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 38"]
    pub SEL38: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 39"]
    pub SEL39: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 40"]
    pub SEL40: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 41"]
    pub SEL41: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 42"]
    pub SEL42: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 43"]
    pub SEL43: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 44"]
    pub SEL44: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 45"]
    pub SEL45: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 46"]
    pub SEL46: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 47"]
    pub SEL47: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 48"]
    pub SEL48: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 49"]
    pub SEL49: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 50"]
    pub SEL50: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 51"]
    pub SEL51: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 52"]
    pub SEL52: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 53"]
    pub SEL53: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 54"]
    pub SEL54: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 55"]
    pub SEL55: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 56"]
    pub SEL56: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 57"]
    pub SEL57: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 58"]
    pub SEL58: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 59"]
    pub SEL59: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 60"]
    pub SEL60: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 61"]
    pub SEL61: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 62"]
    pub SEL62: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 63"]
    pub SEL63: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 64"]
    pub SEL64: crate::RWRegister<u16>,
    #[doc = "Crossbar A Select Register 65"]
    pub SEL65: crate::RWRegister<u16>,
    #[doc = "Crossbar A Control Register 0"]
    pub CTRL0: crate::RWRegister<u16>,
    #[doc = "Crossbar A Control Register 1"]
    pub CTRL1: crate::RWRegister<u16>,
}
#[doc = "Crossbar A Select Register 0"]
pub mod SEL0 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT0 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL0 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT1 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL1 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 1"]
pub mod SEL1 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT2 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL2 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT3 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL3 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 2"]
pub mod SEL2 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT4 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL4 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT5 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL5 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 3"]
pub mod SEL3 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT6 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL6 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT7 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL7 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 4"]
pub mod SEL4 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT8 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL8 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT9 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL9 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 5"]
pub mod SEL5 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT10 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL10 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT11 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL11 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 6"]
pub mod SEL6 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT12 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL12 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT13 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL13 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 7"]
pub mod SEL7 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT14 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL14 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT15 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL15 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 8"]
pub mod SEL8 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT16 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL16 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT17 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL17 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 9"]
pub mod SEL9 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT18 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL18 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT19 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL19 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 10"]
pub mod SEL10 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT20 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL20 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT21 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL21 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 11"]
pub mod SEL11 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT22 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL22 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT23 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL23 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 12"]
pub mod SEL12 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT24 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL24 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT25 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL25 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 13"]
pub mod SEL13 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT26 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL26 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT27 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL27 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 14"]
pub mod SEL14 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT28 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL28 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT29 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL29 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 15"]
pub mod SEL15 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT30 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL30 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT31 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL31 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 16"]
pub mod SEL16 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT32 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL32 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT33 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL33 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 17"]
pub mod SEL17 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT34 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL34 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT35 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL35 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 18"]
pub mod SEL18 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT36 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL36 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT37 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL37 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 19"]
pub mod SEL19 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT38 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL38 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT39 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL39 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 20"]
pub mod SEL20 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT40 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL40 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT41 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL41 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 21"]
pub mod SEL21 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT42 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL42 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT43 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL43 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 22"]
pub mod SEL22 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT44 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL44 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT45 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL45 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 23"]
pub mod SEL23 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT46 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL46 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT47 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL47 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 24"]
pub mod SEL24 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT48 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL48 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT49 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL49 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 25"]
pub mod SEL25 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT50 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL50 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT51 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL51 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 26"]
pub mod SEL26 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT52 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL52 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT53 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL53 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 27"]
pub mod SEL27 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT54 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL54 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT55 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL55 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 28"]
pub mod SEL28 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT56 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL56 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT57 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL57 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 29"]
pub mod SEL29 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT58 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL58 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT59 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL59 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 30"]
pub mod SEL30 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT60 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL60 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT61 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL61 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 31"]
pub mod SEL31 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT62 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL62 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT63 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL63 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 32"]
pub mod SEL32 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT64 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL64 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT65 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL65 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 33"]
pub mod SEL33 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT66 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL66 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT67 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL67 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 34"]
pub mod SEL34 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT68 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL68 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT69 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL69 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 35"]
pub mod SEL35 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT70 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL70 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT71 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL71 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 36"]
pub mod SEL36 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT72 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL72 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT73 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL73 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 37"]
pub mod SEL37 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT74 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL74 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT75 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL75 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 38"]
pub mod SEL38 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT76 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL76 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT77 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL77 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 39"]
pub mod SEL39 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT78 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL78 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT79 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL79 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 40"]
pub mod SEL40 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT80 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL80 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT81 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL81 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 41"]
pub mod SEL41 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT82 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL82 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT83 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL83 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 42"]
pub mod SEL42 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT84 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL84 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT85 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL85 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 43"]
pub mod SEL43 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT86 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL86 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT87 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL87 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 44"]
pub mod SEL44 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT88 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL88 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT89 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL89 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 45"]
pub mod SEL45 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT90 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL90 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT91 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL91 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 46"]
pub mod SEL46 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT92 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL92 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT93 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL93 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 47"]
pub mod SEL47 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT94 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL94 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT95 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL95 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 48"]
pub mod SEL48 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT96 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL96 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT97 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL97 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 49"]
pub mod SEL49 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT98 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL98 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT99 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL99 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 50"]
pub mod SEL50 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT100 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL100 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT101 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL101 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 51"]
pub mod SEL51 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT102 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL102 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT103 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL103 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 52"]
pub mod SEL52 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT104 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL104 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT105 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL105 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 53"]
pub mod SEL53 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT106 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL106 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT107 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL107 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 54"]
pub mod SEL54 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT108 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL108 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT109 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL109 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 55"]
pub mod SEL55 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT110 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL110 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT111 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL111 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 56"]
pub mod SEL56 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT112 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL112 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT113 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL113 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 57"]
pub mod SEL57 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT114 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL114 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT115 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL115 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 58"]
pub mod SEL58 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT116 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL116 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT117 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL117 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 59"]
pub mod SEL59 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT118 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL118 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT119 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL119 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 60"]
pub mod SEL60 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT120 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL120 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT121 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL121 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 61"]
pub mod SEL61 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT122 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL122 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT123 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL123 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 62"]
pub mod SEL62 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT124 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL124 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT125 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL125 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 63"]
pub mod SEL63 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT126 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL126 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT127 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL127 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 64"]
pub mod SEL64 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT128 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL128 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT129 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL129 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Select Register 65"]
pub mod SEL65 {
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT130 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL130 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Input (XBARA_INn) to be muxed to XBARA_OUT131 (refer to Functional Description section for input/output assignment)"]
    pub mod SEL131 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "Crossbar A Control Register 0"]
pub mod CTRL0 {
    #[doc = "DMA Enable for XBAR_OUT0"]
    pub mod DEN0 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "DMA disabled"]
            pub const DEN0_0: u16 = 0;
            #[doc = "DMA enabled"]
            pub const DEN0_1: u16 = 0x01;
        }
    }
    #[doc = "Interrupt Enable for XBAR_OUT0"]
    pub mod IEN0 {
        pub const offset: u16 = 1;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Interrupt disabled"]
            pub const IEN0_0: u16 = 0;
            #[doc = "Interrupt enabled"]
            pub const IEN0_1: u16 = 0x01;
        }
    }
    #[doc = "Active edge for edge detection on XBAR_OUT0"]
    pub mod EDGE0 {
        pub const offset: u16 = 2;
        pub const mask: u16 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "STS0 never asserts"]
            pub const EDGE0_0: u16 = 0;
            #[doc = "STS0 asserts on rising edges of XBAR_OUT0"]
            pub const EDGE0_1: u16 = 0x01;
            #[doc = "STS0 asserts on falling edges of XBAR_OUT0"]
            pub const EDGE0_2: u16 = 0x02;
            #[doc = "STS0 asserts on rising and falling edges of XBAR_OUT0"]
            pub const EDGE0_3: u16 = 0x03;
        }
    }
    #[doc = "Edge detection status for XBAR_OUT0"]
    pub mod STS0 {
        pub const offset: u16 = 4;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Active edge not yet detected on XBAR_OUT0"]
            pub const STS0_0: u16 = 0;
            #[doc = "Active edge detected on XBAR_OUT0"]
            pub const STS0_1: u16 = 0x01;
        }
    }
    #[doc = "DMA Enable for XBAR_OUT1"]
    pub mod DEN1 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "DMA disabled"]
            pub const DEN1_0: u16 = 0;
            #[doc = "DMA enabled"]
            pub const DEN1_1: u16 = 0x01;
        }
    }
    #[doc = "Interrupt Enable for XBAR_OUT1"]
    pub mod IEN1 {
        pub const offset: u16 = 9;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Interrupt disabled"]
            pub const IEN1_0: u16 = 0;
            #[doc = "Interrupt enabled"]
            pub const IEN1_1: u16 = 0x01;
        }
    }
    #[doc = "Active edge for edge detection on XBAR_OUT1"]
    pub mod EDGE1 {
        pub const offset: u16 = 10;
        pub const mask: u16 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "STS1 never asserts"]
            pub const EDGE1_0: u16 = 0;
            #[doc = "STS1 asserts on rising edges of XBAR_OUT1"]
            pub const EDGE1_1: u16 = 0x01;
            #[doc = "STS1 asserts on falling edges of XBAR_OUT1"]
            pub const EDGE1_2: u16 = 0x02;
            #[doc = "STS1 asserts on rising and falling edges of XBAR_OUT1"]
            pub const EDGE1_3: u16 = 0x03;
        }
    }
    #[doc = "Edge detection status for XBAR_OUT1"]
    pub mod STS1 {
        pub const offset: u16 = 12;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Active edge not yet detected on XBAR_OUT1"]
            pub const STS1_0: u16 = 0;
            #[doc = "Active edge detected on XBAR_OUT1"]
            pub const STS1_1: u16 = 0x01;
        }
    }
}
#[doc = "Crossbar A Control Register 1"]
pub mod CTRL1 {
    #[doc = "DMA Enable for XBAR_OUT2"]
    pub mod DEN2 {
        pub const offset: u16 = 0;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "DMA disabled"]
            pub const DEN2_0: u16 = 0;
            #[doc = "DMA enabled"]
            pub const DEN2_1: u16 = 0x01;
        }
    }
    #[doc = "Interrupt Enable for XBAR_OUT2"]
    pub mod IEN2 {
        pub const offset: u16 = 1;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Interrupt disabled"]
            pub const IEN2_0: u16 = 0;
            #[doc = "Interrupt enabled"]
            pub const IEN2_1: u16 = 0x01;
        }
    }
    #[doc = "Active edge for edge detection on XBAR_OUT2"]
    pub mod EDGE2 {
        pub const offset: u16 = 2;
        pub const mask: u16 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "STS2 never asserts"]
            pub const EDGE2_0: u16 = 0;
            #[doc = "STS2 asserts on rising edges of XBAR_OUT2"]
            pub const EDGE2_1: u16 = 0x01;
            #[doc = "STS2 asserts on falling edges of XBAR_OUT2"]
            pub const EDGE2_2: u16 = 0x02;
            #[doc = "STS2 asserts on rising and falling edges of XBAR_OUT2"]
            pub const EDGE2_3: u16 = 0x03;
        }
    }
    #[doc = "Edge detection status for XBAR_OUT2"]
    pub mod STS2 {
        pub const offset: u16 = 4;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Active edge not yet detected on XBAR_OUT2"]
            pub const STS2_0: u16 = 0;
            #[doc = "Active edge detected on XBAR_OUT2"]
            pub const STS2_1: u16 = 0x01;
        }
    }
    #[doc = "DMA Enable for XBAR_OUT3"]
    pub mod DEN3 {
        pub const offset: u16 = 8;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "DMA disabled"]
            pub const DEN3_0: u16 = 0;
            #[doc = "DMA enabled"]
            pub const DEN3_1: u16 = 0x01;
        }
    }
    #[doc = "Interrupt Enable for XBAR_OUT3"]
    pub mod IEN3 {
        pub const offset: u16 = 9;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Interrupt disabled"]
            pub const IEN3_0: u16 = 0;
            #[doc = "Interrupt enabled"]
            pub const IEN3_1: u16 = 0x01;
        }
    }
    #[doc = "Active edge for edge detection on XBAR_OUT3"]
    pub mod EDGE3 {
        pub const offset: u16 = 10;
        pub const mask: u16 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "STS3 never asserts"]
            pub const EDGE3_0: u16 = 0;
            #[doc = "STS3 asserts on rising edges of XBAR_OUT3"]
            pub const EDGE3_1: u16 = 0x01;
            #[doc = "STS3 asserts on falling edges of XBAR_OUT3"]
            pub const EDGE3_2: u16 = 0x02;
            #[doc = "STS3 asserts on rising and falling edges of XBAR_OUT3"]
            pub const EDGE3_3: u16 = 0x03;
        }
    }
    #[doc = "Edge detection status for XBAR_OUT3"]
    pub mod STS3 {
        pub const offset: u16 = 12;
        pub const mask: u16 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Active edge not yet detected on XBAR_OUT3"]
            pub const STS3_0: u16 = 0;
            #[doc = "Active edge detected on XBAR_OUT3"]
            pub const STS3_1: u16 = 0x01;
        }
    }
}