segment_main_linkInfo.xml 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <link_info>
  3. <banner>TI ARM Clang Linker PC v4.0.0.LTS</banner>
  4. <copyright>Copyright (c) 1996-2018 Texas Instruments Incorporated</copyright>
  5. <command_line>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\bin\tiarmlnk -IC:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib -o segment_main.out -msegment_main.map -iC:/ti/mspm0_sdk_2_02_00_05/source -iC:/Users/User/workspace_ccstheia/segment_main -iC:/Users/User/workspace_ccstheia/segment_main/Debug/syscfg -iC:/ti/ccstheia150/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib --diag_wrap=off --display_error_number --warn_sections --xml_link_info=segment_main_linkInfo.xml --rom_model ./01_sw_components/01_sc/01_src/init_sc.o ./01_sw_components/01_sc/01_src/main_sc.o ./01_sw_components/02_sig/01_src/Com_rx_signal_sig.o ./01_sw_components/02_sig/01_src/Com_tx_signal_sig.o ./01_sw_components/03_hw/01_src/Hw_Interface.o ./01_sw_components/04_frs/01_src/OverLowVoltage_Frs.o ./01_sw_components/04_frs/01_src/OverheatingTemperature_Frs.o ./01_sw_components/06_mem/01_src/GetDeviceID_Mem.o ./01_sw_components/06_mem/01_src/initializeDeviceID.o ./01_sw_components/07_utils/01_src/Store_DeviceUID_Unit8_Array_Utils.o ./01_sw_components/07_utils/01_src/parseCanID_utils.o ./ti_msp_dl_config.o ./04_config/startup_mspm0g350x_ticlang.o -l./device_linker.cmd -ldevice.cmd.genlibs -llibc.a --start-group -llibc++.a -llibc++abi.a -llibc.a -llibsys.a -llibsysbm.a -llibclang_rt.builtins.a -llibclang_rt.profile.a --end-group --cg_opt_level=2</command_line>
  6. <link_time>0x670af9b5</link_time>
  7. <link_errors>0x0</link_errors>
  8. <output_file>C:\Users\User\workspace_ccstheia\segment_main\Debug\segment_main.out</output_file>
  9. <entry_point>
  10. <name>_c_int00_noargs</name>
  11. <address>0x107d</address>
  12. </entry_point>
  13. <input_file_list>
  14. <input_file id="fl-1">
  15. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\01_sc\01_src\</path>
  16. <kind>object</kind>
  17. <file>init_sc.o</file>
  18. <name>init_sc.o</name>
  19. </input_file>
  20. <input_file id="fl-2">
  21. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\01_sc\01_src\</path>
  22. <kind>object</kind>
  23. <file>main_sc.o</file>
  24. <name>main_sc.o</name>
  25. </input_file>
  26. <input_file id="fl-3">
  27. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\02_sig\01_src\</path>
  28. <kind>object</kind>
  29. <file>Com_rx_signal_sig.o</file>
  30. <name>Com_rx_signal_sig.o</name>
  31. </input_file>
  32. <input_file id="fl-4">
  33. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\02_sig\01_src\</path>
  34. <kind>object</kind>
  35. <file>Com_tx_signal_sig.o</file>
  36. <name>Com_tx_signal_sig.o</name>
  37. </input_file>
  38. <input_file id="fl-5">
  39. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\03_hw\01_src\</path>
  40. <kind>object</kind>
  41. <file>Hw_Interface.o</file>
  42. <name>Hw_Interface.o</name>
  43. </input_file>
  44. <input_file id="fl-6">
  45. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\04_frs\01_src\</path>
  46. <kind>object</kind>
  47. <file>OverLowVoltage_Frs.o</file>
  48. <name>OverLowVoltage_Frs.o</name>
  49. </input_file>
  50. <input_file id="fl-7">
  51. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\04_frs\01_src\</path>
  52. <kind>object</kind>
  53. <file>OverheatingTemperature_Frs.o</file>
  54. <name>OverheatingTemperature_Frs.o</name>
  55. </input_file>
  56. <input_file id="fl-8">
  57. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\06_mem\01_src\</path>
  58. <kind>object</kind>
  59. <file>GetDeviceID_Mem.o</file>
  60. <name>GetDeviceID_Mem.o</name>
  61. </input_file>
  62. <input_file id="fl-9">
  63. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\06_mem\01_src\</path>
  64. <kind>object</kind>
  65. <file>initializeDeviceID.o</file>
  66. <name>initializeDeviceID.o</name>
  67. </input_file>
  68. <input_file id="fl-a">
  69. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\07_utils\01_src\</path>
  70. <kind>object</kind>
  71. <file>Store_DeviceUID_Unit8_Array_Utils.o</file>
  72. <name>Store_DeviceUID_Unit8_Array_Utils.o</name>
  73. </input_file>
  74. <input_file id="fl-b">
  75. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\01_sw_components\07_utils\01_src\</path>
  76. <kind>object</kind>
  77. <file>parseCanID_utils.o</file>
  78. <name>parseCanID_utils.o</name>
  79. </input_file>
  80. <input_file id="fl-c">
  81. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\</path>
  82. <kind>object</kind>
  83. <file>ti_msp_dl_config.o</file>
  84. <name>ti_msp_dl_config.o</name>
  85. </input_file>
  86. <input_file id="fl-d">
  87. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\.\04_config\</path>
  88. <kind>object</kind>
  89. <file>startup_mspm0g350x_ticlang.o</file>
  90. <name>startup_mspm0g350x_ticlang.o</name>
  91. </input_file>
  92. <input_file id="fl-1a">
  93. <path>C:\Users\User\workspace_ccstheia\segment_main\Debug\</path>
  94. <kind>object</kind>
  95. <file>&lt;internal&gt;</file>
  96. <name>&lt;internal&gt;</name>
  97. </input_file>
  98. <input_file id="fl-1b">
  99. <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
  100. <kind>archive</kind>
  101. <file>driverlib.a</file>
  102. <name>dl_adc12.o</name>
  103. </input_file>
  104. <input_file id="fl-1c">
  105. <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
  106. <kind>archive</kind>
  107. <file>driverlib.a</file>
  108. <name>dl_common.o</name>
  109. </input_file>
  110. <input_file id="fl-1d">
  111. <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
  112. <kind>archive</kind>
  113. <file>driverlib.a</file>
  114. <name>dl_mcan.o</name>
  115. </input_file>
  116. <input_file id="fl-1e">
  117. <path>C:\ti\mspm0_sdk_2_02_00_05\source\ti\driverlib\lib\ticlang\m0p\mspm0g1x0x_g3x0x\</path>
  118. <kind>archive</kind>
  119. <file>driverlib.a</file>
  120. <name>dl_sysctl_mspm0g1x0x_g3x0x.o</name>
  121. </input_file>
  122. <input_file id="fl-33">
  123. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  124. <kind>archive</kind>
  125. <file>libc.a</file>
  126. <name>e_log.c.obj</name>
  127. </input_file>
  128. <input_file id="fl-34">
  129. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  130. <kind>archive</kind>
  131. <file>libc.a</file>
  132. <name>aeabi_portable.c.obj</name>
  133. </input_file>
  134. <input_file id="fl-35">
  135. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  136. <kind>archive</kind>
  137. <file>libc.a</file>
  138. <name>assert.c.obj</name>
  139. </input_file>
  140. <input_file id="fl-36">
  141. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  142. <kind>archive</kind>
  143. <file>libc.a</file>
  144. <name>defs.c.obj</name>
  145. </input_file>
  146. <input_file id="fl-37">
  147. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  148. <kind>archive</kind>
  149. <file>libc.a</file>
  150. <name>memory.c.obj</name>
  151. </input_file>
  152. <input_file id="fl-38">
  153. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  154. <kind>archive</kind>
  155. <file>libc.a</file>
  156. <name>boot_cortex_m.c.obj</name>
  157. </input_file>
  158. <input_file id="fl-39">
  159. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  160. <kind>archive</kind>
  161. <file>libc.a</file>
  162. <name>mathacl_init.c.obj</name>
  163. </input_file>
  164. <input_file id="fl-3a">
  165. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  166. <kind>archive</kind>
  167. <file>libc.a</file>
  168. <name>autoinit.c.obj</name>
  169. </input_file>
  170. <input_file id="fl-3b">
  171. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  172. <kind>archive</kind>
  173. <file>libc.a</file>
  174. <name>pre_init.c.obj</name>
  175. </input_file>
  176. <input_file id="fl-3c">
  177. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  178. <kind>archive</kind>
  179. <file>libc.a</file>
  180. <name>cpy_tbl.c.obj</name>
  181. </input_file>
  182. <input_file id="fl-3d">
  183. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  184. <kind>archive</kind>
  185. <file>libc.a</file>
  186. <name>copy_zero_init.c.obj</name>
  187. </input_file>
  188. <input_file id="fl-3e">
  189. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  190. <kind>archive</kind>
  191. <file>libc.a</file>
  192. <name>copy_decompress_none.c.obj</name>
  193. </input_file>
  194. <input_file id="fl-3f">
  195. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  196. <kind>archive</kind>
  197. <file>libc.a</file>
  198. <name>copy_decompress_lzss.c.obj</name>
  199. </input_file>
  200. <input_file id="fl-40">
  201. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  202. <kind>archive</kind>
  203. <file>libc.a</file>
  204. <name>sprintf.c.obj</name>
  205. </input_file>
  206. <input_file id="fl-41">
  207. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  208. <kind>archive</kind>
  209. <file>libc.a</file>
  210. <name>fflush.c.obj</name>
  211. </input_file>
  212. <input_file id="fl-42">
  213. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  214. <kind>archive</kind>
  215. <file>libc.a</file>
  216. <name>fputs.c.obj</name>
  217. </input_file>
  218. <input_file id="fl-43">
  219. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  220. <kind>archive</kind>
  221. <file>libc.a</file>
  222. <name>_io_perm.c.obj</name>
  223. </input_file>
  224. <input_file id="fl-44">
  225. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  226. <kind>archive</kind>
  227. <file>libc.a</file>
  228. <name>setvbuf.c.obj</name>
  229. </input_file>
  230. <input_file id="fl-45">
  231. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  232. <kind>archive</kind>
  233. <file>libc.a</file>
  234. <name>exit.c.obj</name>
  235. </input_file>
  236. <input_file id="fl-46">
  237. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  238. <kind>archive</kind>
  239. <file>libc.a</file>
  240. <name>_lock.c.obj</name>
  241. </input_file>
  242. <input_file id="fl-47">
  243. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  244. <kind>archive</kind>
  245. <file>libc.a</file>
  246. <name>args_main.c.obj</name>
  247. </input_file>
  248. <input_file id="fl-48">
  249. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  250. <kind>archive</kind>
  251. <file>libc.a</file>
  252. <name>_printfi.c.obj</name>
  253. </input_file>
  254. <input_file id="fl-49">
  255. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  256. <kind>archive</kind>
  257. <file>libc.a</file>
  258. <name>fopen.c.obj</name>
  259. </input_file>
  260. <input_file id="fl-4a">
  261. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  262. <kind>archive</kind>
  263. <file>libc.a</file>
  264. <name>fseek.c.obj</name>
  265. </input_file>
  266. <input_file id="fl-4b">
  267. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  268. <kind>archive</kind>
  269. <file>libc.a</file>
  270. <name>wcslen.c.obj</name>
  271. </input_file>
  272. <input_file id="fl-4c">
  273. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  274. <kind>archive</kind>
  275. <file>libc.a</file>
  276. <name>s_frexp.c.obj</name>
  277. </input_file>
  278. <input_file id="fl-4d">
  279. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  280. <kind>archive</kind>
  281. <file>libc.a</file>
  282. <name>s_scalbn.c.obj</name>
  283. </input_file>
  284. <input_file id="fl-4e">
  285. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  286. <kind>archive</kind>
  287. <file>libc.a</file>
  288. <name>_ltoa.c.obj</name>
  289. </input_file>
  290. <input_file id="fl-4f">
  291. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  292. <kind>archive</kind>
  293. <file>libc.a</file>
  294. <name>atoi.c.obj</name>
  295. </input_file>
  296. <input_file id="fl-50">
  297. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  298. <kind>archive</kind>
  299. <file>libc.a</file>
  300. <name>memccpy.c.obj</name>
  301. </input_file>
  302. <input_file id="fl-51">
  303. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  304. <kind>archive</kind>
  305. <file>libc.a</file>
  306. <name>fclose.c.obj</name>
  307. </input_file>
  308. <input_file id="fl-52">
  309. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  310. <kind>archive</kind>
  311. <file>libc.a</file>
  312. <name>aeabi_ctype.S.obj</name>
  313. </input_file>
  314. <input_file id="fl-e8">
  315. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  316. <kind>archive</kind>
  317. <file>libsysbm.a</file>
  318. <name>write.c.obj</name>
  319. </input_file>
  320. <input_file id="fl-e9">
  321. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  322. <kind>archive</kind>
  323. <file>libsysbm.a</file>
  324. <name>host_device.c.obj</name>
  325. </input_file>
  326. <input_file id="fl-ea">
  327. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  328. <kind>archive</kind>
  329. <file>libsysbm.a</file>
  330. <name>remove.c.obj</name>
  331. </input_file>
  332. <input_file id="fl-eb">
  333. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  334. <kind>archive</kind>
  335. <file>libsysbm.a</file>
  336. <name>open.c.obj</name>
  337. </input_file>
  338. <input_file id="fl-ec">
  339. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  340. <kind>archive</kind>
  341. <file>libsysbm.a</file>
  342. <name>lseek.c.obj</name>
  343. </input_file>
  344. <input_file id="fl-ed">
  345. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  346. <kind>archive</kind>
  347. <file>libsysbm.a</file>
  348. <name>close.c.obj</name>
  349. </input_file>
  350. <input_file id="fl-ee">
  351. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  352. <kind>archive</kind>
  353. <file>libsysbm.a</file>
  354. <name>unlink.c.obj</name>
  355. </input_file>
  356. <input_file id="fl-ef">
  357. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  358. <kind>archive</kind>
  359. <file>libsysbm.a</file>
  360. <name>hostclose.c.obj</name>
  361. </input_file>
  362. <input_file id="fl-f0">
  363. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  364. <kind>archive</kind>
  365. <file>libsysbm.a</file>
  366. <name>hostlseek.c.obj</name>
  367. </input_file>
  368. <input_file id="fl-f1">
  369. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  370. <kind>archive</kind>
  371. <file>libsysbm.a</file>
  372. <name>hostopen.c.obj</name>
  373. </input_file>
  374. <input_file id="fl-f2">
  375. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  376. <kind>archive</kind>
  377. <file>libsysbm.a</file>
  378. <name>hostread.c.obj</name>
  379. </input_file>
  380. <input_file id="fl-f3">
  381. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  382. <kind>archive</kind>
  383. <file>libsysbm.a</file>
  384. <name>hostrename.c.obj</name>
  385. </input_file>
  386. <input_file id="fl-f4">
  387. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  388. <kind>archive</kind>
  389. <file>libsysbm.a</file>
  390. <name>hostunlink.c.obj</name>
  391. </input_file>
  392. <input_file id="fl-f5">
  393. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  394. <kind>archive</kind>
  395. <file>libsysbm.a</file>
  396. <name>hostwrite.c.obj</name>
  397. </input_file>
  398. <input_file id="fl-f6">
  399. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  400. <kind>archive</kind>
  401. <file>libsysbm.a</file>
  402. <name>trgmsg.c.obj</name>
  403. </input_file>
  404. <input_file id="fl-f7">
  405. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  406. <kind>archive</kind>
  407. <file>libclang_rt.builtins.a</file>
  408. <name>adddf3.S.obj</name>
  409. </input_file>
  410. <input_file id="fl-f8">
  411. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  412. <kind>archive</kind>
  413. <file>libclang_rt.builtins.a</file>
  414. <name>muldf3.S.obj</name>
  415. </input_file>
  416. <input_file id="fl-f9">
  417. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  418. <kind>archive</kind>
  419. <file>libclang_rt.builtins.a</file>
  420. <name>muldsi3.S.obj</name>
  421. </input_file>
  422. <input_file id="fl-fa">
  423. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  424. <kind>archive</kind>
  425. <file>libclang_rt.builtins.a</file>
  426. <name>mulsf3.S.obj</name>
  427. </input_file>
  428. <input_file id="fl-fb">
  429. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  430. <kind>archive</kind>
  431. <file>libclang_rt.builtins.a</file>
  432. <name>divsf3.S.obj</name>
  433. </input_file>
  434. <input_file id="fl-fc">
  435. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  436. <kind>archive</kind>
  437. <file>libclang_rt.builtins.a</file>
  438. <name>divdf3.S.obj</name>
  439. </input_file>
  440. <input_file id="fl-fd">
  441. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  442. <kind>archive</kind>
  443. <file>libclang_rt.builtins.a</file>
  444. <name>extendsfdf2.S.obj</name>
  445. </input_file>
  446. <input_file id="fl-fe">
  447. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  448. <kind>archive</kind>
  449. <file>libclang_rt.builtins.a</file>
  450. <name>fixdfsi.S.obj</name>
  451. </input_file>
  452. <input_file id="fl-ff">
  453. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  454. <kind>archive</kind>
  455. <file>libclang_rt.builtins.a</file>
  456. <name>fixsfsi.S.obj</name>
  457. </input_file>
  458. <input_file id="fl-100">
  459. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  460. <kind>archive</kind>
  461. <file>libclang_rt.builtins.a</file>
  462. <name>floatsidf.S.obj</name>
  463. </input_file>
  464. <input_file id="fl-101">
  465. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  466. <kind>archive</kind>
  467. <file>libclang_rt.builtins.a</file>
  468. <name>floatsisf.S.obj</name>
  469. </input_file>
  470. <input_file id="fl-102">
  471. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  472. <kind>archive</kind>
  473. <file>libclang_rt.builtins.a</file>
  474. <name>muldi3.S.obj</name>
  475. </input_file>
  476. <input_file id="fl-103">
  477. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  478. <kind>archive</kind>
  479. <file>libclang_rt.builtins.a</file>
  480. <name>aeabi_dcmp.S.obj</name>
  481. </input_file>
  482. <input_file id="fl-104">
  483. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  484. <kind>archive</kind>
  485. <file>libclang_rt.builtins.a</file>
  486. <name>aeabi_idivmod.S.obj</name>
  487. </input_file>
  488. <input_file id="fl-105">
  489. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  490. <kind>archive</kind>
  491. <file>libclang_rt.builtins.a</file>
  492. <name>aeabi_memcpy.S.obj</name>
  493. </input_file>
  494. <input_file id="fl-106">
  495. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  496. <kind>archive</kind>
  497. <file>libclang_rt.builtins.a</file>
  498. <name>aeabi_memset.S.obj</name>
  499. </input_file>
  500. <input_file id="fl-107">
  501. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  502. <kind>archive</kind>
  503. <file>libclang_rt.builtins.a</file>
  504. <name>aeabi_uidivmod.S.obj</name>
  505. </input_file>
  506. <input_file id="fl-108">
  507. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  508. <kind>archive</kind>
  509. <file>libclang_rt.builtins.a</file>
  510. <name>aeabi_uldivmod.S.obj</name>
  511. </input_file>
  512. <input_file id="fl-109">
  513. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  514. <kind>archive</kind>
  515. <file>libclang_rt.builtins.a</file>
  516. <name>udivmoddi4.S.obj</name>
  517. </input_file>
  518. <input_file id="fl-10a">
  519. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  520. <kind>archive</kind>
  521. <file>libclang_rt.builtins.a</file>
  522. <name>ashldi3.S.obj</name>
  523. </input_file>
  524. <input_file id="fl-10b">
  525. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  526. <kind>archive</kind>
  527. <file>libclang_rt.builtins.a</file>
  528. <name>comparedf2.c.obj</name>
  529. </input_file>
  530. <input_file id="fl-10c">
  531. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\</path>
  532. <kind>archive</kind>
  533. <file>libclang_rt.builtins.a</file>
  534. <name>aeabi_div0.c.obj</name>
  535. </input_file>
  536. <input_file id="fl-10d">
  537. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  538. <kind>archive</kind>
  539. <file>libc.a</file>
  540. <name>getdevice.c.obj</name>
  541. </input_file>
  542. <input_file id="fl-10e">
  543. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  544. <kind>archive</kind>
  545. <file>libc.a</file>
  546. <name>memcpy16.S.obj</name>
  547. </input_file>
  548. <input_file id="fl-10f">
  549. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  550. <kind>archive</kind>
  551. <file>libc.a</file>
  552. <name>memset16.S.obj</name>
  553. </input_file>
  554. <input_file id="fl-110">
  555. <path>C:\ti\ccstheia150\ccs\tools\compiler\ti-cgt-armllvm_4.0.0.LTS\lib\armv6m-ti-none-eabi\c\</path>
  556. <kind>archive</kind>
  557. <file>libc.a</file>
  558. <name>strcmp-armv6m.S.obj</name>
  559. </input_file>
  560. </input_file_list>
  561. <object_component_list>
  562. <object_component id="oc-18">
  563. <name>.intvecs</name>
  564. <load_address>0x0</load_address>
  565. <readonly>true</readonly>
  566. <run_address>0x0</run_address>
  567. <size>0xc0</size>
  568. <alignment>0x4</alignment>
  569. <input_file_ref idref="fl-d"/>
  570. </object_component>
  571. <object_component id="oc-eb">
  572. <name>.text.DL_MCAN_msgRAMConfig</name>
  573. <load_address>0xc0</load_address>
  574. <readonly>true</readonly>
  575. <executable>true</executable>
  576. <run_address>0xc0</run_address>
  577. <size>0x2a8</size>
  578. <alignment>0x4</alignment>
  579. <input_file_ref idref="fl-1d"/>
  580. </object_component>
  581. <object_component id="oc-e8">
  582. <name>.text.DL_MCAN_init</name>
  583. <load_address>0x368</load_address>
  584. <readonly>true</readonly>
  585. <executable>true</executable>
  586. <run_address>0x368</run_address>
  587. <size>0x184</size>
  588. <alignment>0x4</alignment>
  589. <input_file_ref idref="fl-1d"/>
  590. </object_component>
  591. <object_component id="oc-ea">
  592. <name>.text.DL_MCAN_setBitTime</name>
  593. <load_address>0x4ec</load_address>
  594. <readonly>true</readonly>
  595. <executable>true</executable>
  596. <run_address>0x4ec</run_address>
  597. <size>0x144</size>
  598. <alignment>0x4</alignment>
  599. <input_file_ref idref="fl-1d"/>
  600. </object_component>
  601. <object_component id="oc-e9">
  602. <name>.text.DL_MCAN_config</name>
  603. <load_address>0x630</load_address>
  604. <readonly>true</readonly>
  605. <executable>true</executable>
  606. <run_address>0x630</run_address>
  607. <size>0x12c</size>
  608. <alignment>0x4</alignment>
  609. <input_file_ref idref="fl-1d"/>
  610. </object_component>
  611. <object_component id="oc-cb">
  612. <name>.text.SYSCFG_DL_MCAN0_init</name>
  613. <load_address>0x75c</load_address>
  614. <readonly>true</readonly>
  615. <executable>true</executable>
  616. <run_address>0x75c</run_address>
  617. <size>0x11c</size>
  618. <alignment>0x4</alignment>
  619. <input_file_ref idref="fl-c"/>
  620. </object_component>
  621. <object_component id="oc-df">
  622. <name>.text.DL_SYSCTL_configSYSPLL</name>
  623. <load_address>0x878</load_address>
  624. <readonly>true</readonly>
  625. <executable>true</executable>
  626. <run_address>0x878</run_address>
  627. <size>0xec</size>
  628. <alignment>0x4</alignment>
  629. <input_file_ref idref="fl-1e"/>
  630. </object_component>
  631. <object_component id="oc-87">
  632. <name>.text:memcpy</name>
  633. <load_address>0x964</load_address>
  634. <readonly>true</readonly>
  635. <executable>true</executable>
  636. <run_address>0x964</run_address>
  637. <size>0x9a</size>
  638. <alignment>0x1</alignment>
  639. <input_file_ref idref="fl-10e"/>
  640. </object_component>
  641. <object_component id="oc-33">
  642. <name>.text.Default_Handler</name>
  643. <load_address>0x9fe</load_address>
  644. <readonly>true</readonly>
  645. <executable>true</executable>
  646. <run_address>0x9fe</run_address>
  647. <size>0x2</size>
  648. <alignment>0x2</alignment>
  649. <input_file_ref idref="fl-d"/>
  650. </object_component>
  651. <object_component id="oc-e4">
  652. <name>.text.DL_MCAN_getRevisionId</name>
  653. <load_address>0xa00</load_address>
  654. <readonly>true</readonly>
  655. <executable>true</executable>
  656. <run_address>0xa00</run_address>
  657. <size>0x94</size>
  658. <alignment>0x4</alignment>
  659. <input_file_ref idref="fl-1d"/>
  660. </object_component>
  661. <object_component id="oc-1c">
  662. <name>.text:decompress:lzss</name>
  663. <load_address>0xa94</load_address>
  664. <readonly>true</readonly>
  665. <executable>true</executable>
  666. <run_address>0xa94</run_address>
  667. <size>0x7c</size>
  668. <alignment>0x4</alignment>
  669. <input_file_ref idref="fl-3f"/>
  670. </object_component>
  671. <object_component id="oc-ec">
  672. <name>.text.DL_MCAN_addStdMsgIDFilter</name>
  673. <load_address>0xb10</load_address>
  674. <readonly>true</readonly>
  675. <executable>true</executable>
  676. <run_address>0xb10</run_address>
  677. <size>0x74</size>
  678. <alignment>0x4</alignment>
  679. <input_file_ref idref="fl-1d"/>
  680. </object_component>
  681. <object_component id="oc-ee">
  682. <name>.text.DL_MCAN_enableIntr</name>
  683. <load_address>0xb84</load_address>
  684. <readonly>true</readonly>
  685. <executable>true</executable>
  686. <run_address>0xb84</run_address>
  687. <size>0x68</size>
  688. <alignment>0x4</alignment>
  689. <input_file_ref idref="fl-1d"/>
  690. </object_component>
  691. <object_component id="oc-ef">
  692. <name>.text.DL_MCAN_selectIntrLine</name>
  693. <load_address>0xbec</load_address>
  694. <readonly>true</readonly>
  695. <executable>true</executable>
  696. <run_address>0xbec</run_address>
  697. <size>0x64</size>
  698. <alignment>0x4</alignment>
  699. <input_file_ref idref="fl-1d"/>
  700. </object_component>
  701. <object_component id="oc-ca">
  702. <name>.text.SYSCFG_DL_ADC12_0_init</name>
  703. <load_address>0xc50</load_address>
  704. <readonly>true</readonly>
  705. <executable>true</executable>
  706. <run_address>0xc50</run_address>
  707. <size>0x64</size>
  708. <alignment>0x4</alignment>
  709. <input_file_ref idref="fl-c"/>
  710. </object_component>
  711. <object_component id="oc-f0">
  712. <name>.text.DL_MCAN_enableIntrLine</name>
  713. <load_address>0xcb4</load_address>
  714. <readonly>true</readonly>
  715. <executable>true</executable>
  716. <run_address>0xcb4</run_address>
  717. <size>0x58</size>
  718. <alignment>0x4</alignment>
  719. <input_file_ref idref="fl-1d"/>
  720. </object_component>
  721. <object_component id="oc-e1">
  722. <name>.text.DL_ADC12_setClockConfig</name>
  723. <load_address>0xd0c</load_address>
  724. <readonly>true</readonly>
  725. <executable>true</executable>
  726. <run_address>0xd0c</run_address>
  727. <size>0x4c</size>
  728. <alignment>0x4</alignment>
  729. <input_file_ref idref="fl-1b"/>
  730. </object_component>
  731. <object_component id="oc-ed">
  732. <name>.text.DL_MCAN_setExtIDAndMask</name>
  733. <load_address>0xd58</load_address>
  734. <readonly>true</readonly>
  735. <executable>true</executable>
  736. <run_address>0xd58</run_address>
  737. <size>0x4c</size>
  738. <alignment>0x4</alignment>
  739. <input_file_ref idref="fl-1d"/>
  740. </object_component>
  741. <object_component id="oc-c7">
  742. <name>.text.SYSCFG_DL_GPIO_init</name>
  743. <load_address>0xda4</load_address>
  744. <readonly>true</readonly>
  745. <executable>true</executable>
  746. <run_address>0xda4</run_address>
  747. <size>0x4c</size>
  748. <alignment>0x4</alignment>
  749. <input_file_ref idref="fl-c"/>
  750. </object_component>
  751. <object_component id="oc-8c">
  752. <name>.text.Init</name>
  753. <load_address>0xdf0</load_address>
  754. <readonly>true</readonly>
  755. <executable>true</executable>
  756. <run_address>0xdf0</run_address>
  757. <size>0x48</size>
  758. <alignment>0x4</alignment>
  759. <input_file_ref idref="fl-1"/>
  760. </object_component>
  761. <object_component id="oc-39">
  762. <name>.text.CANFD0_IRQHandler</name>
  763. <load_address>0xe38</load_address>
  764. <readonly>true</readonly>
  765. <executable>true</executable>
  766. <run_address>0xe38</run_address>
  767. <size>0x40</size>
  768. <alignment>0x4</alignment>
  769. <input_file_ref idref="fl-2"/>
  770. </object_component>
  771. <object_component id="oc-e5">
  772. <name>.text.DL_MCAN_isMemInitDone</name>
  773. <load_address>0xe78</load_address>
  774. <readonly>true</readonly>
  775. <executable>true</executable>
  776. <run_address>0xe78</run_address>
  777. <size>0x40</size>
  778. <alignment>0x4</alignment>
  779. <input_file_ref idref="fl-1d"/>
  780. </object_component>
  781. <object_component id="oc-c6">
  782. <name>.text.SYSCFG_DL_initPower</name>
  783. <load_address>0xeb8</load_address>
  784. <readonly>true</readonly>
  785. <executable>true</executable>
  786. <run_address>0xeb8</run_address>
  787. <size>0x40</size>
  788. <alignment>0x4</alignment>
  789. <input_file_ref idref="fl-c"/>
  790. </object_component>
  791. <object_component id="oc-c8">
  792. <name>.text.SYSCFG_DL_SYSCTL_init</name>
  793. <load_address>0xef8</load_address>
  794. <readonly>true</readonly>
  795. <executable>true</executable>
  796. <run_address>0xef8</run_address>
  797. <size>0x3c</size>
  798. <alignment>0x4</alignment>
  799. <input_file_ref idref="fl-c"/>
  800. </object_component>
  801. <object_component id="oc-95">
  802. <name>.text:__TI_auto_init_nobinit_nopinit</name>
  803. <load_address>0xf34</load_address>
  804. <readonly>true</readonly>
  805. <executable>true</executable>
  806. <run_address>0xf34</run_address>
  807. <size>0x3c</size>
  808. <alignment>0x4</alignment>
  809. <input_file_ref idref="fl-3a"/>
  810. </object_component>
  811. <object_component id="oc-61">
  812. <name>.text.DL_MCAN_clearIntrStatus</name>
  813. <load_address>0xf70</load_address>
  814. <readonly>true</readonly>
  815. <executable>true</executable>
  816. <run_address>0xf70</run_address>
  817. <size>0x34</size>
  818. <alignment>0x4</alignment>
  819. <input_file_ref idref="fl-1d"/>
  820. </object_component>
  821. <object_component id="oc-102">
  822. <name>.text.HW_WR_FIELD32_RAW</name>
  823. <load_address>0xfa4</load_address>
  824. <readonly>true</readonly>
  825. <executable>true</executable>
  826. <run_address>0xfa4</run_address>
  827. <size>0x32</size>
  828. <alignment>0x2</alignment>
  829. <input_file_ref idref="fl-1d"/>
  830. </object_component>
  831. <object_component id="oc-e3">
  832. <name>.text.DL_MCAN_setClockConfig</name>
  833. <load_address>0xfd8</load_address>
  834. <readonly>true</readonly>
  835. <executable>true</executable>
  836. <run_address>0xfd8</run_address>
  837. <size>0x2c</size>
  838. <alignment>0x4</alignment>
  839. <input_file_ref idref="fl-1d"/>
  840. </object_component>
  841. <object_component id="oc-ff">
  842. <name>.text.DL_Common_updateReg</name>
  843. <load_address>0x1004</load_address>
  844. <readonly>true</readonly>
  845. <executable>true</executable>
  846. <run_address>0x1004</run_address>
  847. <size>0x28</size>
  848. <alignment>0x2</alignment>
  849. <input_file_ref idref="fl-1b"/>
  850. </object_component>
  851. <object_component id="oc-100">
  852. <name>.text.DL_Common_updateReg</name>
  853. <load_address>0x102c</load_address>
  854. <readonly>true</readonly>
  855. <executable>true</executable>
  856. <run_address>0x102c</run_address>
  857. <size>0x28</size>
  858. <alignment>0x2</alignment>
  859. <input_file_ref idref="fl-1d"/>
  860. </object_component>
  861. <object_component id="oc-fc">
  862. <name>.text.DL_Common_updateReg</name>
  863. <load_address>0x1054</load_address>
  864. <readonly>true</readonly>
  865. <executable>true</executable>
  866. <run_address>0x1054</run_address>
  867. <size>0x28</size>
  868. <alignment>0x2</alignment>
  869. <input_file_ref idref="fl-1e"/>
  870. </object_component>
  871. <object_component id="oc-55">
  872. <name>.text:_c_int00_noargs</name>
  873. <load_address>0x107c</load_address>
  874. <readonly>true</readonly>
  875. <executable>true</executable>
  876. <run_address>0x107c</run_address>
  877. <size>0x28</size>
  878. <alignment>0x4</alignment>
  879. <input_file_ref idref="fl-38"/>
  880. </object_component>
  881. <object_component id="oc-fe">
  882. <name>.text.DL_CORE_configInstruction</name>
  883. <load_address>0x10a4</load_address>
  884. <readonly>true</readonly>
  885. <executable>true</executable>
  886. <run_address>0x10a4</run_address>
  887. <size>0x20</size>
  888. <alignment>0x4</alignment>
  889. <input_file_ref idref="fl-1e"/>
  890. </object_component>
  891. <object_component id="oc-e6">
  892. <name>.text.DL_MCAN_setOpMode</name>
  893. <load_address>0x10c4</load_address>
  894. <readonly>true</readonly>
  895. <executable>true</executable>
  896. <run_address>0x10c4</run_address>
  897. <size>0x20</size>
  898. <alignment>0x4</alignment>
  899. <input_file_ref idref="fl-1d"/>
  900. </object_component>
  901. <object_component id="oc-104">
  902. <name>.text.DL_MCAN_writeProtectedRegAccessLock</name>
  903. <load_address>0x10e4</load_address>
  904. <readonly>true</readonly>
  905. <executable>true</executable>
  906. <run_address>0x10e4</run_address>
  907. <size>0x20</size>
  908. <alignment>0x4</alignment>
  909. <input_file_ref idref="fl-1d"/>
  910. </object_component>
  911. <object_component id="oc-103">
  912. <name>.text.DL_MCAN_writeProtectedRegAccessUnlock</name>
  913. <load_address>0x1104</load_address>
  914. <readonly>true</readonly>
  915. <executable>true</executable>
  916. <run_address>0x1104</run_address>
  917. <size>0x20</size>
  918. <alignment>0x4</alignment>
  919. <input_file_ref idref="fl-1d"/>
  920. </object_component>
  921. <object_component id="oc-101">
  922. <name>.text.HW_RD_FIELD32_RAW</name>
  923. <load_address>0x1124</load_address>
  924. <readonly>true</readonly>
  925. <executable>true</executable>
  926. <run_address>0x1124</run_address>
  927. <size>0x20</size>
  928. <alignment>0x2</alignment>
  929. <input_file_ref idref="fl-1d"/>
  930. </object_component>
  931. <object_component id="oc-34">
  932. <name>.text.ADC0_IRQHandler</name>
  933. <load_address>0x1144</load_address>
  934. <readonly>true</readonly>
  935. <executable>true</executable>
  936. <run_address>0x1144</run_address>
  937. <size>0x1c</size>
  938. <alignment>0x4</alignment>
  939. <input_file_ref idref="fl-2"/>
  940. </object_component>
  941. <object_component id="oc-e7">
  942. <name>.text.DL_MCAN_getOpMode</name>
  943. <load_address>0x1160</load_address>
  944. <readonly>true</readonly>
  945. <executable>true</executable>
  946. <run_address>0x1160</run_address>
  947. <size>0x1c</size>
  948. <alignment>0x4</alignment>
  949. <input_file_ref idref="fl-1d"/>
  950. </object_component>
  951. <object_component id="oc-ce">
  952. <name>.text.GetDeviceUID</name>
  953. <load_address>0x117c</load_address>
  954. <readonly>true</readonly>
  955. <executable>true</executable>
  956. <run_address>0x117c</run_address>
  957. <size>0x1c</size>
  958. <alignment>0x4</alignment>
  959. <input_file_ref idref="fl-8"/>
  960. </object_component>
  961. <object_component id="oc-60">
  962. <name>.text.DL_MCAN_getIntrStatus</name>
  963. <load_address>0x1198</load_address>
  964. <readonly>true</readonly>
  965. <executable>true</executable>
  966. <run_address>0x1198</run_address>
  967. <size>0x18</size>
  968. <alignment>0x4</alignment>
  969. <input_file_ref idref="fl-1d"/>
  970. </object_component>
  971. <object_component id="oc-ae">
  972. <name>.text.SYSCFG_DL_init</name>
  973. <load_address>0x11b0</load_address>
  974. <readonly>true</readonly>
  975. <executable>true</executable>
  976. <run_address>0x11b0</run_address>
  977. <size>0x18</size>
  978. <alignment>0x2</alignment>
  979. <input_file_ref idref="fl-c"/>
  980. </object_component>
  981. <object_component id="oc-b3">
  982. <name>.text.initializeDeviceID</name>
  983. <load_address>0x11c8</load_address>
  984. <readonly>true</readonly>
  985. <executable>true</executable>
  986. <run_address>0x11c8</run_address>
  987. <size>0x18</size>
  988. <alignment>0x4</alignment>
  989. <input_file_ref idref="fl-9"/>
  990. </object_component>
  991. <object_component id="oc-4c">
  992. <name>.text:decompress:ZI:__TI_zero_init_nomemset</name>
  993. <load_address>0x11e0</load_address>
  994. <readonly>true</readonly>
  995. <executable>true</executable>
  996. <run_address>0x11e0</run_address>
  997. <size>0x16</size>
  998. <alignment>0x2</alignment>
  999. <input_file_ref idref="fl-3d"/>
  1000. </object_component>
  1001. <object_component id="oc-de">
  1002. <name>.text.DL_Common_delayCycles</name>
  1003. <load_address>0x11f6</load_address>
  1004. <readonly>true</readonly>
  1005. <executable>true</executable>
  1006. <run_address>0x11f6</run_address>
  1007. <size>0x14</size>
  1008. <alignment>0x2</alignment>
  1009. <input_file_ref idref="fl-1c"/>
  1010. </object_component>
  1011. <object_component id="oc-fa">
  1012. <name>.text.DL_SYSCTL_disableSYSPLL</name>
  1013. <load_address>0x120c</load_address>
  1014. <readonly>true</readonly>
  1015. <executable>true</executable>
  1016. <run_address>0x120c</run_address>
  1017. <size>0x14</size>
  1018. <alignment>0x4</alignment>
  1019. <input_file_ref idref="fl-1e"/>
  1020. </object_component>
  1021. <object_component id="oc-20">
  1022. <name>.text:decompress:none</name>
  1023. <load_address>0x1220</load_address>
  1024. <readonly>true</readonly>
  1025. <executable>true</executable>
  1026. <run_address>0x1220</run_address>
  1027. <size>0x12</size>
  1028. <alignment>0x2</alignment>
  1029. <input_file_ref idref="fl-3e"/>
  1030. </object_component>
  1031. <object_component id="oc-fd">
  1032. <name>.text.DL_CORE_getInstructionConfig</name>
  1033. <load_address>0x1234</load_address>
  1034. <readonly>true</readonly>
  1035. <executable>true</executable>
  1036. <run_address>0x1234</run_address>
  1037. <size>0x10</size>
  1038. <alignment>0x4</alignment>
  1039. <input_file_ref idref="fl-1e"/>
  1040. </object_component>
  1041. <object_component id="oc-80">
  1042. <name>.text.HW_RD_REG32_RAW</name>
  1043. <load_address>0x1244</load_address>
  1044. <readonly>true</readonly>
  1045. <executable>true</executable>
  1046. <run_address>0x1244</run_address>
  1047. <size>0x10</size>
  1048. <alignment>0x2</alignment>
  1049. <input_file_ref idref="fl-1d"/>
  1050. </object_component>
  1051. <object_component id="oc-81">
  1052. <name>.text.HW_WR_REG32_RAW</name>
  1053. <load_address>0x1254</load_address>
  1054. <readonly>true</readonly>
  1055. <executable>true</executable>
  1056. <run_address>0x1254</run_address>
  1057. <size>0x10</size>
  1058. <alignment>0x2</alignment>
  1059. <input_file_ref idref="fl-1d"/>
  1060. </object_component>
  1061. <object_component id="oc-71">
  1062. <name>.text.main</name>
  1063. <load_address>0x1264</load_address>
  1064. <readonly>true</readonly>
  1065. <executable>true</executable>
  1066. <run_address>0x1264</run_address>
  1067. <size>0xe</size>
  1068. <alignment>0x2</alignment>
  1069. <input_file_ref idref="fl-2"/>
  1070. </object_component>
  1071. <object_component id="oc-fb">
  1072. <name>.text.DL_SYSCTL_getClockStatus</name>
  1073. <load_address>0x1274</load_address>
  1074. <readonly>true</readonly>
  1075. <executable>true</executable>
  1076. <run_address>0x1274</run_address>
  1077. <size>0xc</size>
  1078. <alignment>0x4</alignment>
  1079. <input_file_ref idref="fl-1e"/>
  1080. </object_component>
  1081. <object_component id="oc-45">
  1082. <name>.text.__aeabi_memcpy</name>
  1083. <load_address>0x1280</load_address>
  1084. <readonly>true</readonly>
  1085. <executable>true</executable>
  1086. <run_address>0x1280</run_address>
  1087. <size>0x8</size>
  1088. <alignment>0x4</alignment>
  1089. <input_file_ref idref="fl-105"/>
  1090. </object_component>
  1091. <object_component id="oc-2f">
  1092. <name>.text.Reset_Handler</name>
  1093. <load_address>0x1288</load_address>
  1094. <readonly>true</readonly>
  1095. <executable>true</executable>
  1096. <run_address>0x1288</run_address>
  1097. <size>0x4</size>
  1098. <alignment>0x2</alignment>
  1099. <input_file_ref idref="fl-d"/>
  1100. </object_component>
  1101. <object_component id="oc-6d">
  1102. <name>.text._system_pre_init</name>
  1103. <load_address>0x128c</load_address>
  1104. <readonly>true</readonly>
  1105. <executable>true</executable>
  1106. <run_address>0x128c</run_address>
  1107. <size>0x4</size>
  1108. <alignment>0x2</alignment>
  1109. <input_file_ref idref="fl-3b"/>
  1110. </object_component>
  1111. <object_component id="oc-8e">
  1112. <name>.text:abort</name>
  1113. <load_address>0x1290</load_address>
  1114. <readonly>true</readonly>
  1115. <executable>true</executable>
  1116. <run_address>0x1290</run_address>
  1117. <size>0x4</size>
  1118. <alignment>0x2</alignment>
  1119. <input_file_ref idref="fl-45"/>
  1120. </object_component>
  1121. <object_component id="oc-144">
  1122. <name>__TI_handler_table</name>
  1123. <load_address>0x13c0</load_address>
  1124. <readonly>true</readonly>
  1125. <run_address>0x13c0</run_address>
  1126. <size>0xc</size>
  1127. <alignment>0x4</alignment>
  1128. </object_component>
  1129. <object_component id="oc-147">
  1130. <name>.cinit..bss.load</name>
  1131. <load_address>0x13cc</load_address>
  1132. <readonly>true</readonly>
  1133. <run_address>0x13cc</run_address>
  1134. <size>0x8</size>
  1135. <alignment>0x4</alignment>
  1136. </object_component>
  1137. <object_component id="oc-146">
  1138. <name>.cinit..data.load</name>
  1139. <load_address>0x13d4</load_address>
  1140. <readonly>true</readonly>
  1141. <run_address>0x13d4</run_address>
  1142. <size>0x5</size>
  1143. <alignment>0x1</alignment>
  1144. </object_component>
  1145. <object_component id="oc-145">
  1146. <name>__TI_cinit_table</name>
  1147. <load_address>0x13dc</load_address>
  1148. <readonly>true</readonly>
  1149. <run_address>0x13dc</run_address>
  1150. <size>0x10</size>
  1151. <alignment>0x4</alignment>
  1152. </object_component>
  1153. <object_component id="oc-f5">
  1154. <name>.rodata.gMCAN0MsgRAMConfigParams</name>
  1155. <load_address>0x1298</load_address>
  1156. <readonly>true</readonly>
  1157. <run_address>0x1298</run_address>
  1158. <size>0x60</size>
  1159. <alignment>0x4</alignment>
  1160. <input_file_ref idref="fl-c"/>
  1161. </object_component>
  1162. <object_component id="oc-f2">
  1163. <name>.rodata.gMCAN0InitParams</name>
  1164. <load_address>0x12f8</load_address>
  1165. <readonly>true</readonly>
  1166. <run_address>0x12f8</run_address>
  1167. <size>0x34</size>
  1168. <alignment>0x4</alignment>
  1169. <input_file_ref idref="fl-c"/>
  1170. </object_component>
  1171. <object_component id="oc-f3">
  1172. <name>.rodata.gMCAN0ConfigParams</name>
  1173. <load_address>0x132c</load_address>
  1174. <readonly>true</readonly>
  1175. <run_address>0x132c</run_address>
  1176. <size>0x2c</size>
  1177. <alignment>0x4</alignment>
  1178. <input_file_ref idref="fl-c"/>
  1179. </object_component>
  1180. <object_component id="oc-e0">
  1181. <name>.rodata.gSYSPLLConfig</name>
  1182. <load_address>0x1358</load_address>
  1183. <readonly>true</readonly>
  1184. <run_address>0x1358</run_address>
  1185. <size>0x28</size>
  1186. <alignment>0x4</alignment>
  1187. <input_file_ref idref="fl-c"/>
  1188. </object_component>
  1189. <object_component id="oc-f4">
  1190. <name>.rodata.gMCAN0BitTimes</name>
  1191. <load_address>0x1380</load_address>
  1192. <readonly>true</readonly>
  1193. <run_address>0x1380</run_address>
  1194. <size>0x20</size>
  1195. <alignment>0x4</alignment>
  1196. <input_file_ref idref="fl-c"/>
  1197. </object_component>
  1198. <object_component id="oc-f6">
  1199. <name>.rodata.gMCAN0StdFiltelem</name>
  1200. <load_address>0x13a0</load_address>
  1201. <readonly>true</readonly>
  1202. <run_address>0x13a0</run_address>
  1203. <size>0x10</size>
  1204. <alignment>0x4</alignment>
  1205. <input_file_ref idref="fl-c"/>
  1206. </object_component>
  1207. <object_component id="oc-e2">
  1208. <name>.rodata.gADC12_0ClockConfig</name>
  1209. <load_address>0x13b0</load_address>
  1210. <readonly>true</readonly>
  1211. <run_address>0x13b0</run_address>
  1212. <size>0x8</size>
  1213. <alignment>0x4</alignment>
  1214. <input_file_ref idref="fl-c"/>
  1215. </object_component>
  1216. <object_component id="oc-f1">
  1217. <name>.rodata.gMCAN0ClockConf</name>
  1218. <load_address>0x13b8</load_address>
  1219. <readonly>true</readonly>
  1220. <run_address>0x13b8</run_address>
  1221. <size>0x4</size>
  1222. <alignment>0x2</alignment>
  1223. <input_file_ref idref="fl-c"/>
  1224. </object_component>
  1225. <object_component id="oc-10e">
  1226. <name>.binit</name>
  1227. <load_address>0x0</load_address>
  1228. <readonly>true</readonly>
  1229. <run_address>0x0</run_address>
  1230. <size>0x0</size>
  1231. <alignment>0x4</alignment>
  1232. </object_component>
  1233. <object_component id="oc-d2">
  1234. <name>.data.initialized</name>
  1235. <load_address>0x20200018</load_address>
  1236. <readwrite>true</readwrite>
  1237. <run_address>0x20200018</run_address>
  1238. <size>0x1</size>
  1239. <alignment>0x4</alignment>
  1240. <input_file_ref idref="fl-9"/>
  1241. </object_component>
  1242. <object_component id="oc-5c">
  1243. <name>.common:gCheckADC</name>
  1244. <uninitialized>true</uninitialized>
  1245. <readwrite>true</readwrite>
  1246. <run_address>0x20200013</run_address>
  1247. <size>0x1</size>
  1248. <alignment>0x1</alignment>
  1249. </object_component>
  1250. <object_component id="oc-63">
  1251. <name>.common:gServiceInt</name>
  1252. <uninitialized>true</uninitialized>
  1253. <readwrite>true</readwrite>
  1254. <run_address>0x20200014</run_address>
  1255. <size>0x1</size>
  1256. <alignment>0x1</alignment>
  1257. </object_component>
  1258. <object_component id="oc-62">
  1259. <name>.common:gInterruptLine1Status</name>
  1260. <uninitialized>true</uninitialized>
  1261. <readwrite>true</readwrite>
  1262. <run_address>0x2020000c</run_address>
  1263. <size>0x4</size>
  1264. <alignment>0x4</alignment>
  1265. </object_component>
  1266. <object_component id="oc-b7">
  1267. <name>.common:OverheatingThreshold</name>
  1268. <uninitialized>true</uninitialized>
  1269. <readwrite>true</readwrite>
  1270. <run_address>0x20200010</run_address>
  1271. <size>0x2</size>
  1272. <alignment>0x2</alignment>
  1273. </object_component>
  1274. <object_component id="oc-f7">
  1275. <name>.common:DeviceUID</name>
  1276. <uninitialized>true</uninitialized>
  1277. <readwrite>true</readwrite>
  1278. <run_address>0x20200000</run_address>
  1279. <size>0xc</size>
  1280. <alignment>0x4</alignment>
  1281. </object_component>
  1282. <object_component id="oc-b8">
  1283. <name>.common:CurrentMode</name>
  1284. <uninitialized>true</uninitialized>
  1285. <readwrite>true</readwrite>
  1286. <run_address>0x20200012</run_address>
  1287. <size>0x1</size>
  1288. <alignment>0x1</alignment>
  1289. </object_component>
  1290. <object_component id="oc-1a">
  1291. <name>.stack</name>
  1292. <uninitialized>true</uninitialized>
  1293. <readwrite>true</readwrite>
  1294. <run_address>0x20207e00</run_address>
  1295. <size>0x4</size>
  1296. <alignment>0x4</alignment>
  1297. <input_file_ref idref="fl-38"/>
  1298. </object_component>
  1299. <object_component id="oc-149">
  1300. <name>.stack</name>
  1301. <uninitialized>true</uninitialized>
  1302. <readwrite>true</readwrite>
  1303. <run_address>0x20207e00</run_address>
  1304. <size>0x0</size>
  1305. <alignment>0x8</alignment>
  1306. </object_component>
  1307. <object_component id="oc-7f">
  1308. <name>.debug_loc</name>
  1309. <load_address>0x0</load_address>
  1310. <run_address>0x0</run_address>
  1311. <size>0x13</size>
  1312. <alignment>0x1</alignment>
  1313. <input_file_ref idref="fl-1"/>
  1314. </object_component>
  1315. <object_component id="oc-c9">
  1316. <name>.debug_loc</name>
  1317. <load_address>0x13</load_address>
  1318. <run_address>0x13</run_address>
  1319. <size>0x67</size>
  1320. <alignment>0x1</alignment>
  1321. <input_file_ref idref="fl-c"/>
  1322. </object_component>
  1323. <object_component id="oc-40">
  1324. <name>.debug_loc</name>
  1325. <load_address>0x7a</load_address>
  1326. <run_address>0x7a</run_address>
  1327. <size>0xd8</size>
  1328. <alignment>0x1</alignment>
  1329. <input_file_ref idref="fl-38"/>
  1330. </object_component>
  1331. <object_component id="oc-9a">
  1332. <name>.debug_loc</name>
  1333. <load_address>0x152</load_address>
  1334. <run_address>0x152</run_address>
  1335. <size>0x424</size>
  1336. <alignment>0x1</alignment>
  1337. <input_file_ref idref="fl-3a"/>
  1338. </object_component>
  1339. <object_component id="oc-4d">
  1340. <name>.debug_loc</name>
  1341. <load_address>0x576</load_address>
  1342. <run_address>0x576</run_address>
  1343. <size>0x16c</size>
  1344. <alignment>0x1</alignment>
  1345. <input_file_ref idref="fl-3d"/>
  1346. </object_component>
  1347. <object_component id="oc-4b">
  1348. <name>.debug_loc</name>
  1349. <load_address>0x6e2</load_address>
  1350. <run_address>0x6e2</run_address>
  1351. <size>0x6f</size>
  1352. <alignment>0x1</alignment>
  1353. <input_file_ref idref="fl-3e"/>
  1354. </object_component>
  1355. <object_component id="oc-43">
  1356. <name>.debug_loc</name>
  1357. <load_address>0x751</load_address>
  1358. <run_address>0x751</run_address>
  1359. <size>0x167</size>
  1360. <alignment>0x1</alignment>
  1361. <input_file_ref idref="fl-3f"/>
  1362. </object_component>
  1363. <object_component id="oc-94">
  1364. <name>.debug_loc</name>
  1365. <load_address>0x8b8</load_address>
  1366. <run_address>0x8b8</run_address>
  1367. <size>0x26</size>
  1368. <alignment>0x1</alignment>
  1369. <input_file_ref idref="fl-45"/>
  1370. </object_component>
  1371. <object_component id="oc-7c">
  1372. <name>.debug_abbrev</name>
  1373. <load_address>0x0</load_address>
  1374. <run_address>0x0</run_address>
  1375. <size>0x155</size>
  1376. <alignment>0x1</alignment>
  1377. <input_file_ref idref="fl-1"/>
  1378. </object_component>
  1379. <object_component id="oc-5e">
  1380. <name>.debug_abbrev</name>
  1381. <load_address>0x155</load_address>
  1382. <run_address>0x155</run_address>
  1383. <size>0x191</size>
  1384. <alignment>0x1</alignment>
  1385. <input_file_ref idref="fl-2"/>
  1386. </object_component>
  1387. <object_component id="oc-f8">
  1388. <name>.debug_abbrev</name>
  1389. <load_address>0x2e6</load_address>
  1390. <run_address>0x2e6</run_address>
  1391. <size>0x52</size>
  1392. <alignment>0x1</alignment>
  1393. <input_file_ref idref="fl-8"/>
  1394. </object_component>
  1395. <object_component id="oc-d3">
  1396. <name>.debug_abbrev</name>
  1397. <load_address>0x338</load_address>
  1398. <run_address>0x338</run_address>
  1399. <size>0x8c</size>
  1400. <alignment>0x1</alignment>
  1401. <input_file_ref idref="fl-9"/>
  1402. </object_component>
  1403. <object_component id="oc-cc">
  1404. <name>.debug_abbrev</name>
  1405. <load_address>0x3c4</load_address>
  1406. <run_address>0x3c4</run_address>
  1407. <size>0x206</size>
  1408. <alignment>0x1</alignment>
  1409. <input_file_ref idref="fl-c"/>
  1410. </object_component>
  1411. <object_component id="oc-3a">
  1412. <name>.debug_abbrev</name>
  1413. <load_address>0x5ca</load_address>
  1414. <run_address>0x5ca</run_address>
  1415. <size>0x6d</size>
  1416. <alignment>0x1</alignment>
  1417. <input_file_ref idref="fl-d"/>
  1418. </object_component>
  1419. <object_component id="oc-3c">
  1420. <name>.debug_abbrev</name>
  1421. <load_address>0x637</load_address>
  1422. <run_address>0x637</run_address>
  1423. <size>0xaf</size>
  1424. <alignment>0x1</alignment>
  1425. <input_file_ref idref="fl-38"/>
  1426. </object_component>
  1427. <object_component id="oc-bf">
  1428. <name>.debug_abbrev</name>
  1429. <load_address>0x6e6</load_address>
  1430. <run_address>0x6e6</run_address>
  1431. <size>0x170</size>
  1432. <alignment>0x1</alignment>
  1433. <input_file_ref idref="fl-3a"/>
  1434. </object_component>
  1435. <object_component id="oc-8a">
  1436. <name>.debug_abbrev</name>
  1437. <load_address>0x856</load_address>
  1438. <run_address>0x856</run_address>
  1439. <size>0x39</size>
  1440. <alignment>0x1</alignment>
  1441. <input_file_ref idref="fl-3b"/>
  1442. </object_component>
  1443. <object_component id="oc-66">
  1444. <name>.debug_abbrev</name>
  1445. <load_address>0x88f</load_address>
  1446. <run_address>0x88f</run_address>
  1447. <size>0xc2</size>
  1448. <alignment>0x1</alignment>
  1449. <input_file_ref idref="fl-3d"/>
  1450. </object_component>
  1451. <object_component id="oc-49">
  1452. <name>.debug_abbrev</name>
  1453. <load_address>0x951</load_address>
  1454. <run_address>0x951</run_address>
  1455. <size>0x70</size>
  1456. <alignment>0x1</alignment>
  1457. <input_file_ref idref="fl-3e"/>
  1458. </object_component>
  1459. <object_component id="oc-41">
  1460. <name>.debug_abbrev</name>
  1461. <load_address>0x9c1</load_address>
  1462. <run_address>0x9c1</run_address>
  1463. <size>0x8d</size>
  1464. <alignment>0x1</alignment>
  1465. <input_file_ref idref="fl-3f"/>
  1466. </object_component>
  1467. <object_component id="oc-b9">
  1468. <name>.debug_abbrev</name>
  1469. <load_address>0xa4e</load_address>
  1470. <run_address>0xa4e</run_address>
  1471. <size>0xb3</size>
  1472. <alignment>0x1</alignment>
  1473. <input_file_ref idref="fl-45"/>
  1474. </object_component>
  1475. <object_component id="oc-65">
  1476. <name>.debug_abbrev</name>
  1477. <load_address>0xb01</load_address>
  1478. <run_address>0xb01</run_address>
  1479. <size>0x27</size>
  1480. <alignment>0x1</alignment>
  1481. <input_file_ref idref="fl-105"/>
  1482. </object_component>
  1483. <object_component id="oc-a7">
  1484. <name>.debug_abbrev</name>
  1485. <load_address>0xb28</load_address>
  1486. <run_address>0xb28</run_address>
  1487. <size>0x25</size>
  1488. <alignment>0x1</alignment>
  1489. <input_file_ref idref="fl-10e"/>
  1490. </object_component>
  1491. <object_component id="oc-14b">
  1492. <name>.debug_abbrev</name>
  1493. <load_address>0xb4d</load_address>
  1494. <run_address>0xb4d</run_address>
  1495. <size>0xf</size>
  1496. <alignment>0x0</alignment>
  1497. </object_component>
  1498. <object_component id="oc-5d">
  1499. <name>.debug_info</name>
  1500. <load_address>0x0</load_address>
  1501. <run_address>0x0</run_address>
  1502. <size>0x4a3</size>
  1503. <alignment>0x1</alignment>
  1504. <input_file_ref idref="fl-1"/>
  1505. </object_component>
  1506. <object_component id="oc-37">
  1507. <name>.debug_info</name>
  1508. <load_address>0x4a3</load_address>
  1509. <run_address>0x4a3</run_address>
  1510. <size>0xfbf</size>
  1511. <alignment>0x1</alignment>
  1512. <input_file_ref idref="fl-2"/>
  1513. </object_component>
  1514. <object_component id="oc-d0">
  1515. <name>.debug_info</name>
  1516. <load_address>0x1462</load_address>
  1517. <run_address>0x1462</run_address>
  1518. <size>0x62</size>
  1519. <alignment>0x1</alignment>
  1520. <input_file_ref idref="fl-8"/>
  1521. </object_component>
  1522. <object_component id="oc-b4">
  1523. <name>.debug_info</name>
  1524. <load_address>0x14c4</load_address>
  1525. <run_address>0x14c4</run_address>
  1526. <size>0xbc</size>
  1527. <alignment>0x1</alignment>
  1528. <input_file_ref idref="fl-9"/>
  1529. </object_component>
  1530. <object_component id="oc-b0">
  1531. <name>.debug_info</name>
  1532. <load_address>0x1580</load_address>
  1533. <run_address>0x1580</run_address>
  1534. <size>0x3dfa</size>
  1535. <alignment>0x1</alignment>
  1536. <input_file_ref idref="fl-c"/>
  1537. </object_component>
  1538. <object_component id="oc-19">
  1539. <name>.debug_info</name>
  1540. <load_address>0x537a</load_address>
  1541. <run_address>0x537a</run_address>
  1542. <size>0x80</size>
  1543. <alignment>0x1</alignment>
  1544. <input_file_ref idref="fl-d"/>
  1545. </object_component>
  1546. <object_component id="oc-1b">
  1547. <name>.debug_info</name>
  1548. <load_address>0x53fa</load_address>
  1549. <run_address>0x53fa</run_address>
  1550. <size>0x423</size>
  1551. <alignment>0x1</alignment>
  1552. <input_file_ref idref="fl-38"/>
  1553. </object_component>
  1554. <object_component id="oc-97">
  1555. <name>.debug_info</name>
  1556. <load_address>0x581d</load_address>
  1557. <run_address>0x581d</run_address>
  1558. <size>0x744</size>
  1559. <alignment>0x1</alignment>
  1560. <input_file_ref idref="fl-3a"/>
  1561. </object_component>
  1562. <object_component id="oc-6e">
  1563. <name>.debug_info</name>
  1564. <load_address>0x5f61</load_address>
  1565. <run_address>0x5f61</run_address>
  1566. <size>0x46</size>
  1567. <alignment>0x1</alignment>
  1568. <input_file_ref idref="fl-3b"/>
  1569. </object_component>
  1570. <object_component id="oc-50">
  1571. <name>.debug_info</name>
  1572. <load_address>0x5fa7</load_address>
  1573. <run_address>0x5fa7</run_address>
  1574. <size>0x192</size>
  1575. <alignment>0x1</alignment>
  1576. <input_file_ref idref="fl-3d"/>
  1577. </object_component>
  1578. <object_component id="oc-21">
  1579. <name>.debug_info</name>
  1580. <load_address>0x6139</load_address>
  1581. <run_address>0x6139</run_address>
  1582. <size>0xc6</size>
  1583. <alignment>0x1</alignment>
  1584. <input_file_ref idref="fl-3e"/>
  1585. </object_component>
  1586. <object_component id="oc-1d">
  1587. <name>.debug_info</name>
  1588. <load_address>0x61ff</load_address>
  1589. <run_address>0x61ff</run_address>
  1590. <size>0x17c</size>
  1591. <alignment>0x1</alignment>
  1592. <input_file_ref idref="fl-3f"/>
  1593. </object_component>
  1594. <object_component id="oc-90">
  1595. <name>.debug_info</name>
  1596. <load_address>0x637b</load_address>
  1597. <run_address>0x637b</run_address>
  1598. <size>0xed</size>
  1599. <alignment>0x1</alignment>
  1600. <input_file_ref idref="fl-45"/>
  1601. </object_component>
  1602. <object_component id="oc-46">
  1603. <name>.debug_info</name>
  1604. <load_address>0x6468</load_address>
  1605. <run_address>0x6468</run_address>
  1606. <size>0x199</size>
  1607. <alignment>0x1</alignment>
  1608. <input_file_ref idref="fl-105"/>
  1609. </object_component>
  1610. <object_component id="oc-85">
  1611. <name>.debug_info</name>
  1612. <load_address>0x6601</load_address>
  1613. <run_address>0x6601</run_address>
  1614. <size>0x2fa</size>
  1615. <alignment>0x1</alignment>
  1616. <input_file_ref idref="fl-10e"/>
  1617. </object_component>
  1618. <object_component id="oc-14a">
  1619. <name>.debug_info</name>
  1620. <load_address>0x68fb</load_address>
  1621. <run_address>0x68fb</run_address>
  1622. <size>0xa7</size>
  1623. <alignment>0x0</alignment>
  1624. </object_component>
  1625. <object_component id="oc-7d">
  1626. <name>.debug_str</name>
  1627. <load_address>0x0</load_address>
  1628. <run_address>0x0</run_address>
  1629. <size>0x5c5</size>
  1630. <alignment>0x1</alignment>
  1631. <input_file_ref idref="fl-1"/>
  1632. </object_component>
  1633. <object_component id="oc-5f">
  1634. <name>.debug_str</name>
  1635. <load_address>0x5c5</load_address>
  1636. <run_address>0x5c5</run_address>
  1637. <size>0xd2e</size>
  1638. <alignment>0x1</alignment>
  1639. <input_file_ref idref="fl-2"/>
  1640. </object_component>
  1641. <object_component id="oc-f9">
  1642. <name>.debug_str</name>
  1643. <load_address>0x12f3</load_address>
  1644. <run_address>0x12f3</run_address>
  1645. <size>0x10e</size>
  1646. <alignment>0x1</alignment>
  1647. <input_file_ref idref="fl-8"/>
  1648. </object_component>
  1649. <object_component id="oc-d4">
  1650. <name>.debug_str</name>
  1651. <load_address>0x1401</load_address>
  1652. <run_address>0x1401</run_address>
  1653. <size>0x15c</size>
  1654. <alignment>0x1</alignment>
  1655. <input_file_ref idref="fl-9"/>
  1656. </object_component>
  1657. <object_component id="oc-cd">
  1658. <name>.debug_str</name>
  1659. <load_address>0x155d</load_address>
  1660. <run_address>0x155d</run_address>
  1661. <size>0x2a21</size>
  1662. <alignment>0x1</alignment>
  1663. <input_file_ref idref="fl-c"/>
  1664. </object_component>
  1665. <object_component id="oc-3b">
  1666. <name>.debug_str</name>
  1667. <load_address>0x3f7e</load_address>
  1668. <run_address>0x3f7e</run_address>
  1669. <size>0x15e</size>
  1670. <alignment>0x1</alignment>
  1671. <input_file_ref idref="fl-d"/>
  1672. </object_component>
  1673. <object_component id="oc-3d">
  1674. <name>.debug_str</name>
  1675. <load_address>0x40dc</load_address>
  1676. <run_address>0x40dc</run_address>
  1677. <size>0x225</size>
  1678. <alignment>0x1</alignment>
  1679. <input_file_ref idref="fl-38"/>
  1680. </object_component>
  1681. <object_component id="oc-c0">
  1682. <name>.debug_str</name>
  1683. <load_address>0x4301</load_address>
  1684. <run_address>0x4301</run_address>
  1685. <size>0x32f</size>
  1686. <alignment>0x1</alignment>
  1687. <input_file_ref idref="fl-3a"/>
  1688. </object_component>
  1689. <object_component id="oc-8b">
  1690. <name>.debug_str</name>
  1691. <load_address>0x4630</load_address>
  1692. <run_address>0x4630</run_address>
  1693. <size>0xf5</size>
  1694. <alignment>0x1</alignment>
  1695. <input_file_ref idref="fl-3b"/>
  1696. </object_component>
  1697. <object_component id="oc-67">
  1698. <name>.debug_str</name>
  1699. <load_address>0x4725</load_address>
  1700. <run_address>0x4725</run_address>
  1701. <size>0x19b</size>
  1702. <alignment>0x1</alignment>
  1703. <input_file_ref idref="fl-3d"/>
  1704. </object_component>
  1705. <object_component id="oc-4a">
  1706. <name>.debug_str</name>
  1707. <load_address>0x48c0</load_address>
  1708. <run_address>0x48c0</run_address>
  1709. <size>0x168</size>
  1710. <alignment>0x1</alignment>
  1711. <input_file_ref idref="fl-3e"/>
  1712. </object_component>
  1713. <object_component id="oc-42">
  1714. <name>.debug_str</name>
  1715. <load_address>0x4a28</load_address>
  1716. <run_address>0x4a28</run_address>
  1717. <size>0x1d5</size>
  1718. <alignment>0x1</alignment>
  1719. <input_file_ref idref="fl-3f"/>
  1720. </object_component>
  1721. <object_component id="oc-ba">
  1722. <name>.debug_str</name>
  1723. <load_address>0x4bfd</load_address>
  1724. <run_address>0x4bfd</run_address>
  1725. <size>0x13f</size>
  1726. <alignment>0x1</alignment>
  1727. <input_file_ref idref="fl-45"/>
  1728. </object_component>
  1729. <object_component id="oc-8d">
  1730. <name>.debug_frame</name>
  1731. <load_address>0x0</load_address>
  1732. <run_address>0x0</run_address>
  1733. <size>0x28</size>
  1734. <alignment>0x4</alignment>
  1735. <input_file_ref idref="fl-1"/>
  1736. </object_component>
  1737. <object_component id="oc-35">
  1738. <name>.debug_frame</name>
  1739. <load_address>0x28</load_address>
  1740. <run_address>0x28</run_address>
  1741. <size>0x48</size>
  1742. <alignment>0x4</alignment>
  1743. <input_file_ref idref="fl-2"/>
  1744. </object_component>
  1745. <object_component id="oc-d1">
  1746. <name>.debug_frame</name>
  1747. <load_address>0x70</load_address>
  1748. <run_address>0x70</run_address>
  1749. <size>0x20</size>
  1750. <alignment>0x4</alignment>
  1751. <input_file_ref idref="fl-8"/>
  1752. </object_component>
  1753. <object_component id="oc-b6">
  1754. <name>.debug_frame</name>
  1755. <load_address>0x90</load_address>
  1756. <run_address>0x90</run_address>
  1757. <size>0x28</size>
  1758. <alignment>0x4</alignment>
  1759. <input_file_ref idref="fl-9"/>
  1760. </object_component>
  1761. <object_component id="oc-b1">
  1762. <name>.debug_frame</name>
  1763. <load_address>0xb8</load_address>
  1764. <run_address>0xb8</run_address>
  1765. <size>0xa0</size>
  1766. <alignment>0x4</alignment>
  1767. <input_file_ref idref="fl-c"/>
  1768. </object_component>
  1769. <object_component id="oc-31">
  1770. <name>.debug_frame</name>
  1771. <load_address>0x158</load_address>
  1772. <run_address>0x158</run_address>
  1773. <size>0x30</size>
  1774. <alignment>0x4</alignment>
  1775. <input_file_ref idref="fl-d"/>
  1776. </object_component>
  1777. <object_component id="oc-54">
  1778. <name>.debug_frame</name>
  1779. <load_address>0x188</load_address>
  1780. <run_address>0x188</run_address>
  1781. <size>0x90</size>
  1782. <alignment>0x4</alignment>
  1783. <input_file_ref idref="fl-38"/>
  1784. </object_component>
  1785. <object_component id="oc-96">
  1786. <name>.debug_frame</name>
  1787. <load_address>0x218</load_address>
  1788. <run_address>0x218</run_address>
  1789. <size>0x100</size>
  1790. <alignment>0x4</alignment>
  1791. <input_file_ref idref="fl-3a"/>
  1792. </object_component>
  1793. <object_component id="oc-6f">
  1794. <name>.debug_frame</name>
  1795. <load_address>0x318</load_address>
  1796. <run_address>0x318</run_address>
  1797. <size>0x20</size>
  1798. <alignment>0x4</alignment>
  1799. <input_file_ref idref="fl-3b"/>
  1800. </object_component>
  1801. <object_component id="oc-51">
  1802. <name>.debug_frame</name>
  1803. <load_address>0x338</load_address>
  1804. <run_address>0x338</run_address>
  1805. <size>0x38</size>
  1806. <alignment>0x4</alignment>
  1807. <input_file_ref idref="fl-3d"/>
  1808. </object_component>
  1809. <object_component id="oc-22">
  1810. <name>.debug_frame</name>
  1811. <load_address>0x370</load_address>
  1812. <run_address>0x370</run_address>
  1813. <size>0x28</size>
  1814. <alignment>0x4</alignment>
  1815. <input_file_ref idref="fl-3e"/>
  1816. </object_component>
  1817. <object_component id="oc-1f">
  1818. <name>.debug_frame</name>
  1819. <load_address>0x398</load_address>
  1820. <run_address>0x398</run_address>
  1821. <size>0x30</size>
  1822. <alignment>0x4</alignment>
  1823. <input_file_ref idref="fl-3f"/>
  1824. </object_component>
  1825. <object_component id="oc-8f">
  1826. <name>.debug_frame</name>
  1827. <load_address>0x3c8</load_address>
  1828. <run_address>0x3c8</run_address>
  1829. <size>0x30</size>
  1830. <alignment>0x4</alignment>
  1831. <input_file_ref idref="fl-45"/>
  1832. </object_component>
  1833. <object_component id="oc-7e">
  1834. <name>.debug_line</name>
  1835. <load_address>0x0</load_address>
  1836. <run_address>0x0</run_address>
  1837. <size>0x22b</size>
  1838. <alignment>0x1</alignment>
  1839. <input_file_ref idref="fl-1"/>
  1840. </object_component>
  1841. <object_component id="oc-36">
  1842. <name>.debug_line</name>
  1843. <load_address>0x22b</load_address>
  1844. <run_address>0x22b</run_address>
  1845. <size>0x2c1</size>
  1846. <alignment>0x1</alignment>
  1847. <input_file_ref idref="fl-2"/>
  1848. </object_component>
  1849. <object_component id="oc-cf">
  1850. <name>.debug_line</name>
  1851. <load_address>0x4ec</load_address>
  1852. <run_address>0x4ec</run_address>
  1853. <size>0x138</size>
  1854. <alignment>0x1</alignment>
  1855. <input_file_ref idref="fl-8"/>
  1856. </object_component>
  1857. <object_component id="oc-b5">
  1858. <name>.debug_line</name>
  1859. <load_address>0x624</load_address>
  1860. <run_address>0x624</run_address>
  1861. <size>0xcf</size>
  1862. <alignment>0x1</alignment>
  1863. <input_file_ref idref="fl-9"/>
  1864. </object_component>
  1865. <object_component id="oc-af">
  1866. <name>.debug_line</name>
  1867. <load_address>0x6f3</load_address>
  1868. <run_address>0x6f3</run_address>
  1869. <size>0x545</size>
  1870. <alignment>0x1</alignment>
  1871. <input_file_ref idref="fl-c"/>
  1872. </object_component>
  1873. <object_component id="oc-32">
  1874. <name>.debug_line</name>
  1875. <load_address>0xc38</load_address>
  1876. <run_address>0xc38</run_address>
  1877. <size>0xb8</size>
  1878. <alignment>0x1</alignment>
  1879. <input_file_ref idref="fl-d"/>
  1880. </object_component>
  1881. <object_component id="oc-3e">
  1882. <name>.debug_line</name>
  1883. <load_address>0xcf0</load_address>
  1884. <run_address>0xcf0</run_address>
  1885. <size>0x1dc</size>
  1886. <alignment>0x1</alignment>
  1887. <input_file_ref idref="fl-38"/>
  1888. </object_component>
  1889. <object_component id="oc-98">
  1890. <name>.debug_line</name>
  1891. <load_address>0xecc</load_address>
  1892. <run_address>0xecc</run_address>
  1893. <size>0x51a</size>
  1894. <alignment>0x1</alignment>
  1895. <input_file_ref idref="fl-3a"/>
  1896. </object_component>
  1897. <object_component id="oc-70">
  1898. <name>.debug_line</name>
  1899. <load_address>0x13e6</load_address>
  1900. <run_address>0x13e6</run_address>
  1901. <size>0x3e</size>
  1902. <alignment>0x1</alignment>
  1903. <input_file_ref idref="fl-3b"/>
  1904. </object_component>
  1905. <object_component id="oc-4e">
  1906. <name>.debug_line</name>
  1907. <load_address>0x1424</load_address>
  1908. <run_address>0x1424</run_address>
  1909. <size>0xfe</size>
  1910. <alignment>0x1</alignment>
  1911. <input_file_ref idref="fl-3d"/>
  1912. </object_component>
  1913. <object_component id="oc-23">
  1914. <name>.debug_line</name>
  1915. <load_address>0x1522</load_address>
  1916. <run_address>0x1522</run_address>
  1917. <size>0xc0</size>
  1918. <alignment>0x1</alignment>
  1919. <input_file_ref idref="fl-3e"/>
  1920. </object_component>
  1921. <object_component id="oc-1e">
  1922. <name>.debug_line</name>
  1923. <load_address>0x15e2</load_address>
  1924. <run_address>0x15e2</run_address>
  1925. <size>0x1c8</size>
  1926. <alignment>0x1</alignment>
  1927. <input_file_ref idref="fl-3f"/>
  1928. </object_component>
  1929. <object_component id="oc-92">
  1930. <name>.debug_line</name>
  1931. <load_address>0x17aa</load_address>
  1932. <run_address>0x17aa</run_address>
  1933. <size>0x69</size>
  1934. <alignment>0x1</alignment>
  1935. <input_file_ref idref="fl-45"/>
  1936. </object_component>
  1937. <object_component id="oc-48">
  1938. <name>.debug_line</name>
  1939. <load_address>0x1813</load_address>
  1940. <run_address>0x1813</run_address>
  1941. <size>0xa4</size>
  1942. <alignment>0x1</alignment>
  1943. <input_file_ref idref="fl-105"/>
  1944. </object_component>
  1945. <object_component id="oc-84">
  1946. <name>.debug_line</name>
  1947. <load_address>0x18b7</load_address>
  1948. <run_address>0x18b7</run_address>
  1949. <size>0xa0</size>
  1950. <alignment>0x1</alignment>
  1951. <input_file_ref idref="fl-10e"/>
  1952. </object_component>
  1953. <object_component id="oc-38">
  1954. <name>.debug_ranges</name>
  1955. <load_address>0x0</load_address>
  1956. <run_address>0x0</run_address>
  1957. <size>0x20</size>
  1958. <alignment>0x1</alignment>
  1959. <input_file_ref idref="fl-2"/>
  1960. </object_component>
  1961. <object_component id="oc-b2">
  1962. <name>.debug_ranges</name>
  1963. <load_address>0x20</load_address>
  1964. <run_address>0x20</run_address>
  1965. <size>0x38</size>
  1966. <alignment>0x1</alignment>
  1967. <input_file_ref idref="fl-c"/>
  1968. </object_component>
  1969. <object_component id="oc-30">
  1970. <name>.debug_ranges</name>
  1971. <load_address>0x58</load_address>
  1972. <run_address>0x58</run_address>
  1973. <size>0x18</size>
  1974. <alignment>0x1</alignment>
  1975. <input_file_ref idref="fl-d"/>
  1976. </object_component>
  1977. <object_component id="oc-3f">
  1978. <name>.debug_ranges</name>
  1979. <load_address>0x70</load_address>
  1980. <run_address>0x70</run_address>
  1981. <size>0x48</size>
  1982. <alignment>0x1</alignment>
  1983. <input_file_ref idref="fl-38"/>
  1984. </object_component>
  1985. <object_component id="oc-99">
  1986. <name>.debug_ranges</name>
  1987. <load_address>0xb8</load_address>
  1988. <run_address>0xb8</run_address>
  1989. <size>0x48</size>
  1990. <alignment>0x1</alignment>
  1991. <input_file_ref idref="fl-3a"/>
  1992. </object_component>
  1993. <object_component id="oc-4f">
  1994. <name>.debug_ranges</name>
  1995. <load_address>0x100</load_address>
  1996. <run_address>0x100</run_address>
  1997. <size>0x18</size>
  1998. <alignment>0x1</alignment>
  1999. <input_file_ref idref="fl-3d"/>
  2000. </object_component>
  2001. <object_component id="oc-44">
  2002. <name>.debug_ranges</name>
  2003. <load_address>0x118</load_address>
  2004. <run_address>0x118</run_address>
  2005. <size>0x50</size>
  2006. <alignment>0x1</alignment>
  2007. <input_file_ref idref="fl-3f"/>
  2008. </object_component>
  2009. <object_component id="oc-91">
  2010. <name>.debug_ranges</name>
  2011. <load_address>0x168</load_address>
  2012. <run_address>0x168</run_address>
  2013. <size>0x18</size>
  2014. <alignment>0x1</alignment>
  2015. <input_file_ref idref="fl-45"/>
  2016. </object_component>
  2017. <object_component id="oc-86">
  2018. <name>.debug_ranges</name>
  2019. <load_address>0x180</load_address>
  2020. <run_address>0x180</run_address>
  2021. <size>0x28</size>
  2022. <alignment>0x1</alignment>
  2023. <input_file_ref idref="fl-10e"/>
  2024. </object_component>
  2025. <object_component id="oc-47">
  2026. <name>.debug_aranges</name>
  2027. <load_address>0x0</load_address>
  2028. <run_address>0x0</run_address>
  2029. <size>0x20</size>
  2030. <alignment>0x1</alignment>
  2031. <input_file_ref idref="fl-105"/>
  2032. </object_component>
  2033. <object_component id="oc-83">
  2034. <name>.debug_aranges</name>
  2035. <load_address>0x20</load_address>
  2036. <run_address>0x20</run_address>
  2037. <size>0x28</size>
  2038. <alignment>0x1</alignment>
  2039. <input_file_ref idref="fl-10e"/>
  2040. </object_component>
  2041. </object_component_list>
  2042. <logical_group_list>
  2043. <logical_group id="lg-2" display="no" color="cyan">
  2044. <name>.intvecs</name>
  2045. <load_address>0x0</load_address>
  2046. <run_address>0x0</run_address>
  2047. <size>0xc0</size>
  2048. <contents>
  2049. <object_component_ref idref="oc-18"/>
  2050. </contents>
  2051. </logical_group>
  2052. <logical_group id="lg-3" display="no" color="cyan">
  2053. <name>.text</name>
  2054. <load_address>0xc0</load_address>
  2055. <run_address>0xc0</run_address>
  2056. <size>0x11d8</size>
  2057. <contents>
  2058. <object_component_ref idref="oc-eb"/>
  2059. <object_component_ref idref="oc-e8"/>
  2060. <object_component_ref idref="oc-ea"/>
  2061. <object_component_ref idref="oc-e9"/>
  2062. <object_component_ref idref="oc-cb"/>
  2063. <object_component_ref idref="oc-df"/>
  2064. <object_component_ref idref="oc-87"/>
  2065. <object_component_ref idref="oc-33"/>
  2066. <object_component_ref idref="oc-e4"/>
  2067. <object_component_ref idref="oc-1c"/>
  2068. <object_component_ref idref="oc-ec"/>
  2069. <object_component_ref idref="oc-ee"/>
  2070. <object_component_ref idref="oc-ef"/>
  2071. <object_component_ref idref="oc-ca"/>
  2072. <object_component_ref idref="oc-f0"/>
  2073. <object_component_ref idref="oc-e1"/>
  2074. <object_component_ref idref="oc-ed"/>
  2075. <object_component_ref idref="oc-c7"/>
  2076. <object_component_ref idref="oc-8c"/>
  2077. <object_component_ref idref="oc-39"/>
  2078. <object_component_ref idref="oc-e5"/>
  2079. <object_component_ref idref="oc-c6"/>
  2080. <object_component_ref idref="oc-c8"/>
  2081. <object_component_ref idref="oc-95"/>
  2082. <object_component_ref idref="oc-61"/>
  2083. <object_component_ref idref="oc-102"/>
  2084. <object_component_ref idref="oc-e3"/>
  2085. <object_component_ref idref="oc-ff"/>
  2086. <object_component_ref idref="oc-100"/>
  2087. <object_component_ref idref="oc-fc"/>
  2088. <object_component_ref idref="oc-55"/>
  2089. <object_component_ref idref="oc-fe"/>
  2090. <object_component_ref idref="oc-e6"/>
  2091. <object_component_ref idref="oc-104"/>
  2092. <object_component_ref idref="oc-103"/>
  2093. <object_component_ref idref="oc-101"/>
  2094. <object_component_ref idref="oc-34"/>
  2095. <object_component_ref idref="oc-e7"/>
  2096. <object_component_ref idref="oc-ce"/>
  2097. <object_component_ref idref="oc-60"/>
  2098. <object_component_ref idref="oc-ae"/>
  2099. <object_component_ref idref="oc-b3"/>
  2100. <object_component_ref idref="oc-4c"/>
  2101. <object_component_ref idref="oc-de"/>
  2102. <object_component_ref idref="oc-fa"/>
  2103. <object_component_ref idref="oc-20"/>
  2104. <object_component_ref idref="oc-fd"/>
  2105. <object_component_ref idref="oc-80"/>
  2106. <object_component_ref idref="oc-81"/>
  2107. <object_component_ref idref="oc-71"/>
  2108. <object_component_ref idref="oc-fb"/>
  2109. <object_component_ref idref="oc-45"/>
  2110. <object_component_ref idref="oc-2f"/>
  2111. <object_component_ref idref="oc-6d"/>
  2112. <object_component_ref idref="oc-8e"/>
  2113. </contents>
  2114. </logical_group>
  2115. <logical_group id="lg-4" display="no" color="cyan">
  2116. <name>.const</name>
  2117. <run_address>0x0</run_address>
  2118. <size>0x0</size>
  2119. <contents>
  2120. </contents>
  2121. </logical_group>
  2122. <logical_group id="lg-5" display="no" color="cyan">
  2123. <name>.cinit</name>
  2124. <load_address>0x13c0</load_address>
  2125. <run_address>0x13c0</run_address>
  2126. <size>0x30</size>
  2127. <contents>
  2128. <object_component_ref idref="oc-144"/>
  2129. <object_component_ref idref="oc-147"/>
  2130. <object_component_ref idref="oc-146"/>
  2131. <object_component_ref idref="oc-145"/>
  2132. </contents>
  2133. </logical_group>
  2134. <logical_group id="lg-6" display="no" color="cyan">
  2135. <name>.pinit</name>
  2136. <run_address>0x0</run_address>
  2137. <size>0x0</size>
  2138. <contents>
  2139. </contents>
  2140. </logical_group>
  2141. <logical_group id="lg-7" display="no" color="cyan">
  2142. <name>.rodata</name>
  2143. <load_address>0x1298</load_address>
  2144. <run_address>0x1298</run_address>
  2145. <size>0x128</size>
  2146. <contents>
  2147. <object_component_ref idref="oc-f5"/>
  2148. <object_component_ref idref="oc-f2"/>
  2149. <object_component_ref idref="oc-f3"/>
  2150. <object_component_ref idref="oc-e0"/>
  2151. <object_component_ref idref="oc-f4"/>
  2152. <object_component_ref idref="oc-f6"/>
  2153. <object_component_ref idref="oc-e2"/>
  2154. <object_component_ref idref="oc-f1"/>
  2155. </contents>
  2156. </logical_group>
  2157. <logical_group id="lg-8" display="no" color="cyan">
  2158. <name>.ARM.exidx</name>
  2159. <run_address>0x0</run_address>
  2160. <size>0x0</size>
  2161. <contents>
  2162. </contents>
  2163. </logical_group>
  2164. <logical_group id="lg-9" display="no" color="cyan">
  2165. <name>.init_array</name>
  2166. <run_address>0x0</run_address>
  2167. <size>0x0</size>
  2168. <contents>
  2169. </contents>
  2170. </logical_group>
  2171. <logical_group id="lg-a" display="no" color="cyan">
  2172. <name>.binit</name>
  2173. <load_address>0x0</load_address>
  2174. <run_address>0x0</run_address>
  2175. <size>0x0</size>
  2176. <contents>
  2177. <object_component_ref idref="oc-10e"/>
  2178. </contents>
  2179. </logical_group>
  2180. <logical_group id="lg-b" display="no" color="cyan">
  2181. <name>.TI.ramfunc</name>
  2182. <run_address>0x0</run_address>
  2183. <size>0x0</size>
  2184. <contents>
  2185. </contents>
  2186. </logical_group>
  2187. <logical_group id="lg-c" display="no" color="cyan">
  2188. <name>.vtable</name>
  2189. <run_address>0x0</run_address>
  2190. <size>0x0</size>
  2191. <contents>
  2192. </contents>
  2193. </logical_group>
  2194. <logical_group id="lg-d" display="no" color="cyan">
  2195. <name>.args</name>
  2196. <run_address>0x0</run_address>
  2197. <size>0x0</size>
  2198. <contents>
  2199. </contents>
  2200. </logical_group>
  2201. <logical_group id="lg-e" display="no" color="cyan">
  2202. <name>.data</name>
  2203. <run_address>0x20200018</run_address>
  2204. <size>0x1</size>
  2205. <contents>
  2206. <object_component_ref idref="oc-d2"/>
  2207. </contents>
  2208. </logical_group>
  2209. <logical_group id="lg-f" display="no" color="cyan">
  2210. <name>.bss</name>
  2211. <run_address>0x20200000</run_address>
  2212. <size>0x15</size>
  2213. <contents>
  2214. <object_component_ref idref="oc-5c"/>
  2215. <object_component_ref idref="oc-63"/>
  2216. <object_component_ref idref="oc-62"/>
  2217. <object_component_ref idref="oc-b7"/>
  2218. <object_component_ref idref="oc-f7"/>
  2219. <object_component_ref idref="oc-b8"/>
  2220. </contents>
  2221. </logical_group>
  2222. <logical_group id="lg-10" display="no" color="cyan">
  2223. <name>.sysmem</name>
  2224. <run_address>0x0</run_address>
  2225. <size>0x0</size>
  2226. <contents>
  2227. </contents>
  2228. </logical_group>
  2229. <logical_group id="lg-11" display="no" color="cyan">
  2230. <name>.stack</name>
  2231. <run_address>0x20207e00</run_address>
  2232. <size>0x200</size>
  2233. <contents>
  2234. <object_component_ref idref="oc-1a"/>
  2235. <object_component_ref idref="oc-149"/>
  2236. </contents>
  2237. </logical_group>
  2238. <logical_group id="lg-12" display="no" color="cyan">
  2239. <name>.BCRConfig</name>
  2240. <run_address>0x0</run_address>
  2241. <size>0x0</size>
  2242. <contents>
  2243. </contents>
  2244. </logical_group>
  2245. <logical_group id="lg-13" display="no" color="cyan">
  2246. <name>.BSLConfig</name>
  2247. <run_address>0x0</run_address>
  2248. <size>0x0</size>
  2249. <contents>
  2250. </contents>
  2251. </logical_group>
  2252. <logical_group id="lg-105" display="no" color="cyan">
  2253. <name>.TI.noinit</name>
  2254. <run_address>0x0</run_address>
  2255. <size>0x0</size>
  2256. <contents>
  2257. </contents>
  2258. </logical_group>
  2259. <logical_group id="lg-106" display="no" color="cyan">
  2260. <name>.TI.persistent</name>
  2261. <run_address>0x0</run_address>
  2262. <size>0x0</size>
  2263. <contents>
  2264. </contents>
  2265. </logical_group>
  2266. <logical_group id="lg-107" display="no" color="cyan">
  2267. <name>.TI.local</name>
  2268. <run_address>0x0</run_address>
  2269. <size>0x0</size>
  2270. <contents>
  2271. </contents>
  2272. </logical_group>
  2273. <logical_group id="lg-108" display="no" color="cyan">
  2274. <name>.TI.onchip</name>
  2275. <run_address>0x0</run_address>
  2276. <size>0x0</size>
  2277. <contents>
  2278. </contents>
  2279. </logical_group>
  2280. <logical_group id="lg-109" display="no" color="cyan">
  2281. <name>.TI.offchip</name>
  2282. <run_address>0x0</run_address>
  2283. <size>0x0</size>
  2284. <contents>
  2285. </contents>
  2286. </logical_group>
  2287. <logical_group id="lg-10a" display="no" color="cyan">
  2288. <name>__llvm_prf_cnts</name>
  2289. <run_address>0x20200000</run_address>
  2290. <size>0x0</size>
  2291. <contents>
  2292. </contents>
  2293. </logical_group>
  2294. <logical_group id="lg-10c" display="no" color="cyan">
  2295. <name>__llvm_prf_bits</name>
  2296. <run_address>0x20200000</run_address>
  2297. <size>0x0</size>
  2298. <contents>
  2299. </contents>
  2300. </logical_group>
  2301. <logical_group id="lg-128" display="never" color="cyan">
  2302. <name>.debug_loc</name>
  2303. <load_address>0x0</load_address>
  2304. <run_address>0x0</run_address>
  2305. <size>0x8de</size>
  2306. <contents>
  2307. <object_component_ref idref="oc-7f"/>
  2308. <object_component_ref idref="oc-c9"/>
  2309. <object_component_ref idref="oc-40"/>
  2310. <object_component_ref idref="oc-9a"/>
  2311. <object_component_ref idref="oc-4d"/>
  2312. <object_component_ref idref="oc-4b"/>
  2313. <object_component_ref idref="oc-43"/>
  2314. <object_component_ref idref="oc-94"/>
  2315. </contents>
  2316. </logical_group>
  2317. <logical_group id="lg-12a" display="never" color="cyan">
  2318. <name>.debug_abbrev</name>
  2319. <load_address>0x0</load_address>
  2320. <run_address>0x0</run_address>
  2321. <size>0xb5c</size>
  2322. <contents>
  2323. <object_component_ref idref="oc-7c"/>
  2324. <object_component_ref idref="oc-5e"/>
  2325. <object_component_ref idref="oc-f8"/>
  2326. <object_component_ref idref="oc-d3"/>
  2327. <object_component_ref idref="oc-cc"/>
  2328. <object_component_ref idref="oc-3a"/>
  2329. <object_component_ref idref="oc-3c"/>
  2330. <object_component_ref idref="oc-bf"/>
  2331. <object_component_ref idref="oc-8a"/>
  2332. <object_component_ref idref="oc-66"/>
  2333. <object_component_ref idref="oc-49"/>
  2334. <object_component_ref idref="oc-41"/>
  2335. <object_component_ref idref="oc-b9"/>
  2336. <object_component_ref idref="oc-65"/>
  2337. <object_component_ref idref="oc-a7"/>
  2338. <object_component_ref idref="oc-14b"/>
  2339. </contents>
  2340. </logical_group>
  2341. <logical_group id="lg-12c" display="never" color="cyan">
  2342. <name>.debug_info</name>
  2343. <load_address>0x0</load_address>
  2344. <run_address>0x0</run_address>
  2345. <size>0x69a2</size>
  2346. <contents>
  2347. <object_component_ref idref="oc-5d"/>
  2348. <object_component_ref idref="oc-37"/>
  2349. <object_component_ref idref="oc-d0"/>
  2350. <object_component_ref idref="oc-b4"/>
  2351. <object_component_ref idref="oc-b0"/>
  2352. <object_component_ref idref="oc-19"/>
  2353. <object_component_ref idref="oc-1b"/>
  2354. <object_component_ref idref="oc-97"/>
  2355. <object_component_ref idref="oc-6e"/>
  2356. <object_component_ref idref="oc-50"/>
  2357. <object_component_ref idref="oc-21"/>
  2358. <object_component_ref idref="oc-1d"/>
  2359. <object_component_ref idref="oc-90"/>
  2360. <object_component_ref idref="oc-46"/>
  2361. <object_component_ref idref="oc-85"/>
  2362. <object_component_ref idref="oc-14a"/>
  2363. </contents>
  2364. </logical_group>
  2365. <logical_group id="lg-12e" display="never" color="cyan">
  2366. <name>.debug_str</name>
  2367. <load_address>0x0</load_address>
  2368. <run_address>0x0</run_address>
  2369. <size>0x4d3c</size>
  2370. <contents>
  2371. <object_component_ref idref="oc-7d"/>
  2372. <object_component_ref idref="oc-5f"/>
  2373. <object_component_ref idref="oc-f9"/>
  2374. <object_component_ref idref="oc-d4"/>
  2375. <object_component_ref idref="oc-cd"/>
  2376. <object_component_ref idref="oc-3b"/>
  2377. <object_component_ref idref="oc-3d"/>
  2378. <object_component_ref idref="oc-c0"/>
  2379. <object_component_ref idref="oc-8b"/>
  2380. <object_component_ref idref="oc-67"/>
  2381. <object_component_ref idref="oc-4a"/>
  2382. <object_component_ref idref="oc-42"/>
  2383. <object_component_ref idref="oc-ba"/>
  2384. </contents>
  2385. </logical_group>
  2386. <logical_group id="lg-130" display="never" color="cyan">
  2387. <name>.debug_frame</name>
  2388. <load_address>0x0</load_address>
  2389. <run_address>0x0</run_address>
  2390. <size>0x3f8</size>
  2391. <contents>
  2392. <object_component_ref idref="oc-8d"/>
  2393. <object_component_ref idref="oc-35"/>
  2394. <object_component_ref idref="oc-d1"/>
  2395. <object_component_ref idref="oc-b6"/>
  2396. <object_component_ref idref="oc-b1"/>
  2397. <object_component_ref idref="oc-31"/>
  2398. <object_component_ref idref="oc-54"/>
  2399. <object_component_ref idref="oc-96"/>
  2400. <object_component_ref idref="oc-6f"/>
  2401. <object_component_ref idref="oc-51"/>
  2402. <object_component_ref idref="oc-22"/>
  2403. <object_component_ref idref="oc-1f"/>
  2404. <object_component_ref idref="oc-8f"/>
  2405. </contents>
  2406. </logical_group>
  2407. <logical_group id="lg-132" display="never" color="cyan">
  2408. <name>.debug_line</name>
  2409. <load_address>0x0</load_address>
  2410. <run_address>0x0</run_address>
  2411. <size>0x1957</size>
  2412. <contents>
  2413. <object_component_ref idref="oc-7e"/>
  2414. <object_component_ref idref="oc-36"/>
  2415. <object_component_ref idref="oc-cf"/>
  2416. <object_component_ref idref="oc-b5"/>
  2417. <object_component_ref idref="oc-af"/>
  2418. <object_component_ref idref="oc-32"/>
  2419. <object_component_ref idref="oc-3e"/>
  2420. <object_component_ref idref="oc-98"/>
  2421. <object_component_ref idref="oc-70"/>
  2422. <object_component_ref idref="oc-4e"/>
  2423. <object_component_ref idref="oc-23"/>
  2424. <object_component_ref idref="oc-1e"/>
  2425. <object_component_ref idref="oc-92"/>
  2426. <object_component_ref idref="oc-48"/>
  2427. <object_component_ref idref="oc-84"/>
  2428. </contents>
  2429. </logical_group>
  2430. <logical_group id="lg-134" display="never" color="cyan">
  2431. <name>.debug_ranges</name>
  2432. <load_address>0x0</load_address>
  2433. <run_address>0x0</run_address>
  2434. <size>0x1a8</size>
  2435. <contents>
  2436. <object_component_ref idref="oc-38"/>
  2437. <object_component_ref idref="oc-b2"/>
  2438. <object_component_ref idref="oc-30"/>
  2439. <object_component_ref idref="oc-3f"/>
  2440. <object_component_ref idref="oc-99"/>
  2441. <object_component_ref idref="oc-4f"/>
  2442. <object_component_ref idref="oc-44"/>
  2443. <object_component_ref idref="oc-91"/>
  2444. <object_component_ref idref="oc-86"/>
  2445. </contents>
  2446. </logical_group>
  2447. <logical_group id="lg-13e" display="never" color="cyan">
  2448. <name>.debug_aranges</name>
  2449. <load_address>0x0</load_address>
  2450. <run_address>0x0</run_address>
  2451. <size>0x48</size>
  2452. <contents>
  2453. <object_component_ref idref="oc-47"/>
  2454. <object_component_ref idref="oc-83"/>
  2455. </contents>
  2456. </logical_group>
  2457. <logical_group id="lg-148" display="no" color="cyan">
  2458. <name>Veneer$$CMSE</name>
  2459. <run_address>0x0</run_address>
  2460. <size>0x0</size>
  2461. <contents>
  2462. </contents>
  2463. </logical_group>
  2464. <load_segment id="lg-154" display="no" color="cyan">
  2465. <name>SEGMENT_0</name>
  2466. <load_address>0x0</load_address>
  2467. <run_address>0x0</run_address>
  2468. <size>0x13f0</size>
  2469. <flags>0x5</flags>
  2470. <contents>
  2471. <logical_group_ref idref="lg-2"/>
  2472. <logical_group_ref idref="lg-3"/>
  2473. <logical_group_ref idref="lg-7"/>
  2474. <logical_group_ref idref="lg-5"/>
  2475. </contents>
  2476. </load_segment>
  2477. <load_segment id="lg-155" display="no" color="cyan">
  2478. <name>SEGMENT_1</name>
  2479. <run_address>0x20200000</run_address>
  2480. <size>0x19</size>
  2481. <flags>0x6</flags>
  2482. <contents>
  2483. <logical_group_ref idref="lg-f"/>
  2484. <logical_group_ref idref="lg-e"/>
  2485. </contents>
  2486. </load_segment>
  2487. <load_segment id="lg-156" display="no" color="cyan">
  2488. <name>SEGMENT_2</name>
  2489. <run_address>0x20207e00</run_address>
  2490. <size>0x200</size>
  2491. <flags>0x6</flags>
  2492. <contents>
  2493. <logical_group_ref idref="lg-11"/>
  2494. </contents>
  2495. </load_segment>
  2496. </logical_group_list>
  2497. <placement_map>
  2498. <memory_area display="yes" color="green">
  2499. <name>FLASH</name>
  2500. <page_id>0x0</page_id>
  2501. <origin>0x0</origin>
  2502. <length>0x20000</length>
  2503. <used_space>0x13f0</used_space>
  2504. <unused_space>0x1ec10</unused_space>
  2505. <attributes>RX</attributes>
  2506. <usage_details>
  2507. <allocated_space>
  2508. <start_address>0x0</start_address>
  2509. <size>0x0</size>
  2510. <logical_group_ref idref="lg-a"/>
  2511. </allocated_space>
  2512. <allocated_space>
  2513. <start_address>0x0</start_address>
  2514. <size>0xc0</size>
  2515. <logical_group_ref idref="lg-2"/>
  2516. </allocated_space>
  2517. <allocated_space>
  2518. <start_address>0xc0</start_address>
  2519. <size>0x11d8</size>
  2520. <logical_group_ref idref="lg-3"/>
  2521. </allocated_space>
  2522. <allocated_space>
  2523. <start_address>0x1298</start_address>
  2524. <size>0x128</size>
  2525. <logical_group_ref idref="lg-7"/>
  2526. </allocated_space>
  2527. <allocated_space>
  2528. <start_address>0x13c0</start_address>
  2529. <size>0x30</size>
  2530. <logical_group_ref idref="lg-5"/>
  2531. </allocated_space>
  2532. <available_space>
  2533. <start_address>0x13f0</start_address>
  2534. <size>0x1ec10</size>
  2535. </available_space>
  2536. </usage_details>
  2537. </memory_area>
  2538. <memory_area display="yes" color="green">
  2539. <name>SRAM</name>
  2540. <page_id>0x0</page_id>
  2541. <origin>0x20200000</origin>
  2542. <length>0x8000</length>
  2543. <used_space>0x216</used_space>
  2544. <unused_space>0x7dea</unused_space>
  2545. <attributes>RWX</attributes>
  2546. <usage_details>
  2547. <allocated_space>
  2548. <start_address>0x20200000</start_address>
  2549. <size>0x0</size>
  2550. <logical_group_ref idref="lg-10a"/>
  2551. </allocated_space>
  2552. <allocated_space>
  2553. <start_address>0x20200000</start_address>
  2554. <size>0x0</size>
  2555. <logical_group_ref idref="lg-10c"/>
  2556. </allocated_space>
  2557. <allocated_space>
  2558. <start_address>0x20200000</start_address>
  2559. <size>0x15</size>
  2560. <logical_group_ref idref="lg-f"/>
  2561. </allocated_space>
  2562. <available_space>
  2563. <start_address>0x20200015</start_address>
  2564. <size>0x3</size>
  2565. </available_space>
  2566. <allocated_space>
  2567. <start_address>0x20200018</start_address>
  2568. <size>0x1</size>
  2569. <logical_group_ref idref="lg-e"/>
  2570. </allocated_space>
  2571. <available_space>
  2572. <start_address>0x20200019</start_address>
  2573. <size>0x7de7</size>
  2574. </available_space>
  2575. <allocated_space>
  2576. <start_address>0x20207e00</start_address>
  2577. <size>0x200</size>
  2578. <logical_group_ref idref="lg-11"/>
  2579. </allocated_space>
  2580. </usage_details>
  2581. </memory_area>
  2582. <memory_area display="yes" color="green">
  2583. <name>BCR_CONFIG</name>
  2584. <page_id>0x0</page_id>
  2585. <origin>0x41c00000</origin>
  2586. <length>0x80</length>
  2587. <used_space>0x0</used_space>
  2588. <unused_space>0x80</unused_space>
  2589. <attributes>R</attributes>
  2590. <usage_details>
  2591. </usage_details>
  2592. </memory_area>
  2593. <memory_area display="yes" color="green">
  2594. <name>BSL_CONFIG</name>
  2595. <page_id>0x0</page_id>
  2596. <origin>0x41c00100</origin>
  2597. <length>0x80</length>
  2598. <used_space>0x0</used_space>
  2599. <unused_space>0x80</unused_space>
  2600. <attributes>R</attributes>
  2601. <usage_details>
  2602. </usage_details>
  2603. </memory_area>
  2604. </placement_map>
  2605. <cptbl_list>
  2606. <cptbl>
  2607. <name>__TI_cinit_table</name>
  2608. <cprec>
  2609. <name>.bss</name>
  2610. <load_address>0x13cc</load_address>
  2611. <load_size>0x8</load_size>
  2612. <run_address>0x20200000</run_address>
  2613. <run_size>0x15</run_size>
  2614. <compression>zero_init</compression>
  2615. </cprec>
  2616. <cprec>
  2617. <name>.data</name>
  2618. <load_address>0x13d4</load_address>
  2619. <load_size>0x5</load_size>
  2620. <run_address>0x20200018</run_address>
  2621. <run_size>0x1</run_size>
  2622. <compression>lzss</compression>
  2623. </cprec>
  2624. </cptbl>
  2625. </cptbl_list>
  2626. <handler_table>
  2627. <handler_table_name>__TI_handler_table</handler_table_name>
  2628. <handler>
  2629. <index>0x0</index>
  2630. <name>__TI_decompress_lzss</name>
  2631. </handler>
  2632. <handler>
  2633. <index>0x1</index>
  2634. <name>__TI_decompress_none</name>
  2635. </handler>
  2636. <handler>
  2637. <index>0x2</index>
  2638. <name>__TI_zero_init</name>
  2639. </handler>
  2640. </handler_table>
  2641. <symbol_table>
  2642. <symbol id="sm-1">
  2643. <name>__start___llvm_prf_cnts</name>
  2644. <value>0x20200000</value>
  2645. </symbol>
  2646. <symbol id="sm-2">
  2647. <name>__stop___llvm_prf_cnts</name>
  2648. <value>0x20200000</value>
  2649. </symbol>
  2650. <symbol id="sm-3">
  2651. <name>__start___llvm_prf_bits</name>
  2652. <value>0x20200000</value>
  2653. </symbol>
  2654. <symbol id="sm-4">
  2655. <name>__stop___llvm_prf_bits</name>
  2656. <value>0x20200000</value>
  2657. </symbol>
  2658. <symbol id="sm-5">
  2659. <name>__TI_CINIT_Base</name>
  2660. <value>0x13dc</value>
  2661. </symbol>
  2662. <symbol id="sm-6">
  2663. <name>__TI_CINIT_Limit</name>
  2664. <value>0x13ec</value>
  2665. </symbol>
  2666. <symbol id="sm-7">
  2667. <name>__TI_CINIT_Warm</name>
  2668. <value>0x13ec</value>
  2669. </symbol>
  2670. <symbol id="sm-8">
  2671. <name>__TI_Handler_Table_Base</name>
  2672. <value>0x13c0</value>
  2673. </symbol>
  2674. <symbol id="sm-9">
  2675. <name>__TI_Handler_Table_Limit</name>
  2676. <value>0x13cc</value>
  2677. </symbol>
  2678. <symbol id="sm-a">
  2679. <name>binit</name>
  2680. <value>0xffffffff</value>
  2681. </symbol>
  2682. <symbol id="sm-b">
  2683. <name>__binit__</name>
  2684. <value>0xffffffff</value>
  2685. </symbol>
  2686. <symbol id="sm-c">
  2687. <name>__STACK_SIZE</name>
  2688. <value>0x200</value>
  2689. </symbol>
  2690. <symbol id="sm-d">
  2691. <name>__STACK_END</name>
  2692. <value>0x20208000</value>
  2693. </symbol>
  2694. <symbol id="sm-e">
  2695. <name>__TI_pprof_out_hndl</name>
  2696. <value>0xffffffff</value>
  2697. </symbol>
  2698. <symbol id="sm-f">
  2699. <name>__TI_prof_data_start</name>
  2700. <value>0xffffffff</value>
  2701. </symbol>
  2702. <symbol id="sm-10">
  2703. <name>__TI_prof_data_size</name>
  2704. <value>0xffffffff</value>
  2705. </symbol>
  2706. <symbol id="sm-3c">
  2707. <name>Init</name>
  2708. <value>0xdf1</value>
  2709. <object_component_ref idref="oc-8c"/>
  2710. </symbol>
  2711. <symbol id="sm-3d">
  2712. <name>gCheckADC</name>
  2713. <value>0x20200013</value>
  2714. </symbol>
  2715. <symbol id="sm-3e">
  2716. <name>gServiceInt</name>
  2717. <value>0x20200014</value>
  2718. </symbol>
  2719. <symbol id="sm-3f">
  2720. <name>gInterruptLine1Status</name>
  2721. <value>0x2020000c</value>
  2722. </symbol>
  2723. <symbol id="sm-40">
  2724. <name>OverheatingThreshold</name>
  2725. <value>0x20200010</value>
  2726. </symbol>
  2727. <symbol id="sm-41">
  2728. <name>DeviceUID</name>
  2729. <value>0x20200000</value>
  2730. </symbol>
  2731. <symbol id="sm-50">
  2732. <name>main</name>
  2733. <value>0x1265</value>
  2734. <object_component_ref idref="oc-71"/>
  2735. </symbol>
  2736. <symbol id="sm-51">
  2737. <name>ADC0_IRQHandler</name>
  2738. <value>0x1145</value>
  2739. <object_component_ref idref="oc-34"/>
  2740. </symbol>
  2741. <symbol id="sm-52">
  2742. <name>CANFD0_IRQHandler</name>
  2743. <value>0xe39</value>
  2744. <object_component_ref idref="oc-39"/>
  2745. </symbol>
  2746. <symbol id="sm-53">
  2747. <name>CurrentMode</name>
  2748. <value>0x20200012</value>
  2749. </symbol>
  2750. <symbol id="sm-61">
  2751. <name>GetDeviceUID</name>
  2752. <value>0x117d</value>
  2753. <object_component_ref idref="oc-ce"/>
  2754. </symbol>
  2755. <symbol id="sm-6c">
  2756. <name>initializeDeviceID</name>
  2757. <value>0x11c9</value>
  2758. <object_component_ref idref="oc-b3"/>
  2759. </symbol>
  2760. <symbol id="sm-97">
  2761. <name>SYSCFG_DL_init</name>
  2762. <value>0x11b1</value>
  2763. <object_component_ref idref="oc-ae"/>
  2764. </symbol>
  2765. <symbol id="sm-98">
  2766. <name>SYSCFG_DL_initPower</name>
  2767. <value>0xeb9</value>
  2768. <object_component_ref idref="oc-c6"/>
  2769. </symbol>
  2770. <symbol id="sm-99">
  2771. <name>SYSCFG_DL_GPIO_init</name>
  2772. <value>0xda5</value>
  2773. <object_component_ref idref="oc-c7"/>
  2774. </symbol>
  2775. <symbol id="sm-9a">
  2776. <name>SYSCFG_DL_SYSCTL_init</name>
  2777. <value>0xef9</value>
  2778. <object_component_ref idref="oc-c8"/>
  2779. </symbol>
  2780. <symbol id="sm-9b">
  2781. <name>SYSCFG_DL_ADC12_0_init</name>
  2782. <value>0xc51</value>
  2783. <object_component_ref idref="oc-ca"/>
  2784. </symbol>
  2785. <symbol id="sm-9c">
  2786. <name>SYSCFG_DL_MCAN0_init</name>
  2787. <value>0x75d</value>
  2788. <object_component_ref idref="oc-cb"/>
  2789. </symbol>
  2790. <symbol id="sm-a7">
  2791. <name>Default_Handler</name>
  2792. <value>0x9ff</value>
  2793. <object_component_ref idref="oc-33"/>
  2794. </symbol>
  2795. <symbol id="sm-a8">
  2796. <name>Reset_Handler</name>
  2797. <value>0x1289</value>
  2798. <object_component_ref idref="oc-2f"/>
  2799. </symbol>
  2800. <symbol id="sm-a9">
  2801. <name>interruptVectors</name>
  2802. <value>0x0</value>
  2803. <object_component_ref idref="oc-18"/>
  2804. </symbol>
  2805. <symbol id="sm-aa">
  2806. <name>NMI_Handler</name>
  2807. <value>0x9ff</value>
  2808. <object_component_ref idref="oc-33"/>
  2809. </symbol>
  2810. <symbol id="sm-ab">
  2811. <name>HardFault_Handler</name>
  2812. <value>0x9ff</value>
  2813. <object_component_ref idref="oc-33"/>
  2814. </symbol>
  2815. <symbol id="sm-ac">
  2816. <name>SVC_Handler</name>
  2817. <value>0x9ff</value>
  2818. <object_component_ref idref="oc-33"/>
  2819. </symbol>
  2820. <symbol id="sm-ad">
  2821. <name>PendSV_Handler</name>
  2822. <value>0x9ff</value>
  2823. <object_component_ref idref="oc-33"/>
  2824. </symbol>
  2825. <symbol id="sm-ae">
  2826. <name>SysTick_Handler</name>
  2827. <value>0x9ff</value>
  2828. <object_component_ref idref="oc-33"/>
  2829. </symbol>
  2830. <symbol id="sm-af">
  2831. <name>GROUP0_IRQHandler</name>
  2832. <value>0x9ff</value>
  2833. <object_component_ref idref="oc-33"/>
  2834. </symbol>
  2835. <symbol id="sm-b0">
  2836. <name>GROUP1_IRQHandler</name>
  2837. <value>0x9ff</value>
  2838. <object_component_ref idref="oc-33"/>
  2839. </symbol>
  2840. <symbol id="sm-b1">
  2841. <name>TIMG8_IRQHandler</name>
  2842. <value>0x9ff</value>
  2843. <object_component_ref idref="oc-33"/>
  2844. </symbol>
  2845. <symbol id="sm-b2">
  2846. <name>UART3_IRQHandler</name>
  2847. <value>0x9ff</value>
  2848. <object_component_ref idref="oc-33"/>
  2849. </symbol>
  2850. <symbol id="sm-b3">
  2851. <name>ADC1_IRQHandler</name>
  2852. <value>0x9ff</value>
  2853. <object_component_ref idref="oc-33"/>
  2854. </symbol>
  2855. <symbol id="sm-b4">
  2856. <name>DAC0_IRQHandler</name>
  2857. <value>0x9ff</value>
  2858. <object_component_ref idref="oc-33"/>
  2859. </symbol>
  2860. <symbol id="sm-b5">
  2861. <name>SPI0_IRQHandler</name>
  2862. <value>0x9ff</value>
  2863. <object_component_ref idref="oc-33"/>
  2864. </symbol>
  2865. <symbol id="sm-b6">
  2866. <name>SPI1_IRQHandler</name>
  2867. <value>0x9ff</value>
  2868. <object_component_ref idref="oc-33"/>
  2869. </symbol>
  2870. <symbol id="sm-b7">
  2871. <name>UART1_IRQHandler</name>
  2872. <value>0x9ff</value>
  2873. <object_component_ref idref="oc-33"/>
  2874. </symbol>
  2875. <symbol id="sm-b8">
  2876. <name>UART2_IRQHandler</name>
  2877. <value>0x9ff</value>
  2878. <object_component_ref idref="oc-33"/>
  2879. </symbol>
  2880. <symbol id="sm-b9">
  2881. <name>UART0_IRQHandler</name>
  2882. <value>0x9ff</value>
  2883. <object_component_ref idref="oc-33"/>
  2884. </symbol>
  2885. <symbol id="sm-ba">
  2886. <name>TIMG0_IRQHandler</name>
  2887. <value>0x9ff</value>
  2888. <object_component_ref idref="oc-33"/>
  2889. </symbol>
  2890. <symbol id="sm-bb">
  2891. <name>TIMG6_IRQHandler</name>
  2892. <value>0x9ff</value>
  2893. <object_component_ref idref="oc-33"/>
  2894. </symbol>
  2895. <symbol id="sm-bc">
  2896. <name>TIMA0_IRQHandler</name>
  2897. <value>0x9ff</value>
  2898. <object_component_ref idref="oc-33"/>
  2899. </symbol>
  2900. <symbol id="sm-bd">
  2901. <name>TIMA1_IRQHandler</name>
  2902. <value>0x9ff</value>
  2903. <object_component_ref idref="oc-33"/>
  2904. </symbol>
  2905. <symbol id="sm-be">
  2906. <name>TIMG7_IRQHandler</name>
  2907. <value>0x9ff</value>
  2908. <object_component_ref idref="oc-33"/>
  2909. </symbol>
  2910. <symbol id="sm-bf">
  2911. <name>TIMG12_IRQHandler</name>
  2912. <value>0x9ff</value>
  2913. <object_component_ref idref="oc-33"/>
  2914. </symbol>
  2915. <symbol id="sm-c0">
  2916. <name>I2C0_IRQHandler</name>
  2917. <value>0x9ff</value>
  2918. <object_component_ref idref="oc-33"/>
  2919. </symbol>
  2920. <symbol id="sm-c1">
  2921. <name>I2C1_IRQHandler</name>
  2922. <value>0x9ff</value>
  2923. <object_component_ref idref="oc-33"/>
  2924. </symbol>
  2925. <symbol id="sm-c2">
  2926. <name>AES_IRQHandler</name>
  2927. <value>0x9ff</value>
  2928. <object_component_ref idref="oc-33"/>
  2929. </symbol>
  2930. <symbol id="sm-c3">
  2931. <name>RTC_IRQHandler</name>
  2932. <value>0x9ff</value>
  2933. <object_component_ref idref="oc-33"/>
  2934. </symbol>
  2935. <symbol id="sm-c4">
  2936. <name>DMA_IRQHandler</name>
  2937. <value>0x9ff</value>
  2938. <object_component_ref idref="oc-33"/>
  2939. </symbol>
  2940. <symbol id="sm-c5">
  2941. <name>__TI_ATRegion0_src_addr</name>
  2942. <value>0x0</value>
  2943. </symbol>
  2944. <symbol id="sm-c6">
  2945. <name>__TI_ATRegion0_trg_addr</name>
  2946. <value>0x0</value>
  2947. </symbol>
  2948. <symbol id="sm-c7">
  2949. <name>__TI_ATRegion0_region_sz</name>
  2950. <value>0x0</value>
  2951. </symbol>
  2952. <symbol id="sm-c8">
  2953. <name>__TI_ATRegion1_src_addr</name>
  2954. <value>0x0</value>
  2955. </symbol>
  2956. <symbol id="sm-c9">
  2957. <name>__TI_ATRegion1_trg_addr</name>
  2958. <value>0x0</value>
  2959. </symbol>
  2960. <symbol id="sm-ca">
  2961. <name>__TI_ATRegion1_region_sz</name>
  2962. <value>0x0</value>
  2963. </symbol>
  2964. <symbol id="sm-cb">
  2965. <name>__TI_ATRegion2_src_addr</name>
  2966. <value>0x0</value>
  2967. </symbol>
  2968. <symbol id="sm-cc">
  2969. <name>__TI_ATRegion2_trg_addr</name>
  2970. <value>0x0</value>
  2971. </symbol>
  2972. <symbol id="sm-cd">
  2973. <name>__TI_ATRegion2_region_sz</name>
  2974. <value>0x0</value>
  2975. </symbol>
  2976. <symbol id="sm-d3">
  2977. <name>DL_ADC12_setClockConfig</name>
  2978. <value>0xd0d</value>
  2979. <object_component_ref idref="oc-e1"/>
  2980. </symbol>
  2981. <symbol id="sm-d6">
  2982. <name>DL_Common_delayCycles</name>
  2983. <value>0x11f7</value>
  2984. <object_component_ref idref="oc-de"/>
  2985. </symbol>
  2986. <symbol id="sm-108">
  2987. <name>DL_MCAN_setClockConfig</name>
  2988. <value>0xfd9</value>
  2989. <object_component_ref idref="oc-e3"/>
  2990. </symbol>
  2991. <symbol id="sm-109">
  2992. <name>DL_MCAN_isMemInitDone</name>
  2993. <value>0xe79</value>
  2994. <object_component_ref idref="oc-e5"/>
  2995. </symbol>
  2996. <symbol id="sm-10a">
  2997. <name>DL_MCAN_setOpMode</name>
  2998. <value>0x10c5</value>
  2999. <object_component_ref idref="oc-e6"/>
  3000. </symbol>
  3001. <symbol id="sm-10b">
  3002. <name>DL_MCAN_getOpMode</name>
  3003. <value>0x1161</value>
  3004. <object_component_ref idref="oc-e7"/>
  3005. </symbol>
  3006. <symbol id="sm-10c">
  3007. <name>DL_MCAN_init</name>
  3008. <value>0x369</value>
  3009. <object_component_ref idref="oc-e8"/>
  3010. </symbol>
  3011. <symbol id="sm-10d">
  3012. <name>DL_MCAN_config</name>
  3013. <value>0x631</value>
  3014. <object_component_ref idref="oc-e9"/>
  3015. </symbol>
  3016. <symbol id="sm-10e">
  3017. <name>DL_MCAN_setBitTime</name>
  3018. <value>0x4ed</value>
  3019. <object_component_ref idref="oc-ea"/>
  3020. </symbol>
  3021. <symbol id="sm-10f">
  3022. <name>DL_MCAN_msgRAMConfig</name>
  3023. <value>0xc1</value>
  3024. <object_component_ref idref="oc-eb"/>
  3025. </symbol>
  3026. <symbol id="sm-110">
  3027. <name>DL_MCAN_setExtIDAndMask</name>
  3028. <value>0xd59</value>
  3029. <object_component_ref idref="oc-ed"/>
  3030. </symbol>
  3031. <symbol id="sm-111">
  3032. <name>DL_MCAN_addStdMsgIDFilter</name>
  3033. <value>0xb11</value>
  3034. <object_component_ref idref="oc-ec"/>
  3035. </symbol>
  3036. <symbol id="sm-112">
  3037. <name>DL_MCAN_enableIntr</name>
  3038. <value>0xb85</value>
  3039. <object_component_ref idref="oc-ee"/>
  3040. </symbol>
  3041. <symbol id="sm-113">
  3042. <name>DL_MCAN_selectIntrLine</name>
  3043. <value>0xbed</value>
  3044. <object_component_ref idref="oc-ef"/>
  3045. </symbol>
  3046. <symbol id="sm-114">
  3047. <name>DL_MCAN_enableIntrLine</name>
  3048. <value>0xcb5</value>
  3049. <object_component_ref idref="oc-f0"/>
  3050. </symbol>
  3051. <symbol id="sm-115">
  3052. <name>DL_MCAN_getIntrStatus</name>
  3053. <value>0x1199</value>
  3054. <object_component_ref idref="oc-60"/>
  3055. </symbol>
  3056. <symbol id="sm-116">
  3057. <name>DL_MCAN_clearIntrStatus</name>
  3058. <value>0xf71</value>
  3059. <object_component_ref idref="oc-61"/>
  3060. </symbol>
  3061. <symbol id="sm-117">
  3062. <name>DL_MCAN_getRevisionId</name>
  3063. <value>0xa01</value>
  3064. <object_component_ref idref="oc-e4"/>
  3065. </symbol>
  3066. <symbol id="sm-129">
  3067. <name>DL_SYSCTL_configSYSPLL</name>
  3068. <value>0x879</value>
  3069. <object_component_ref idref="oc-df"/>
  3070. </symbol>
  3071. <symbol id="sm-139">
  3072. <name>_c_int00_noargs</name>
  3073. <value>0x107d</value>
  3074. <object_component_ref idref="oc-55"/>
  3075. </symbol>
  3076. <symbol id="sm-13a">
  3077. <name>__stack</name>
  3078. <value>0x20207e00</value>
  3079. <object_component_ref idref="oc-1a"/>
  3080. </symbol>
  3081. <symbol id="sm-146">
  3082. <name>__TI_auto_init_nobinit_nopinit</name>
  3083. <value>0xf35</value>
  3084. <object_component_ref idref="oc-95"/>
  3085. </symbol>
  3086. <symbol id="sm-14e">
  3087. <name>_system_pre_init</name>
  3088. <value>0x128d</value>
  3089. <object_component_ref idref="oc-6d"/>
  3090. </symbol>
  3091. <symbol id="sm-159">
  3092. <name>__TI_zero_init_nomemset</name>
  3093. <value>0x11e1</value>
  3094. <object_component_ref idref="oc-4c"/>
  3095. </symbol>
  3096. <symbol id="sm-162">
  3097. <name>__TI_decompress_none</name>
  3098. <value>0x1221</value>
  3099. <object_component_ref idref="oc-20"/>
  3100. </symbol>
  3101. <symbol id="sm-16d">
  3102. <name>__TI_decompress_lzss</name>
  3103. <value>0xa95</value>
  3104. <object_component_ref idref="oc-1c"/>
  3105. </symbol>
  3106. <symbol id="sm-17c">
  3107. <name>abort</name>
  3108. <value>0x1291</value>
  3109. <object_component_ref idref="oc-8e"/>
  3110. </symbol>
  3111. <symbol id="sm-17d">
  3112. <name>C$$EXIT</name>
  3113. <value>0x1290</value>
  3114. <object_component_ref idref="oc-8e"/>
  3115. </symbol>
  3116. <symbol id="sm-19e">
  3117. <name>__aeabi_memcpy</name>
  3118. <value>0x1281</value>
  3119. <object_component_ref idref="oc-45"/>
  3120. </symbol>
  3121. <symbol id="sm-19f">
  3122. <name>__aeabi_memcpy4</name>
  3123. <value>0x1281</value>
  3124. <object_component_ref idref="oc-45"/>
  3125. </symbol>
  3126. <symbol id="sm-1a0">
  3127. <name>__aeabi_memcpy8</name>
  3128. <value>0x1281</value>
  3129. <object_component_ref idref="oc-45"/>
  3130. </symbol>
  3131. <symbol id="sm-1bc">
  3132. <name>memcpy</name>
  3133. <value>0x965</value>
  3134. <object_component_ref idref="oc-87"/>
  3135. </symbol>
  3136. <symbol id="sm-1bd">
  3137. <name>__TI_static_base__</name>
  3138. <value>0x0</value>
  3139. </symbol>
  3140. <symbol id="sm-1c0">
  3141. <name>__mpu_init</name>
  3142. <value>0x0</value>
  3143. </symbol>
  3144. <symbol id="sm-1c1">
  3145. <name>_system_post_cinit</name>
  3146. <value>0x0</value>
  3147. </symbol>
  3148. </symbol_table>
  3149. <title>Link successful</title>
  3150. </link_info>