summaryrefslogblamecommitdiffstats
blob: d91651dcbc0a3fe35f0b3a4dcca03d60bef61b64 (plain) (tree)
1
2
3
4
5
6
7
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
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





                                                          
      












































































































































































































































































































































                                                                                  
 









































































































                                                                
 





































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                  
       
































                                                                                                                       
        
























































                                                                                                                           
     




















































                                                                                                                                
     













                                                                                           
     

































































































                                                                                                     
     





























































                                                                                            

        





















































































































































































































































































































                                                                                                 
     






























                                                                                       
     


















































                                                                                                 
     

























                                                                                          
     













































































































































































































                                                                                               
     


























































































                                                                                                                                                        
     







































































                                                                                                                                           
       
 
       
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 14">
<meta name=Originator content="Microsoft Word 14">
<link rel=File-List href="release_notes_edma3_lld_files/filelist.xml">
<link rel=Edit-Time-Data href="release_notes_edma3_lld_files/editdata.mso">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<title>EDMA3 LLD 02.12.00 Release Notes</title>
<!--[if gte mso 9]><xml>
 <o:DocumentProperties>
  <o:Author>Gou, Hongmei</o:Author>
  <o:Template>Normal</o:Template>
  <o:LastAuthor>Gou, Hongmei</o:LastAuthor>
  <o:Revision>9</o:Revision>
  <o:TotalTime>5</o:TotalTime>
  <o:Created>2015-08-10T22:14:00Z</o:Created>
  <o:LastSaved>2015-08-10T22:20:00Z</o:LastSaved>
  <o:Pages>4</o:Pages>
  <o:Words>1696</o:Words>
  <o:Characters>9670</o:Characters>
  <o:Company>Texas Instruments Incorporated</o:Company>
  <o:Lines>80</o:Lines>
  <o:Paragraphs>22</o:Paragraphs>
  <o:CharactersWithSpaces>11344</o:CharactersWithSpaces>
  <o:Version>14.00</o:Version>
 </o:DocumentProperties>
 <o:OfficeDocumentSettings>
  <o:AllowPNG/>
 </o:OfficeDocumentSettings>
</xml><![endif]-->
<link rel=themeData href="release_notes_edma3_lld_files/themedata.thmx">
<link rel=colorSchemeMapping
href="release_notes_edma3_lld_files/colorschememapping.xml">
<!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:Zoom>110</w:Zoom>
  <w:TrackMoves>false</w:TrackMoves>
  <w:TrackFormatting/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SplitPgBreakAndParaMark/>
  </w:Compatibility>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="&#45;-"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]-->
<style>
<!--
color : #1a41a8 ;

 /* Font Definitions */
 @font-face
	{font-family:Wingdings;
	panose-1:5 0 0 0 0 0 0 0 0 0;
	mso-font-charset:2;
	mso-generic-font-family:auto;
	mso-font-pitch:variable;
	mso-font-signature:0 268435456 0 0 -2147483648 0;}
@font-face
	{font-family:Wingdings;
	panose-1:5 0 0 0 0 0 0 0 0 0;
	mso-font-charset:2;
	mso-generic-font-family:auto;
	mso-font-pitch:variable;
	mso-font-signature:0 268435456 0 0 -2147483648 0;}
@font-face
	{font-family:Tahoma;
	panose-1:2 11 6 4 3 5 4 4 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520081665 -1073717157 41 0 66047 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:windowtext;
	mso-believe-normal-left:yes;}
h1
	{mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-link:"Heading 1 Char";
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	mso-outline-level:1;
	font-size:24.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:windowtext;
	font-weight:bold;}
h2
	{mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-link:"Heading 2 Char";
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	mso-outline-level:2;
	font-size:18.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:windowtext;
	font-weight:bold;}
h3
	{mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-link:"Heading 3 Char";
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	mso-outline-level:3;
	font-size:13.5pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:windowtext;
	font-weight:bold;}
h4
	{mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-link:"Heading 4 Char";
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	mso-outline-level:4;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:windowtext;
	font-weight:bold;}
p
	{mso-style-noshow:yes;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:black;}
tt
	{mso-style-noshow:yes;
	mso-style-priority:99;
	font-family:"Courier New";
	mso-ascii-font-family:"Courier New";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:"Courier New";
	mso-bidi-font-family:"Courier New";}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
	{mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-link:"Balloon Text Char";
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	font-size:8.0pt;
	font-family:"Tahoma","sans-serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:windowtext;}
p.title, li.title, div.title
	{mso-style-name:title;
	mso-style-unhide:no;
	mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	text-align:center;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	color:black;}
span.Heading1Char
	{mso-style-name:"Heading 1 Char";
	mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-locked:yes;
	mso-style-link:"Heading 1";
	mso-ansi-font-size:14.0pt;
	mso-bidi-font-size:14.0pt;
	font-family:"Cambria","serif";
	mso-ascii-font-family:Cambria;
	mso-ascii-theme-font:major-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:major-fareast;
	mso-hansi-font-family:Cambria;
	mso-hansi-theme-font:major-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:major-bidi;
	color:#365F91;
	mso-themecolor:accent1;
	mso-themeshade:191;
	font-weight:bold;}
span.Heading2Char
	{mso-style-name:"Heading 2 Char";
	mso-style-noshow:yes;
	mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-locked:yes;
	mso-style-link:"Heading 2";
	mso-ansi-font-size:13.0pt;
	mso-bidi-font-size:13.0pt;
	font-family:"Cambria","serif";
	mso-ascii-font-family:Cambria;
	mso-ascii-theme-font:major-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:major-fareast;
	mso-hansi-font-family:Cambria;
	mso-hansi-theme-font:major-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:major-bidi;
	color:#4F81BD;
	mso-themecolor:accent1;
	font-weight:bold;}
span.Heading3Char
	{mso-style-name:"Heading 3 Char";
	mso-style-noshow:yes;
	mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-locked:yes;
	mso-style-link:"Heading 3";
	mso-ansi-font-size:12.0pt;
	mso-bidi-font-size:12.0pt;
	font-family:"Cambria","serif";
	mso-ascii-font-family:Cambria;
	mso-ascii-theme-font:major-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:major-fareast;
	mso-hansi-font-family:Cambria;
	mso-hansi-theme-font:major-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:major-bidi;
	color:#4F81BD;
	mso-themecolor:accent1;
	font-weight:bold;}
span.Heading4Char
	{mso-style-name:"Heading 4 Char";
	mso-style-noshow:yes;
	mso-style-priority:9;
	mso-style-unhide:no;
	mso-style-locked:yes;
	mso-style-link:"Heading 4";
	mso-ansi-font-size:12.0pt;
	mso-bidi-font-size:12.0pt;
	font-family:"Cambria","serif";
	mso-ascii-font-family:Cambria;
	mso-ascii-theme-font:major-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:major-fareast;
	mso-hansi-font-family:Cambria;
	mso-hansi-theme-font:major-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:major-bidi;
	color:#4F81BD;
	mso-themecolor:accent1;
	font-weight:bold;
	font-style:italic;}
span.BalloonTextChar
	{mso-style-name:"Balloon Text Char";
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-unhide:no;
	mso-style-locked:yes;
	mso-style-link:"Balloon Text";
	mso-ansi-font-size:8.0pt;
	mso-bidi-font-size:8.0pt;
	font-family:"Tahoma","sans-serif";
	mso-ascii-font-family:Tahoma;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Tahoma;
	mso-bidi-font-family:Tahoma;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	font-size:10.0pt;
	mso-ansi-font-size:10.0pt;
	mso-bidi-font-size:10.0pt;}
@page WordSection1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.WordSection1
	{page:WordSection1;}
 /* List Definitions */
 @list l0
	{mso-list-id:41713043;
	mso-list-template-ids:1675538578;}
@list l0:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l0:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l1
	{mso-list-id:140343945;
	mso-list-template-ids:1509177956;}
@list l1:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l1:level2
	{mso-level-number-format:bullet;
	mso-level-text:o;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:"Courier New";
	mso-bidi-font-family:"Times New Roman";}
@list l1:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l1:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l1:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l1:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l1:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l1:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l1:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l2
	{mso-list-id:234583406;
	mso-list-template-ids:2057586934;}
@list l2:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l2:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3
	{mso-list-id:596713906;
	mso-list-template-ids:-698611348;}
@list l3:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l3:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4
	{mso-list-id:889656072;
	mso-list-template-ids:-1588447078;}
@list l4:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l4:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5
	{mso-list-id:1146584814;
	mso-list-template-ids:1957456326;}
@list l5:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l5:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6
	{mso-list-id:1215235312;
	mso-list-template-ids:1448747862;}
@list l6:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l6:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l7
	{mso-list-id:1353603126;
	mso-list-template-ids:-1524469308;}
@list l7:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l7:level2
	{mso-level-number-format:bullet;
	mso-level-text:o;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:"Courier New";
	mso-bidi-font-family:"Times New Roman";}
@list l7:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l7:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l7:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l7:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l7:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l7:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l7:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0A7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Wingdings;}
@list l8
	{mso-list-id:1527206802;
	mso-list-template-ids:-1141859510;}
@list l8:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l8:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l9
	{mso-list-id:1950232551;
	mso-list-template-ids:-751656110;}
@list l10
	{mso-list-id:2002468852;
	mso-list-template-ids:1601230408;}
@list l10:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l10:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11
	{mso-list-id:2010979068;
	mso-list-template-ids:-196057422;}
@list l11:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level2
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level3
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level4
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level5
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level6
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level7
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level8
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l11:level9
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l7:level1 lfo6
	{mso-level-start-at:0;
	mso-level-numbering:continue;
	mso-level-text:o;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:"Courier New";
	mso-bidi-font-family:"Times New Roman";}
@list l7:level1 lfo7
	{mso-level-start-at:0;
	mso-level-numbering:continue;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:Symbol;}
@list l7:level1 lfo8
	{mso-level-start-at:0;
	mso-level-numbering:continue;
	mso-level-text:o;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:"Courier New";
	mso-bidi-font-family:"Times New Roman";}
@list l1:level1 lfo13
	{mso-level-start-at:0;
	mso-level-numbering:continue;
	mso-level-text:o;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	mso-ansi-font-size:10.0pt;
	font-family:"Courier New";
	mso-bidi-font-family:"Times New Roman";}
-->
</style>
<!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman","serif";}
</style>
<![endif]--><![if mso 9]>
<style>
p.MsoNormal
	{margin-left:15.0pt;}
</style>
<![endif]><!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1"/>
 </o:shapelayout></xml><![endif]-->
</head>

<body bgcolor=white lang=EN-US link=blue vlink=purple style='tab-interval:.5in;
margin-left:15.0pt;margin-top:3.75pt;margin-right:15.0pt;margin-bottom:3.75pt'>

<div class=WordSection1>

<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
 style='width:100.0%;mso-cellspacing:0in;mso-yfti-tbllook:1184;mso-padding-alt:
 0in 0in 0in 0in'>
 <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
  <td width=222 style='width:166.5pt;background:black;padding:0in 0in 0in 0in'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><a
  href="http://www.ti.com/"><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
  mso-fareast-font-family:"Times New Roman";mso-no-proof:yes;text-decoration:
  none;text-underline:none'><img border=0 width=222 height=54 id="_x0000_i1037"
  src="file:///C:\Projects\MCSDK_8_0\edma3lld\edma3_lld_push_Doc_Version\edma3_lld_development\docs\html\tilogo.gif"
  alt="Texas Instruments"></span></a><span style='font-size:10.0pt;font-family:
  "Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";color:black'><o:p></o:p></span></p>
  </td>
  <td style='background:red;padding:0in 0in 0in 0in;-moz-background-clip: initial;
  -moz-background-origin: initial;-moz-background-inline-policy: initial;
  background-attachment:scroll;background-position-x:0%;background-position-y:
  50%'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><span
  style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
  "Times New Roman";color:black;mso-no-proof:yes'><img border=0 width=314
  height=26 id="_x0000_i1036"
  src="file:///C:\Projects\MCSDK_8_0\edma3lld\edma3_lld_push_Doc_Version\edma3_lld_development\docs\html\titagline.gif"
  alt="Technology for Innovators(tm)"></span><span style='font-size:10.0pt;
  font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";
  color:black'><o:p></o:p></span></p>
  </td>
 </tr>
</table>

<h1 align=center style='text-align:center'><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>EDMA3 LLD 02.12.01
Release Notes<o:p></o:p></span></h1>

<h2 align=center style='text-align:center'><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>August xx, 2015<o:p></o:p></span></h2>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>This EDMA3
Low Level Driver Release is targeted to the users (device drivers and
applications) for submitting and synchronizing with EDMA3 based DMA transfers. This
release supports
DA830,C6748,TCI6498,TI816X,C6472,TCI6486,TI814X,TI816X,TI811X,TCI6608,TCI6616,TCI6614,C6670,C6678,TCI6638K2K,TDA2xx,TDA3xx,
DRA72x, AM335x, AM437x platforms, on SYS/BIOS 6 side &amp; OMAPL138 on SYS/BIOS
and ARM side. Porting instructions are also provided to use the package for
different platforms and Operating Systems. <o:p></o:p></span></p>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><a
href="#Introduction">Introduction</a>, <a href="#Documentation">Documentation</a>,
<a href="#Whats_New">What's New</a>, <a href="#Upgrade_Info">Upgrade Info</a>, <a
href="#Device_Support">Device Support</a>, <a href="#Compatibility">Compatibility
Information</a>, <a href="#Validation">Validation Info</a>, <a
href="#Known_Issues">Known Issues</a>, <a href="#Examples">Examples</a>, <a
href="#Version">Version Information</a>, <a href="#Support">Technical Support</a>
<o:p></o:p></span></p>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name=Introduction><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Introduction<o:p></o:p></span></a></h2>

<p><span style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>EDMA3 LLD is a single product package
containing the following stand-alone software components: <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l4 level1 lfo1;tab-stops:list .5in'><span
     style='mso-bookmark:Introduction'><b><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>EDMA3
     Resource Manager</span></b></span><span style='mso-bookmark:Introduction'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'> - TI mandated library for all EDMA3 peripheral users
     to acquire and configure EDMA3 hardware resources (DMA/QDMA channels,
     PaRAM Sets, TCCs etc.) and DMA Interrupt Service Routines. <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l4 level1 lfo1;tab-stops:list .5in'><span
     style='mso-bookmark:Introduction'><b><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>EDMA3
     Driver</span></b></span><span style='mso-bookmark:Introduction'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'> - Functional library providing APIs for programming,
     scheduling and synchronizing with EDMA transfers and many more. <o:p></o:p></span></span></li>
</ul>

<p><span style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>EDMA3 Resource Manager can be used
independently whereas the EDMA3 Driver requires the Resource Manager services
internally. <o:p></o:p></span></span></p>

<p><span style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>EDMA3 LLD (both Resource Manager and the
Driver) is a platform independent package. Hence it can be used across multiple
platforms. Porting instructions are provided for both the components to do the
same. <o:p></o:p></span></span></p>

<p><span style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>It is also an OS-agnostic package and thus
can be used across multiple operating systems. OS-adaptation layer needs to be
provided by the user (in case it is needed) for OS customization. Instructions
to do the same are also provided along with the package. <o:p></o:p></span></span></p>

<p><span style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>The Low Level Driver has already been ported
(SYS/BIOS Operating Systems) and tested on various platforms mentioned below.
Sample initialization libraries, which configure the EDMA3 hardware and provide
the necessary OS abstraction layer, are also a part of the package. These
libraries are available both for the EDMA3 Resource Manager and EDMA3 Driver.
These could be used for proper initialization of the software component(s)
along with the OS adaptation layer for the same. <o:p></o:p></span></span></p>

<p><span style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>The Low Level Driver consists of the
following packages: <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l8 level1 lfo2;tab-stops:list .5in'><span
     style='mso-bookmark:Introduction'><tt><b><span style='font-size:10.0pt'>ti.sdo.edma3.rm</span></b></tt></span><span
     style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>
     - EDMA3 Resource Manager. <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l8 level1 lfo2;tab-stops:list .5in'><span
     style='mso-bookmark:Introduction'><tt><b><span style='font-size:10.0pt'>ti.sdo.edma3.rm.sample</span></b></tt></span><span
     style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>
     - Sample initialization library / OS abstraction layer for the Resource
     Manager. <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l8 level1 lfo2;tab-stops:list .5in'><span
     style='mso-bookmark:Introduction'><tt><b><span style='font-size:10.0pt'>ti.sdo.edma3.drv</span></b></tt></span><span
     style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>
     - EDMA3 Driver. <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l8 level1 lfo2;tab-stops:list .5in'><span
     style='mso-bookmark:Introduction'><tt><b><span style='font-size:10.0pt'>ti.sdo.edma3.drv.sample</span></b></tt></span><span
     style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>
     - Sample initialization library / OS abstraction layer for the Driver. <o:p></o:p></span></span></li>
</ul>

<p><span style='mso-bookmark:Introduction'><b><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>Note: </span></b></span><span
style='mso-bookmark:Introduction'><span style='font-size:10.0pt;font-family:
"Tahoma","sans-serif"'><o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l10 level1 lfo3;tab-stops:
     list .5in'><span style='mso-bookmark:Introduction'><b><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>Address translation is not done in EDMA3 LLD</span></b></span><span
     style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>
     <o:p></o:p></span></span></li>
</ul>

<p class=MsoNormal style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:.5in;margin-bottom:.0001pt'><span style='mso-bookmark:Introduction'><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
"Times New Roman";color:black'><br>
If the memory map of the EDMA is different than the host processor programming
it, EDMA3LLD being a low level driver the address translation is not done by
this. It is expected that the application will provide the addresses,
corresponding to EDMA memory map to configure in PARAM. <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l10 level1 lfo3;tab-stops:
     list .5in'><span style='mso-bookmark:Introduction'><b><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman";color:red'>All resources are allocated to all cores in
     default sample configuration files of EDMA3 LLD</span></b></span><span
     style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";
     color:red'> </span></span><span style='mso-bookmark:Introduction'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'><o:p></o:p></span></span></li>
</ul>

<p class=MsoNormal style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:.5in;margin-bottom:.0001pt'><span style='mso-bookmark:Introduction'><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
"Times New Roman";color:black'><br>
The EDMA resources like Channels, PaRAMs and TCCs which are shared by multiple
cores (Ex: in TI814X and TI816X), The default configuration file allocates all
the resources to every core since the resource split is application dependant.
The applications using EDMA3LLD should appropriately allocate the resources in
the config files and build EDMA3LLD libraries. <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l10 level1 lfo3;tab-stops:
     list .5in'><span style='mso-bookmark:Introduction'><b><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>Building EDMA3LLD libs and examples on windows 7</span></b></span><span
     style='mso-bookmark:Introduction'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>
     <o:p></o:p></span></span></li>
</ul>

<p class=MsoNormal style='margin-top:0in;margin-right:0in;margin-bottom:0in;
margin-left:.5in;margin-bottom:.0001pt'><span style='mso-bookmark:Introduction'><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
"Times New Roman";color:black'><br>
On windows 7 there is a permission issue while building the libs and
examples.set the environment variable CYGWIN in the command window where you
are building <br>
examples: $set CYGWIN=nontsec <br>
You might have to manually delete the generated files before building. <o:p></o:p></span></span></p>

<span style='mso-bookmark:Introduction'></span>

<h2><a name=Documentation><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Documentation</span></a><span
style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";
color:black'><o:p></o:p></span></h2>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>The
following documentation is available: <o:p></o:p></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l0 level1 lfo4;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'><a href="docs/EDMA3_RM_Release_Notes.pdf">EDMA3
     Resource Manager Release Notes</a><o:p></o:p></span></li>
 <li class=MsoNormal style='color:black;mso-list:l0 level1 lfo4;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'><a
     href="packages/ti/sdo/edma3/rm/docs/EDMA3_RM_User_Guide.pdf">EDMA3
     Resource Manager User's Guide</a> <o:p></o:p></span></li>
 <li class=MsoNormal style='color:black;mso-list:l0 level1 lfo4;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'><a href="docs/EDMA3_Driver_Release_Notes.pdf">EDMA3
     Driver Release Notes</a> <o:p></o:p></span></li>
 <li class=MsoNormal style='color:black;mso-list:l0 level1 lfo4;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'><a
     href="packages/ti/sdo/edma3/drv/docs/EDMA3_Driver_User_Guide.pdf">EDMA3
     Driver User's Guide</a> <o:p></o:p></span></li>
 <li class=MsoNormal style='color:black;mso-list:l0 level1 lfo4;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>EDMA3 Resource Manager Application Programming
     Interface (API) Reference Guide (<a
     href="packages/ti/sdo/edma3/rm/docs/html/index.html">HTML</a> | <a
     href="packages/ti/sdo/edma3/rm/docs/EDMA3_Resource_Manager.chm">CHM</a>) <o:p></o:p></span></li>
 <li class=MsoNormal style='color:black;mso-list:l0 level1 lfo4;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>EDMA3 Driver Application Programming Interface
     Reference Guide (<a href="packages/ti/sdo/edma3/drv/docs/html/index.html">HTML</a>
     | <a href="packages/ti/sdo/edma3/drv/docs/EDMA3_Driver.chm">CHM</a>) <o:p></o:p></span></li>
 <li class=MsoNormal style='color:black;mso-list:l0 level1 lfo4;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'><a
     href="examples/CSL2_DAT_DEMO/docs/CSL_DAT_Adapter.ppt">CSL 2.x DAT
     Reference Implementation on EDMA3 Hardware using EDMA3 LLD</a> <o:p></o:p></span></li>
</ul>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name="Whats_New"><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>What's New<o:p></o:p></span></a></h2>

<p><span style='mso-bookmark:Whats_New'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>The following significant changes have been
made since 02.11.20: <o:p></o:p></span></span></p>

<p><span style='mso-bookmark:Whats_New'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>This release 02.12.01 : EDMALLD is MISRA C
compliant for TDA2x, TDA3x, DRA72X and TI814x platforms. <o:p></o:p></span></span></p>

<p><span style='mso-bookmark:Whats_New'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>The following IRs are implemented: </span></span><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'><o:p></o:p></span></p>

<table class=MsoNormalTable border=0 cellpadding=0 width="100%"
 style='width:100.0%;mso-cellspacing:1.5pt;mso-yfti-tbllook:1184'>
 <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
  <td style='padding:.75pt .75pt .75pt .75pt'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><b><span
  style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
  "Times New Roman";color:black'>ID<o:p></o:p></span></b></p>
  </td>
  <td style='padding:.75pt .75pt .75pt .75pt'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><b><span
  style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
  "Times New Roman";color:black'>Headline<o:p></o:p></span></b></p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:1'>
  <td width=200 style='width:150.0pt;padding:.75pt .75pt .75pt .75pt'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><span
  style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
  "Times New Roman";color:black'>SDOCM00118311<o:p></o:p></span></p>
  </td>
  <td style='padding:.75pt .75pt .75pt .75pt'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><span
  style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
  "Times New Roman";color:black'>Add support for AM335x<o:p></o:p></span></p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes'>
  <td width=200 style='width:150.0pt;padding:.75pt .75pt .75pt .75pt'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><span
  style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
  "Times New Roman";color:black'>SDOCM00118312<o:p></o:p></span></p>
  </td>
  <td style='padding:.75pt .75pt .75pt .75pt'>
  <p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><span
  style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
  "Times New Roman";color:black'>Add support for AM437x<o:p></o:p></span></p>
  </td>
 </tr>
</table>

<p class=MsoNormal style='margin:0in;margin-bottom:.0001pt'><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
"Times New Roman";color:black'><o:p>&nbsp;</o:p></span></p>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name="Upgrade_Info"><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Upgrade Information</span></a><span
style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";
color:black'><o:p></o:p></span></h2>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>The EDMA3
LLD packages are available in the &quot;packages/&quot; subdirectory of the
product. If you have a previous release of the EDMA3 LLD product, you can
install this release next to it, and modify your application and/or server
builds to use this newer release. <o:p></o:p></span></p>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name="Device_Support"><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Device Support<o:p></o:p></span></a></h2>

<p><span style='mso-bookmark:Device_Support'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>This release supports and has been tested on
the following devices: <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo5;tab-stops:list .5in'><span
     style='mso-bookmark:Device_Support'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>DA830
     EVM: <o:p></o:p></span></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo5;tab-stops:
      list 1.0in'><span style='mso-bookmark:Device_Support'><span
      style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
      "Times New Roman"'>C67x SYS/BIOS<o:p></o:p></span></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo5;tab-stops:list .5in'><span
     style='mso-bookmark:Device_Support'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>TCI6498
     Simulator:<o:p></o:p></span></span></li>
 <span style='mso-bookmark:Device_Support'></span>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo5;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C64X+ SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo5;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>C6748 EVM:<o:p></o:p></span></li>
</ul>

<p class=MsoNormal style='margin-left:66.0pt;text-indent:-.25in;mso-list:l7 level1 lfo6;
tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt;
font-family:"Courier New";mso-fareast-font-family:"Courier New";color:black'><span
style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>C67x SYS/BIOS<o:p></o:p></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo7;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>OMAPL138 EVM:<o:p></o:p></span></li>
</ul>

<p class=MsoNormal style='margin-left:66.0pt;text-indent:-.25in;mso-list:l7 level1 lfo8;
tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt;
font-family:"Courier New";mso-fareast-font-family:"Courier New";color:black'><span
style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>C67x SYS/BIOS<o:p></o:p></span></p>

<p class=MsoNormal style='margin-left:66.0pt;text-indent:-.25in;mso-list:l7 level1 lfo8;
tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt;
font-family:"Courier New";mso-fareast-font-family:"Courier New";color:black'><span
style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>ARM 9 SYSBIOS<o:p></o:p></span></p>

<ul type=circle>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TI816X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A8 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M3 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>C6472 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C64X+ SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TCI6486 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C64X+ SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TI814X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A8 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M3 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TI811X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A8 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M3 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>C6670 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>C6678 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TCI6608 Simulator:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TCI6616 Simulator:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TCI6614 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TCI6638K2K Simulator:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TCI6638K2K EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TCI6636K2H EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A15 Arago<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TDA2XX EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M4 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>a15 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>c66x SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>EVE SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>TDA3XX EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M4 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>c66x SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>EVE SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>DRA72X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M4 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>a15 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>c66x SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>AM335X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>a8 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l7 level1 lfo8;tab-stops:list .5in'><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>AM437X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l7 level2 lfo8;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>a9 SYS/BIOS<o:p></o:p></span></li>
 </ul>
</ul>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name=Compatibility><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Compatibility
Information<o:p></o:p></span></a></h2>

<h3><span style='mso-bookmark:Compatibility'><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Compatibility Key
Definitions<o:p></o:p></span></span></h3>

<p><span style='mso-bookmark:Compatibility'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>Compatibility keys are intentionally
independent of Marketing product numbers and are intended to: <o:p></o:p></span></span></p>

<ol start=1 type=1>
 <li class=MsoNormal style='color:black;mso-list:l9 level1 lfo9;tab-stops:list .5in'><span
     style='mso-bookmark:Compatibility'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>Enable
     tooling to identify incompatibilities between components, and <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l9 level1 lfo9;tab-stops:list .5in'><span
     style='mso-bookmark:Compatibility'><span style='font-size:10.0pt;
     font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>Convey
     a level of compatibility between different releases to set end user
     expectations. <o:p></o:p></span></span></li>
</ol>

<p><span style='mso-bookmark:Compatibility'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>Compatibility keys are composed of 3
comma-delimited numbers - M, S, R - where: <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l2 level1 lfo10;tab-stops:
     list .5in'><span style='mso-bookmark:Compatibility'><b><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>M = Major</span></b></span><span style='mso-bookmark:
     Compatibility'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>. A difference in M indicates a
     break in compatibility. <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l2 level1 lfo10;tab-stops:
     list .5in'><span style='mso-bookmark:Compatibility'><b><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>S = Source</span></b></span><span style='mso-bookmark:
     Compatibility'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>. A difference in S indicates
     source compatibility. That is, the user's source doesn't require change,
     but <i>does</i> require rebuilding. <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l2 level1 lfo10;tab-stops:
     list .5in'><span style='mso-bookmark:Compatibility'><b><span
     style='font-size:10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:
     "Times New Roman"'>R = Radix</span></b></span><span style='mso-bookmark:
     Compatibility'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>. A difference in R indicates
     an introduction of new features, but compatibility with previous
     interfaces has not broken. If libraries are provided by the package, an
     application must re-link with the new libraries, but not rebuild from
     source. <o:p></o:p></span></span></li>
</ul>

<span style='mso-bookmark:Compatibility'></span>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name=Validation><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Validation<o:p></o:p></span></a></h2>

<p><span style='mso-bookmark:Validation'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>This release was built and validated against
using the following components: <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>CCS
     5.5.0<o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>C6x
     Code Generation Tools version 7.4.4 <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>TMS470
     Code Generation Tools 5.1.5<o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>Arm
     GCC A15 Toolchain 4.7.2013q3 <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>ARP32
     Code Generation Tools 1.0.2<o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>SYS/BIOS
     6.40.03.39<o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>XDC
     Tools 3.30.04.52<o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l6 level1 lfo11;tab-stops:
     list .5in'><span style='mso-bookmark:Validation'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>TCI6498
     Simulator 0.7.1<o:p></o:p></span></span></li>
</ul>

<span style='mso-bookmark:Validation'></span>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>This
release was validated in the following configurations: <o:p></o:p></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo12;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>DA830 EVM: <o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo12;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67x SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo12;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6498 Simulator: <o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo12;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C64X+ SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo12;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>C6748 EVM:<o:p></o:p></span></li>
</ul>

<p class=MsoNormal style='margin-left:66.0pt;text-indent:-.25in;mso-list:l1 level1 lfo13;
tab-stops:list .5in'><![if !supportLists]><span style='font-size:10.0pt;
font-family:"Courier New";mso-fareast-font-family:"Courier New";color:black'><span
style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>C67x SYS/BIOS<o:p></o:p></span></p>

<ul type=circle>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>OMAPL138 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67x SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>ARM 9 SYSBIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TI816X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A8 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M3 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>C6472 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C64X+ SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6486 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C64X+ SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TI814X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A8 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M3 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TI811X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C67X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A8 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M3 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>C6670 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>C6678 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6608 Simulator:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6616 Simulator:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6614 EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6638K2K Simulator:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6638K2K EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TCI6636K2H EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>C66X SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A15 Arago<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TDA2XX EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A15 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M4 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>DSP SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>EVE SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>TDA3XX SIM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M4 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>DSP SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>EVE SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>DRA72X SIM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A15 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>M4 SYS/BIOS<o:p></o:p></span></li>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>DSP SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>AM335X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A8 SYS/BIOS<o:p></o:p></span></li>
 </ul>
 <li class=MsoNormal style='color:black;mso-list:l1 level1 lfo13;tab-stops:
     list .5in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
     mso-fareast-font-family:"Times New Roman"'>AM437X EVM:<o:p></o:p></span></li>
 <ul type=circle>
  <li class=MsoNormal style='color:black;mso-list:l1 level2 lfo13;tab-stops:
      list 1.0in'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
      mso-fareast-font-family:"Times New Roman"'>A9 SYS/BIOS<o:p></o:p></span></li>
 </ul>
</ul>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name="Known_Issues"><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Known Issues<o:p></o:p></span></a></h2>

<p><span style='mso-bookmark:Known_Issues'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>The following are known issues with the
current EDMA3 LLD release: <o:p></o:p></span></span></p>

<h4><span style='mso-bookmark:Known_Issues'><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>Pre-built instrumented
libraries for DA830 not provided initially.<o:p></o:p></span></span></h4>

<p><span style='mso-bookmark:Known_Issues'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>Pre-built instrumented EDMA3 libraries for
DA830 will not be provided initially. XDC does not support the same and hence
the limitation. See IR# SDOCM00036738 for more details. <o:p></o:p></span></span></p>

<h4><span style='mso-bookmark:Known_Issues'><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>EDMA3 hardware does not
work properly in FIFO mode with all the controllers.<o:p></o:p></span></span></h4>

<p><span style='mso-bookmark:Known_Issues'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>Very few peripherals support EDMA3 FIFO
mode. EMIF controller doesn't support the same. So EDMA3 CANNOT be used in FIFO
mode for doing a memory-to-memory data transfers, EDMA3 being configured in the
FIFO mode. Applications trying to use EDMA3 in FIFO mode should first check
their respective peripheral-controller document for this mode support. <o:p></o:p></span></span></p>

<h4><span style='mso-bookmark:Known_Issues'><span style='font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>PingPong Example Fails
for certain EDMA instances for some DSP cores in Release mode only.</span></span><span
style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";
color:black'><o:p></o:p></span></h4>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>The
PingPong example in the package fails for certain EDMA Instances for some DSP
cores in Release mode only. It passes for Debug mode. See IR# SDOCM00064758 for
more details. <o:p></o:p></span></p>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name=Examples><span style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:
"Times New Roman";color:black'>Examples<o:p></o:p></span></a></h2>

<p><span style='mso-bookmark:Examples'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>EDMA3 LLD sample initialization libraries /
OS abstraction layers (for different platforms) are located in: <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l5 level1 lfo14;tab-stops:
     list .5in'><span style='mso-bookmark:Examples'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>For
     Resource Manager: They could be located in </span></span><span
     style='mso-bookmark:Examples'><tt><span style='font-size:10.0pt'>edma3_lld_02_12_01_XX\packages\ti\sdo\edma3\rm\sample\lib</span></tt></span><span
     style='mso-bookmark:Examples'><span style='font-size:10.0pt;font-family:
     "Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'> folder. <o:p></o:p></span></span></li>
 <li class=MsoNormal style='color:black;mso-list:l5 level1 lfo14;tab-stops:
     list .5in'><span style='mso-bookmark:Examples'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>For
     EDMA3 Driver: They could be located in </span></span><span
     style='mso-bookmark:Examples'><tt><span style='font-size:10.0pt'>edma3_lld_02_12_01_XX\packages\ti\sdo\edma3\drv\sample\lib</span></tt></span><span
     style='mso-bookmark:Examples'><span style='font-size:10.0pt;font-family:
     "Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'> folder. <o:p></o:p></span></span></li>
</ul>

<p><span style='mso-bookmark:Examples'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>EDMA3 LLD stand-alone applications (for
different platforms) are located in: <o:p></o:p></span></span></p>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l3 level1 lfo15;tab-stops:
     list .5in'><span style='mso-bookmark:Examples'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>EDMA3
     Driver: They could be located in </span></span><span style='mso-bookmark:
     Examples'><tt><span style='font-size:10.0pt'>edma3_lld_02_12_01_XX\examples\edma3_driver\</span></tt></span><span
     style='mso-bookmark:Examples'><span style='font-size:10.0pt;font-family:
     "Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'> folder. <o:p></o:p></span></span></li>
</ul>

<ul type=disc>
 <li class=MsoNormal style='color:black;mso-list:l11 level1 lfo16;tab-stops:
     list .5in'><span style='mso-bookmark:Examples'><span style='font-size:
     10.0pt;font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'>CSL2.x
     DAT Reference Implementation: It could be located in </span></span><span
     style='mso-bookmark:Examples'><tt><span style='font-size:10.0pt'>edma3_lld_02_12_01_XX\examples\CSL2_DAT_DEMO\</span></tt></span><span
     style='mso-bookmark:Examples'><span style='font-size:10.0pt;font-family:
     "Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman"'> folder. <o:p></o:p></span></span></li>
</ul>

<span style='mso-bookmark:Examples'></span>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name=Version><span style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:
"Times New Roman";color:black'>Version Information</span></a><span
style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";
color:black'><o:p></o:p></span></h2>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>This
product's version follows a version format, <b>M.mm.pp.bb</b>, where <b>M</b>
is a 2 digit major number, <b>mm</b> is 2 digit minor number, <b>pp</b> is a 2
digit patch number, and <b>b</b> is an unrestricted set of digits used as an
incrementing build counter. <o:p></o:p></span></p>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>To support
multiple side-by-side installations of the product, the product version is
encoded in the top level directory, ex. <b>edma3_lld_02_12_01_XX</b>. <o:p></o:p></span></p>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Subsequent
releases of patch upgrades will be identified by the patch number, ex. EDMA3
LLD 02.11.14 with directory <b>edma3_lld_02_12_01_YY</b>. Typically, these
patches only include critical bug fixes. <o:p></o:p></span></p>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<h2><a name=Support><span style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:
"Times New Roman";color:black'>Technical Support</span></a><span
style='font-family:"Tahoma","sans-serif";mso-fareast-font-family:"Times New Roman";
color:black'><o:p></o:p></span></h2>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>For
technical support, Please post at TI E2E forum <a
href="http://e2e.ti.com/support/embedded/f/355.aspx">http://e2e.ti.com/support/embedded/f/355.aspx</a>
<o:p></o:p></span></p>

<div class=MsoNormal align=center style='margin:0in;margin-bottom:.0001pt;
text-align:center'><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";
mso-fareast-font-family:"Times New Roman";color:black'>

<hr size=2 width="100%" align=center>

</span></div>

<p><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>Last
updated: August xx, 2015 <o:p></o:p></span></p>

</div>

</body>

</html>