charge_controller_v7_linkInfo.xml 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <link_info>
  3. <banner>TI ARM Clang Linker Unix v4.0.0.LTS</banner>
  4. <copyright>Copyright (c) 1996-2018 Texas Instruments Incorporated</copyright>
  5. <command_line>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/bin/tiarmlnk -I/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib -o charge_controller_v7.out -mcharge_controller_v7.map -i/home/ngosh/ti/mspm0_sdk_2_03_00_07/source -i/home/ngosh/workspace_ccstheia/charge_controller_v7 -i/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/syscfg -i/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib --diag_wrap=off --display_error_number --warn_sections --xml_link_info=charge_controller_v7_linkInfo.xml --rom_model ./i2c_controller.o ./ti_msp_dl_config.o ./startup_mspm0g350x_ticlang.o ./ti/comm_modules/i2c/controller/i2c_comm_controller.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>0x67aefc3c</link_time>
  7. <link_errors>0x0</link_errors>
  8. <output_file>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/charge_controller_v7.out</output_file>
  9. <entry_point>
  10. <name>_c_int00_noargs</name>
  11. <address>0x70d</address>
  12. </entry_point>
  13. <input_file_list>
  14. <input_file id="fl-1">
  15. <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./</path>
  16. <kind>object</kind>
  17. <file>i2c_controller.o</file>
  18. <name>i2c_controller.o</name>
  19. </input_file>
  20. <input_file id="fl-2">
  21. <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./</path>
  22. <kind>object</kind>
  23. <file>ti_msp_dl_config.o</file>
  24. <name>ti_msp_dl_config.o</name>
  25. </input_file>
  26. <input_file id="fl-3">
  27. <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./</path>
  28. <kind>object</kind>
  29. <file>startup_mspm0g350x_ticlang.o</file>
  30. <name>startup_mspm0g350x_ticlang.o</name>
  31. </input_file>
  32. <input_file id="fl-4">
  33. <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./ti/comm_modules/i2c/controller/</path>
  34. <kind>object</kind>
  35. <file>i2c_comm_controller.o</file>
  36. <name>i2c_comm_controller.o</name>
  37. </input_file>
  38. <input_file id="fl-11">
  39. <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/</path>
  40. <kind>object</kind>
  41. <file>&lt;internal&gt;</file>
  42. <name>&lt;internal&gt;</name>
  43. </input_file>
  44. <input_file id="fl-12">
  45. <path>/home/ngosh/ti/mspm0_sdk_2_03_00_07/source/ti/driverlib/lib/ticlang/m0p/mspm0g1x0x_g3x0x/</path>
  46. <kind>archive</kind>
  47. <file>driverlib.a</file>
  48. <name>dl_common.o</name>
  49. </input_file>
  50. <input_file id="fl-13">
  51. <path>/home/ngosh/ti/mspm0_sdk_2_03_00_07/source/ti/driverlib/lib/ticlang/m0p/mspm0g1x0x_g3x0x/</path>
  52. <kind>archive</kind>
  53. <file>driverlib.a</file>
  54. <name>dl_crc.o</name>
  55. </input_file>
  56. <input_file id="fl-14">
  57. <path>/home/ngosh/ti/mspm0_sdk_2_03_00_07/source/ti/driverlib/lib/ticlang/m0p/mspm0g1x0x_g3x0x/</path>
  58. <kind>archive</kind>
  59. <file>driverlib.a</file>
  60. <name>dl_i2c.o</name>
  61. </input_file>
  62. <input_file id="fl-29">
  63. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  64. <kind>archive</kind>
  65. <file>libc.a</file>
  66. <name>copy_zero_init.c.obj</name>
  67. </input_file>
  68. <input_file id="fl-2a">
  69. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  70. <kind>archive</kind>
  71. <file>libc.a</file>
  72. <name>copy_decompress_none.c.obj</name>
  73. </input_file>
  74. <input_file id="fl-2b">
  75. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  76. <kind>archive</kind>
  77. <file>libc.a</file>
  78. <name>copy_decompress_lzss.c.obj</name>
  79. </input_file>
  80. <input_file id="fl-2c">
  81. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  82. <kind>archive</kind>
  83. <file>libc.a</file>
  84. <name>boot_cortex_m.c.obj</name>
  85. </input_file>
  86. <input_file id="fl-2d">
  87. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  88. <kind>archive</kind>
  89. <file>libc.a</file>
  90. <name>mathacl_init.c.obj</name>
  91. </input_file>
  92. <input_file id="fl-2e">
  93. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  94. <kind>archive</kind>
  95. <file>libc.a</file>
  96. <name>exit.c.obj</name>
  97. </input_file>
  98. <input_file id="fl-2f">
  99. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  100. <kind>archive</kind>
  101. <file>libc.a</file>
  102. <name>_lock.c.obj</name>
  103. </input_file>
  104. <input_file id="fl-30">
  105. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  106. <kind>archive</kind>
  107. <file>libc.a</file>
  108. <name>args_main.c.obj</name>
  109. </input_file>
  110. <input_file id="fl-31">
  111. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  112. <kind>archive</kind>
  113. <file>libc.a</file>
  114. <name>autoinit.c.obj</name>
  115. </input_file>
  116. <input_file id="fl-32">
  117. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
  118. <kind>archive</kind>
  119. <file>libc.a</file>
  120. <name>pre_init.c.obj</name>
  121. </input_file>
  122. <input_file id="fl-33">
  123. <path>/home/ngosh/ti/ccstheia151/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>cpy_tbl.c.obj</name>
  127. </input_file>
  128. <input_file id="fl-c9">
  129. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
  130. <kind>archive</kind>
  131. <file>libclang_rt.builtins.a</file>
  132. <name>aeabi_memcpy.S.obj</name>
  133. </input_file>
  134. <input_file id="fl-ca">
  135. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
  136. <kind>archive</kind>
  137. <file>libclang_rt.builtins.a</file>
  138. <name>aeabi_memset.S.obj</name>
  139. </input_file>
  140. <input_file id="fl-cb">
  141. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
  142. <kind>archive</kind>
  143. <file>libclang_rt.builtins.a</file>
  144. <name>aeabi_uidivmod.S.obj</name>
  145. </input_file>
  146. <input_file id="fl-cc">
  147. <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
  148. <kind>archive</kind>
  149. <file>libclang_rt.builtins.a</file>
  150. <name>aeabi_div0.c.obj</name>
  151. </input_file>
  152. <input_file id="fl-cd">
  153. <path>/home/ngosh/ti/ccstheia151/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>memcpy16.S.obj</name>
  157. </input_file>
  158. <input_file id="fl-ce">
  159. <path>/home/ngosh/ti/ccstheia151/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>memset16.S.obj</name>
  163. </input_file>
  164. </input_file_list>
  165. <object_component_list>
  166. <object_component id="oc-18">
  167. <name>.intvecs</name>
  168. <load_address>0x0</load_address>
  169. <readonly>true</readonly>
  170. <run_address>0x0</run_address>
  171. <size>0xc0</size>
  172. <alignment>0x4</alignment>
  173. <input_file_ref idref="fl-3"/>
  174. </object_component>
  175. <object_component id="oc-87">
  176. <name>.text.I2C_sendCommand</name>
  177. <load_address>0xc0</load_address>
  178. <readonly>true</readonly>
  179. <executable>true</executable>
  180. <run_address>0xc0</run_address>
  181. <size>0x1b4</size>
  182. <alignment>0x4</alignment>
  183. <input_file_ref idref="fl-4"/>
  184. </object_component>
  185. <object_component id="oc-63">
  186. <name>.text.main</name>
  187. <load_address>0x274</load_address>
  188. <readonly>true</readonly>
  189. <executable>true</executable>
  190. <run_address>0x274</run_address>
  191. <size>0xa0</size>
  192. <alignment>0x4</alignment>
  193. <input_file_ref idref="fl-1"/>
  194. </object_component>
  195. <object_component id="oc-78">
  196. <name>.text:memcpy</name>
  197. <load_address>0x314</load_address>
  198. <readonly>true</readonly>
  199. <executable>true</executable>
  200. <run_address>0x314</run_address>
  201. <size>0x9a</size>
  202. <alignment>0x1</alignment>
  203. <input_file_ref idref="fl-cd"/>
  204. </object_component>
  205. <object_component id="oc-33">
  206. <name>.text.Default_Handler</name>
  207. <load_address>0x3ae</load_address>
  208. <readonly>true</readonly>
  209. <executable>true</executable>
  210. <run_address>0x3ae</run_address>
  211. <size>0x2</size>
  212. <alignment>0x2</alignment>
  213. <input_file_ref idref="fl-3"/>
  214. </object_component>
  215. <object_component id="oc-ba">
  216. <name>.text.DL_CRC_calculateBlock16</name>
  217. <load_address>0x3b0</load_address>
  218. <readonly>true</readonly>
  219. <executable>true</executable>
  220. <run_address>0x3b0</run_address>
  221. <size>0x98</size>
  222. <alignment>0x4</alignment>
  223. <input_file_ref idref="fl-13"/>
  224. </object_component>
  225. <object_component id="oc-89">
  226. <name>.text.I2C_getResponse</name>
  227. <load_address>0x448</load_address>
  228. <readonly>true</readonly>
  229. <executable>true</executable>
  230. <run_address>0x448</run_address>
  231. <size>0x90</size>
  232. <alignment>0x4</alignment>
  233. <input_file_ref idref="fl-4"/>
  234. </object_component>
  235. <object_component id="oc-1c">
  236. <name>.text:decompress:lzss</name>
  237. <load_address>0x4d8</load_address>
  238. <readonly>true</readonly>
  239. <executable>true</executable>
  240. <run_address>0x4d8</run_address>
  241. <size>0x7c</size>
  242. <alignment>0x4</alignment>
  243. <input_file_ref idref="fl-2b"/>
  244. </object_component>
  245. <object_component id="oc-b4">
  246. <name>.text.SYSCFG_DL_I2C_controller_init</name>
  247. <load_address>0x554</load_address>
  248. <readonly>true</readonly>
  249. <executable>true</executable>
  250. <run_address>0x554</run_address>
  251. <size>0x6c</size>
  252. <alignment>0x4</alignment>
  253. <input_file_ref idref="fl-2"/>
  254. </object_component>
  255. <object_component id="oc-c0">
  256. <name>.text.DL_I2C_fillControllerTXFIFO</name>
  257. <load_address>0x5c0</load_address>
  258. <readonly>true</readonly>
  259. <executable>true</executable>
  260. <run_address>0x5c0</run_address>
  261. <size>0x5e</size>
  262. <alignment>0x2</alignment>
  263. <input_file_ref idref="fl-14"/>
  264. </object_component>
  265. <object_component id="oc-ed">
  266. <name>.text.__aeabi_idiv0</name>
  267. <load_address>0x61e</load_address>
  268. <readonly>true</readonly>
  269. <executable>true</executable>
  270. <run_address>0x61e</run_address>
  271. <size>0x2</size>
  272. <alignment>0x2</alignment>
  273. <input_file_ref idref="fl-cc"/>
  274. </object_component>
  275. <object_component id="oc-b0">
  276. <name>.text.SYSCFG_DL_initPower</name>
  277. <load_address>0x620</load_address>
  278. <readonly>true</readonly>
  279. <executable>true</executable>
  280. <run_address>0x620</run_address>
  281. <size>0x40</size>
  282. <alignment>0x4</alignment>
  283. <input_file_ref idref="fl-2"/>
  284. </object_component>
  285. <object_component id="oc-d9">
  286. <name>.text.__aeabi_uidivmod</name>
  287. <load_address>0x660</load_address>
  288. <readonly>true</readonly>
  289. <executable>true</executable>
  290. <run_address>0x660</run_address>
  291. <size>0x40</size>
  292. <alignment>0x4</alignment>
  293. <input_file_ref idref="fl-cb"/>
  294. </object_component>
  295. <object_component id="oc-97">
  296. <name>.text:__TI_auto_init_nobinit_nopinit</name>
  297. <load_address>0x6a0</load_address>
  298. <readonly>true</readonly>
  299. <executable>true</executable>
  300. <run_address>0x6a0</run_address>
  301. <size>0x3c</size>
  302. <alignment>0x4</alignment>
  303. <input_file_ref idref="fl-31"/>
  304. </object_component>
  305. <object_component id="oc-b2">
  306. <name>.text.SYSCFG_DL_SYSCTL_init</name>
  307. <load_address>0x6dc</load_address>
  308. <readonly>true</readonly>
  309. <executable>true</executable>
  310. <run_address>0x6dc</run_address>
  311. <size>0x30</size>
  312. <alignment>0x4</alignment>
  313. <input_file_ref idref="fl-2"/>
  314. </object_component>
  315. <object_component id="oc-4f">
  316. <name>.text:_c_int00_noargs</name>
  317. <load_address>0x70c</load_address>
  318. <readonly>true</readonly>
  319. <executable>true</executable>
  320. <run_address>0x70c</run_address>
  321. <size>0x28</size>
  322. <alignment>0x4</alignment>
  323. <input_file_ref idref="fl-2c"/>
  324. </object_component>
  325. <object_component id="oc-d7">
  326. <name>.text.DL_I2C_setClockConfig</name>
  327. <load_address>0x734</load_address>
  328. <readonly>true</readonly>
  329. <executable>true</executable>
  330. <run_address>0x734</run_address>
  331. <size>0x26</size>
  332. <alignment>0x2</alignment>
  333. <input_file_ref idref="fl-14"/>
  334. </object_component>
  335. <object_component id="oc-b1">
  336. <name>.text.SYSCFG_DL_GPIO_init</name>
  337. <load_address>0x75c</load_address>
  338. <readonly>true</readonly>
  339. <executable>true</executable>
  340. <run_address>0x75c</run_address>
  341. <size>0x24</size>
  342. <alignment>0x4</alignment>
  343. <input_file_ref idref="fl-2"/>
  344. </object_component>
  345. <object_component id="oc-b5">
  346. <name>.text.SYSCFG_DL_CRC_init</name>
  347. <load_address>0x780</load_address>
  348. <readonly>true</readonly>
  349. <executable>true</executable>
  350. <run_address>0x780</run_address>
  351. <size>0x20</size>
  352. <alignment>0x4</alignment>
  353. <input_file_ref idref="fl-2"/>
  354. </object_component>
  355. <object_component id="oc-82">
  356. <name>.text.I2C_init</name>
  357. <load_address>0x7a0</load_address>
  358. <readonly>true</readonly>
  359. <executable>true</executable>
  360. <run_address>0x7a0</run_address>
  361. <size>0x1e</size>
  362. <alignment>0x2</alignment>
  363. <input_file_ref idref="fl-4"/>
  364. </object_component>
  365. <object_component id="oc-7d">
  366. <name>.text.SYSCFG_DL_init</name>
  367. <load_address>0x7be</load_address>
  368. <readonly>true</readonly>
  369. <executable>true</executable>
  370. <run_address>0x7be</run_address>
  371. <size>0x18</size>
  372. <alignment>0x2</alignment>
  373. <input_file_ref idref="fl-2"/>
  374. </object_component>
  375. <object_component id="oc-46">
  376. <name>.text:decompress:ZI:__TI_zero_init_nomemset</name>
  377. <load_address>0x7d6</load_address>
  378. <readonly>true</readonly>
  379. <executable>true</executable>
  380. <run_address>0x7d6</run_address>
  381. <size>0x16</size>
  382. <alignment>0x2</alignment>
  383. <input_file_ref idref="fl-29"/>
  384. </object_component>
  385. <object_component id="oc-20">
  386. <name>.text:decompress:none</name>
  387. <load_address>0x7ec</load_address>
  388. <readonly>true</readonly>
  389. <executable>true</executable>
  390. <run_address>0x7ec</run_address>
  391. <size>0x12</size>
  392. <alignment>0x2</alignment>
  393. <input_file_ref idref="fl-2a"/>
  394. </object_component>
  395. <object_component id="oc-c6">
  396. <name>.text.DL_Common_delayCycles</name>
  397. <load_address>0x7fe</load_address>
  398. <readonly>true</readonly>
  399. <executable>true</executable>
  400. <run_address>0x7fe</run_address>
  401. <size>0xa</size>
  402. <alignment>0x2</alignment>
  403. <input_file_ref idref="fl-12"/>
  404. </object_component>
  405. <object_component id="oc-3f">
  406. <name>.text.__aeabi_memcpy</name>
  407. <load_address>0x808</load_address>
  408. <readonly>true</readonly>
  409. <executable>true</executable>
  410. <run_address>0x808</run_address>
  411. <size>0x8</size>
  412. <alignment>0x4</alignment>
  413. <input_file_ref idref="fl-c9"/>
  414. </object_component>
  415. <object_component id="oc-2f">
  416. <name>.text.Reset_Handler</name>
  417. <load_address>0x810</load_address>
  418. <readonly>true</readonly>
  419. <executable>true</executable>
  420. <run_address>0x810</run_address>
  421. <size>0x4</size>
  422. <alignment>0x2</alignment>
  423. <input_file_ref idref="fl-3"/>
  424. </object_component>
  425. <object_component id="oc-5f">
  426. <name>.text._system_pre_init</name>
  427. <load_address>0x814</load_address>
  428. <readonly>true</readonly>
  429. <executable>true</executable>
  430. <run_address>0x814</run_address>
  431. <size>0x4</size>
  432. <alignment>0x2</alignment>
  433. <input_file_ref idref="fl-32"/>
  434. </object_component>
  435. <object_component id="oc-90">
  436. <name>.text:abort</name>
  437. <load_address>0x818</load_address>
  438. <readonly>true</readonly>
  439. <executable>true</executable>
  440. <run_address>0x818</run_address>
  441. <size>0x4</size>
  442. <alignment>0x2</alignment>
  443. <input_file_ref idref="fl-2e"/>
  444. </object_component>
  445. <object_component id="oc-137">
  446. <name>.cinit..data.load</name>
  447. <load_address>0x828</load_address>
  448. <readonly>true</readonly>
  449. <run_address>0x828</run_address>
  450. <size>0x23</size>
  451. <alignment>0x1</alignment>
  452. </object_component>
  453. <object_component id="oc-135">
  454. <name>__TI_handler_table</name>
  455. <load_address>0x84c</load_address>
  456. <readonly>true</readonly>
  457. <run_address>0x84c</run_address>
  458. <size>0xc</size>
  459. <alignment>0x4</alignment>
  460. </object_component>
  461. <object_component id="oc-138">
  462. <name>.cinit..bss.load</name>
  463. <load_address>0x858</load_address>
  464. <readonly>true</readonly>
  465. <run_address>0x858</run_address>
  466. <size>0x8</size>
  467. <alignment>0x4</alignment>
  468. </object_component>
  469. <object_component id="oc-136">
  470. <name>__TI_cinit_table</name>
  471. <load_address>0x860</load_address>
  472. <readonly>true</readonly>
  473. <run_address>0x860</run_address>
  474. <size>0x10</size>
  475. <alignment>0x4</alignment>
  476. </object_component>
  477. <object_component id="oc-d8">
  478. <name>.rodata.gI2C_controllerClockConfig</name>
  479. <load_address>0x820</load_address>
  480. <readonly>true</readonly>
  481. <run_address>0x820</run_address>
  482. <size>0x2</size>
  483. <alignment>0x1</alignment>
  484. <input_file_ref idref="fl-2"/>
  485. </object_component>
  486. <object_component id="oc-ff">
  487. <name>.binit</name>
  488. <load_address>0x0</load_address>
  489. <readonly>true</readonly>
  490. <run_address>0x0</run_address>
  491. <size>0x0</size>
  492. <alignment>0x4</alignment>
  493. </object_component>
  494. <object_component id="oc-8d">
  495. <name>.data.gSendCommand</name>
  496. <load_address>0x202000f0</load_address>
  497. <readwrite>true</readwrite>
  498. <run_address>0x202000f0</run_address>
  499. <size>0x1</size>
  500. <alignment>0x1</alignment>
  501. <input_file_ref idref="fl-1"/>
  502. </object_component>
  503. <object_component id="oc-8b">
  504. <name>.data.gTxData</name>
  505. <load_address>0x202000b0</load_address>
  506. <readwrite>true</readwrite>
  507. <run_address>0x202000b0</run_address>
  508. <size>0x40</size>
  509. <alignment>0x1</alignment>
  510. <input_file_ref idref="fl-1"/>
  511. </object_component>
  512. <object_component id="oc-8a">
  513. <name>.common:gI2C</name>
  514. <uninitialized>true</uninitialized>
  515. <readwrite>true</readwrite>
  516. <run_address>0x20200000</run_address>
  517. <size>0x9c</size>
  518. <alignment>0x4</alignment>
  519. </object_component>
  520. <object_component id="oc-8c">
  521. <name>.common:gCommand</name>
  522. <uninitialized>true</uninitialized>
  523. <readwrite>true</readwrite>
  524. <run_address>0x2020009c</run_address>
  525. <size>0x14</size>
  526. <alignment>0x4</alignment>
  527. </object_component>
  528. <object_component id="oc-1a">
  529. <name>.stack</name>
  530. <uninitialized>true</uninitialized>
  531. <readwrite>true</readwrite>
  532. <run_address>0x20207e00</run_address>
  533. <size>0x4</size>
  534. <alignment>0x4</alignment>
  535. <input_file_ref idref="fl-2c"/>
  536. </object_component>
  537. <object_component id="oc-13a">
  538. <name>.stack</name>
  539. <uninitialized>true</uninitialized>
  540. <readwrite>true</readwrite>
  541. <run_address>0x20207e00</run_address>
  542. <size>0x0</size>
  543. <alignment>0x8</alignment>
  544. </object_component>
  545. <object_component id="oc-64">
  546. <name>.debug_loc</name>
  547. <load_address>0x0</load_address>
  548. <run_address>0x0</run_address>
  549. <size>0x6a</size>
  550. <alignment>0x1</alignment>
  551. <input_file_ref idref="fl-1"/>
  552. </object_component>
  553. <object_component id="oc-b3">
  554. <name>.debug_loc</name>
  555. <load_address>0x6a</load_address>
  556. <run_address>0x6a</run_address>
  557. <size>0x6c</size>
  558. <alignment>0x1</alignment>
  559. <input_file_ref idref="fl-2"/>
  560. </object_component>
  561. <object_component id="oc-88">
  562. <name>.debug_loc</name>
  563. <load_address>0xd6</load_address>
  564. <run_address>0xd6</run_address>
  565. <size>0x344</size>
  566. <alignment>0x1</alignment>
  567. <input_file_ref idref="fl-4"/>
  568. </object_component>
  569. <object_component id="oc-e3">
  570. <name>.debug_loc</name>
  571. <load_address>0x41a</load_address>
  572. <run_address>0x41a</run_address>
  573. <size>0x13</size>
  574. <alignment>0x1</alignment>
  575. <input_file_ref idref="fl-12"/>
  576. </object_component>
  577. <object_component id="oc-bb">
  578. <name>.debug_loc</name>
  579. <load_address>0x42d</load_address>
  580. <run_address>0x42d</run_address>
  581. <size>0x526</size>
  582. <alignment>0x1</alignment>
  583. <input_file_ref idref="fl-13"/>
  584. </object_component>
  585. <object_component id="oc-c1">
  586. <name>.debug_loc</name>
  587. <load_address>0x953</load_address>
  588. <run_address>0x953</run_address>
  589. <size>0x352</size>
  590. <alignment>0x1</alignment>
  591. <input_file_ref idref="fl-14"/>
  592. </object_component>
  593. <object_component id="oc-47">
  594. <name>.debug_loc</name>
  595. <load_address>0xca5</load_address>
  596. <run_address>0xca5</run_address>
  597. <size>0x16c</size>
  598. <alignment>0x1</alignment>
  599. <input_file_ref idref="fl-29"/>
  600. </object_component>
  601. <object_component id="oc-45">
  602. <name>.debug_loc</name>
  603. <load_address>0xe11</load_address>
  604. <run_address>0xe11</run_address>
  605. <size>0x6f</size>
  606. <alignment>0x1</alignment>
  607. <input_file_ref idref="fl-2a"/>
  608. </object_component>
  609. <object_component id="oc-3d">
  610. <name>.debug_loc</name>
  611. <load_address>0xe80</load_address>
  612. <run_address>0xe80</run_address>
  613. <size>0x167</size>
  614. <alignment>0x1</alignment>
  615. <input_file_ref idref="fl-2b"/>
  616. </object_component>
  617. <object_component id="oc-3a">
  618. <name>.debug_loc</name>
  619. <load_address>0xfe7</load_address>
  620. <run_address>0xfe7</run_address>
  621. <size>0xd8</size>
  622. <alignment>0x1</alignment>
  623. <input_file_ref idref="fl-2c"/>
  624. </object_component>
  625. <object_component id="oc-96">
  626. <name>.debug_loc</name>
  627. <load_address>0x10bf</load_address>
  628. <run_address>0x10bf</run_address>
  629. <size>0x26</size>
  630. <alignment>0x1</alignment>
  631. <input_file_ref idref="fl-2e"/>
  632. </object_component>
  633. <object_component id="oc-98">
  634. <name>.debug_loc</name>
  635. <load_address>0x10e5</load_address>
  636. <run_address>0x10e5</run_address>
  637. <size>0x424</size>
  638. <alignment>0x1</alignment>
  639. <input_file_ref idref="fl-31"/>
  640. </object_component>
  641. <object_component id="oc-f5">
  642. <name>.debug_loc</name>
  643. <load_address>0x1509</load_address>
  644. <run_address>0x1509</run_address>
  645. <size>0x20</size>
  646. <alignment>0x1</alignment>
  647. <input_file_ref idref="fl-cc"/>
  648. </object_component>
  649. <object_component id="oc-8e">
  650. <name>.debug_abbrev</name>
  651. <load_address>0x0</load_address>
  652. <run_address>0x0</run_address>
  653. <size>0x1e2</size>
  654. <alignment>0x1</alignment>
  655. <input_file_ref idref="fl-1"/>
  656. </object_component>
  657. <object_component id="oc-b6">
  658. <name>.debug_abbrev</name>
  659. <load_address>0x1e2</load_address>
  660. <run_address>0x1e2</run_address>
  661. <size>0x1c7</size>
  662. <alignment>0x1</alignment>
  663. <input_file_ref idref="fl-2"/>
  664. </object_component>
  665. <object_component id="oc-34">
  666. <name>.debug_abbrev</name>
  667. <load_address>0x3a9</load_address>
  668. <run_address>0x3a9</run_address>
  669. <size>0x6d</size>
  670. <alignment>0x1</alignment>
  671. <input_file_ref idref="fl-3"/>
  672. </object_component>
  673. <object_component id="oc-b8">
  674. <name>.debug_abbrev</name>
  675. <load_address>0x416</load_address>
  676. <run_address>0x416</run_address>
  677. <size>0x253</size>
  678. <alignment>0x1</alignment>
  679. <input_file_ref idref="fl-4"/>
  680. </object_component>
  681. <object_component id="oc-e1">
  682. <name>.debug_abbrev</name>
  683. <load_address>0x669</load_address>
  684. <run_address>0x669</run_address>
  685. <size>0x62</size>
  686. <alignment>0x1</alignment>
  687. <input_file_ref idref="fl-12"/>
  688. </object_component>
  689. <object_component id="oc-dd">
  690. <name>.debug_abbrev</name>
  691. <load_address>0x6cb</load_address>
  692. <run_address>0x6cb</run_address>
  693. <size>0x189</size>
  694. <alignment>0x1</alignment>
  695. <input_file_ref idref="fl-13"/>
  696. </object_component>
  697. <object_component id="oc-df">
  698. <name>.debug_abbrev</name>
  699. <load_address>0x854</load_address>
  700. <run_address>0x854</run_address>
  701. <size>0x1e7</size>
  702. <alignment>0x1</alignment>
  703. <input_file_ref idref="fl-14"/>
  704. </object_component>
  705. <object_component id="oc-58">
  706. <name>.debug_abbrev</name>
  707. <load_address>0xa3b</load_address>
  708. <run_address>0xa3b</run_address>
  709. <size>0xc2</size>
  710. <alignment>0x1</alignment>
  711. <input_file_ref idref="fl-29"/>
  712. </object_component>
  713. <object_component id="oc-43">
  714. <name>.debug_abbrev</name>
  715. <load_address>0xafd</load_address>
  716. <run_address>0xafd</run_address>
  717. <size>0x70</size>
  718. <alignment>0x1</alignment>
  719. <input_file_ref idref="fl-2a"/>
  720. </object_component>
  721. <object_component id="oc-3b">
  722. <name>.debug_abbrev</name>
  723. <load_address>0xb6d</load_address>
  724. <run_address>0xb6d</run_address>
  725. <size>0x8d</size>
  726. <alignment>0x1</alignment>
  727. <input_file_ref idref="fl-2b"/>
  728. </object_component>
  729. <object_component id="oc-36">
  730. <name>.debug_abbrev</name>
  731. <load_address>0xbfa</load_address>
  732. <run_address>0xbfa</run_address>
  733. <size>0xaf</size>
  734. <alignment>0x1</alignment>
  735. <input_file_ref idref="fl-2c"/>
  736. </object_component>
  737. <object_component id="oc-ca">
  738. <name>.debug_abbrev</name>
  739. <load_address>0xca9</load_address>
  740. <run_address>0xca9</run_address>
  741. <size>0xb3</size>
  742. <alignment>0x1</alignment>
  743. <input_file_ref idref="fl-2e"/>
  744. </object_component>
  745. <object_component id="oc-d0">
  746. <name>.debug_abbrev</name>
  747. <load_address>0xd5c</load_address>
  748. <run_address>0xd5c</run_address>
  749. <size>0x170</size>
  750. <alignment>0x1</alignment>
  751. <input_file_ref idref="fl-31"/>
  752. </object_component>
  753. <object_component id="oc-7b">
  754. <name>.debug_abbrev</name>
  755. <load_address>0xecc</load_address>
  756. <run_address>0xecc</run_address>
  757. <size>0x39</size>
  758. <alignment>0x1</alignment>
  759. <input_file_ref idref="fl-32"/>
  760. </object_component>
  761. <object_component id="oc-57">
  762. <name>.debug_abbrev</name>
  763. <load_address>0xf05</load_address>
  764. <run_address>0xf05</run_address>
  765. <size>0x27</size>
  766. <alignment>0x1</alignment>
  767. <input_file_ref idref="fl-c9"/>
  768. </object_component>
  769. <object_component id="oc-f2">
  770. <name>.debug_abbrev</name>
  771. <load_address>0xf2c</load_address>
  772. <run_address>0xf2c</run_address>
  773. <size>0x27</size>
  774. <alignment>0x1</alignment>
  775. <input_file_ref idref="fl-cb"/>
  776. </object_component>
  777. <object_component id="oc-f3">
  778. <name>.debug_abbrev</name>
  779. <load_address>0xf53</load_address>
  780. <run_address>0xf53</run_address>
  781. <size>0x59</size>
  782. <alignment>0x1</alignment>
  783. <input_file_ref idref="fl-cc"/>
  784. </object_component>
  785. <object_component id="oc-a9">
  786. <name>.debug_abbrev</name>
  787. <load_address>0xfac</load_address>
  788. <run_address>0xfac</run_address>
  789. <size>0x25</size>
  790. <alignment>0x1</alignment>
  791. <input_file_ref idref="fl-cd"/>
  792. </object_component>
  793. <object_component id="oc-13c">
  794. <name>.debug_abbrev</name>
  795. <load_address>0xfd1</load_address>
  796. <run_address>0xfd1</run_address>
  797. <size>0xf</size>
  798. <alignment>0x0</alignment>
  799. </object_component>
  800. <object_component id="oc-65">
  801. <name>.debug_info</name>
  802. <load_address>0x0</load_address>
  803. <run_address>0x0</run_address>
  804. <size>0xc54</size>
  805. <alignment>0x1</alignment>
  806. <input_file_ref idref="fl-1"/>
  807. </object_component>
  808. <object_component id="oc-7e">
  809. <name>.debug_info</name>
  810. <load_address>0xc54</load_address>
  811. <run_address>0xc54</run_address>
  812. <size>0x1d53</size>
  813. <alignment>0x1</alignment>
  814. <input_file_ref idref="fl-2"/>
  815. </object_component>
  816. <object_component id="oc-19">
  817. <name>.debug_info</name>
  818. <load_address>0x29a7</load_address>
  819. <run_address>0x29a7</run_address>
  820. <size>0x80</size>
  821. <alignment>0x1</alignment>
  822. <input_file_ref idref="fl-3"/>
  823. </object_component>
  824. <object_component id="oc-83">
  825. <name>.debug_info</name>
  826. <load_address>0x2a27</load_address>
  827. <run_address>0x2a27</run_address>
  828. <size>0xf60</size>
  829. <alignment>0x1</alignment>
  830. <input_file_ref idref="fl-4"/>
  831. </object_component>
  832. <object_component id="oc-c7">
  833. <name>.debug_info</name>
  834. <load_address>0x3987</load_address>
  835. <run_address>0x3987</run_address>
  836. <size>0x75</size>
  837. <alignment>0x1</alignment>
  838. <input_file_ref idref="fl-12"/>
  839. </object_component>
  840. <object_component id="oc-bc">
  841. <name>.debug_info</name>
  842. <load_address>0x39fc</load_address>
  843. <run_address>0x39fc</run_address>
  844. <size>0x5cb</size>
  845. <alignment>0x1</alignment>
  846. <input_file_ref idref="fl-13"/>
  847. </object_component>
  848. <object_component id="oc-c2">
  849. <name>.debug_info</name>
  850. <load_address>0x3fc7</load_address>
  851. <run_address>0x3fc7</run_address>
  852. <size>0xca4</size>
  853. <alignment>0x1</alignment>
  854. <input_file_ref idref="fl-14"/>
  855. </object_component>
  856. <object_component id="oc-48">
  857. <name>.debug_info</name>
  858. <load_address>0x4c6b</load_address>
  859. <run_address>0x4c6b</run_address>
  860. <size>0x192</size>
  861. <alignment>0x1</alignment>
  862. <input_file_ref idref="fl-29"/>
  863. </object_component>
  864. <object_component id="oc-21">
  865. <name>.debug_info</name>
  866. <load_address>0x4dfd</load_address>
  867. <run_address>0x4dfd</run_address>
  868. <size>0xc6</size>
  869. <alignment>0x1</alignment>
  870. <input_file_ref idref="fl-2a"/>
  871. </object_component>
  872. <object_component id="oc-1d">
  873. <name>.debug_info</name>
  874. <load_address>0x4ec3</load_address>
  875. <run_address>0x4ec3</run_address>
  876. <size>0x17c</size>
  877. <alignment>0x1</alignment>
  878. <input_file_ref idref="fl-2b"/>
  879. </object_component>
  880. <object_component id="oc-1b">
  881. <name>.debug_info</name>
  882. <load_address>0x503f</load_address>
  883. <run_address>0x503f</run_address>
  884. <size>0x423</size>
  885. <alignment>0x1</alignment>
  886. <input_file_ref idref="fl-2c"/>
  887. </object_component>
  888. <object_component id="oc-91">
  889. <name>.debug_info</name>
  890. <load_address>0x5462</load_address>
  891. <run_address>0x5462</run_address>
  892. <size>0xed</size>
  893. <alignment>0x1</alignment>
  894. <input_file_ref idref="fl-2e"/>
  895. </object_component>
  896. <object_component id="oc-99">
  897. <name>.debug_info</name>
  898. <load_address>0x554f</load_address>
  899. <run_address>0x554f</run_address>
  900. <size>0x744</size>
  901. <alignment>0x1</alignment>
  902. <input_file_ref idref="fl-31"/>
  903. </object_component>
  904. <object_component id="oc-60">
  905. <name>.debug_info</name>
  906. <load_address>0x5c93</load_address>
  907. <run_address>0x5c93</run_address>
  908. <size>0x46</size>
  909. <alignment>0x1</alignment>
  910. <input_file_ref idref="fl-32"/>
  911. </object_component>
  912. <object_component id="oc-40">
  913. <name>.debug_info</name>
  914. <load_address>0x5cd9</load_address>
  915. <run_address>0x5cd9</run_address>
  916. <size>0x1a9</size>
  917. <alignment>0x1</alignment>
  918. <input_file_ref idref="fl-c9"/>
  919. </object_component>
  920. <object_component id="oc-dc">
  921. <name>.debug_info</name>
  922. <load_address>0x5e82</load_address>
  923. <run_address>0x5e82</run_address>
  924. <size>0x1cc</size>
  925. <alignment>0x1</alignment>
  926. <input_file_ref idref="fl-cb"/>
  927. </object_component>
  928. <object_component id="oc-ee">
  929. <name>.debug_info</name>
  930. <load_address>0x604e</load_address>
  931. <run_address>0x604e</run_address>
  932. <size>0x85</size>
  933. <alignment>0x1</alignment>
  934. <input_file_ref idref="fl-cc"/>
  935. </object_component>
  936. <object_component id="oc-74">
  937. <name>.debug_info</name>
  938. <load_address>0x60d3</load_address>
  939. <run_address>0x60d3</run_address>
  940. <size>0x302</size>
  941. <alignment>0x1</alignment>
  942. <input_file_ref idref="fl-cd"/>
  943. </object_component>
  944. <object_component id="oc-13b">
  945. <name>.debug_info</name>
  946. <load_address>0x63d5</load_address>
  947. <run_address>0x63d5</run_address>
  948. <size>0xaf</size>
  949. <alignment>0x0</alignment>
  950. </object_component>
  951. <object_component id="oc-66">
  952. <name>.debug_ranges</name>
  953. <load_address>0x0</load_address>
  954. <run_address>0x0</run_address>
  955. <size>0x30</size>
  956. <alignment>0x1</alignment>
  957. <input_file_ref idref="fl-1"/>
  958. </object_component>
  959. <object_component id="oc-7f">
  960. <name>.debug_ranges</name>
  961. <load_address>0x30</load_address>
  962. <run_address>0x30</run_address>
  963. <size>0x38</size>
  964. <alignment>0x1</alignment>
  965. <input_file_ref idref="fl-2"/>
  966. </object_component>
  967. <object_component id="oc-30">
  968. <name>.debug_ranges</name>
  969. <load_address>0x68</load_address>
  970. <run_address>0x68</run_address>
  971. <size>0x18</size>
  972. <alignment>0x1</alignment>
  973. <input_file_ref idref="fl-3"/>
  974. </object_component>
  975. <object_component id="oc-84">
  976. <name>.debug_ranges</name>
  977. <load_address>0x80</load_address>
  978. <run_address>0x80</run_address>
  979. <size>0xa8</size>
  980. <alignment>0x1</alignment>
  981. <input_file_ref idref="fl-4"/>
  982. </object_component>
  983. <object_component id="oc-bd">
  984. <name>.debug_ranges</name>
  985. <load_address>0x128</load_address>
  986. <run_address>0x128</run_address>
  987. <size>0xc8</size>
  988. <alignment>0x1</alignment>
  989. <input_file_ref idref="fl-13"/>
  990. </object_component>
  991. <object_component id="oc-c3">
  992. <name>.debug_ranges</name>
  993. <load_address>0x1f0</load_address>
  994. <run_address>0x1f0</run_address>
  995. <size>0x1d8</size>
  996. <alignment>0x1</alignment>
  997. <input_file_ref idref="fl-14"/>
  998. </object_component>
  999. <object_component id="oc-49">
  1000. <name>.debug_ranges</name>
  1001. <load_address>0x3c8</load_address>
  1002. <run_address>0x3c8</run_address>
  1003. <size>0x18</size>
  1004. <alignment>0x1</alignment>
  1005. <input_file_ref idref="fl-29"/>
  1006. </object_component>
  1007. <object_component id="oc-3e">
  1008. <name>.debug_ranges</name>
  1009. <load_address>0x3e0</load_address>
  1010. <run_address>0x3e0</run_address>
  1011. <size>0x50</size>
  1012. <alignment>0x1</alignment>
  1013. <input_file_ref idref="fl-2b"/>
  1014. </object_component>
  1015. <object_component id="oc-39">
  1016. <name>.debug_ranges</name>
  1017. <load_address>0x430</load_address>
  1018. <run_address>0x430</run_address>
  1019. <size>0x48</size>
  1020. <alignment>0x1</alignment>
  1021. <input_file_ref idref="fl-2c"/>
  1022. </object_component>
  1023. <object_component id="oc-92">
  1024. <name>.debug_ranges</name>
  1025. <load_address>0x478</load_address>
  1026. <run_address>0x478</run_address>
  1027. <size>0x18</size>
  1028. <alignment>0x1</alignment>
  1029. <input_file_ref idref="fl-2e"/>
  1030. </object_component>
  1031. <object_component id="oc-9a">
  1032. <name>.debug_ranges</name>
  1033. <load_address>0x490</load_address>
  1034. <run_address>0x490</run_address>
  1035. <size>0x48</size>
  1036. <alignment>0x1</alignment>
  1037. <input_file_ref idref="fl-31"/>
  1038. </object_component>
  1039. <object_component id="oc-ef">
  1040. <name>.debug_ranges</name>
  1041. <load_address>0x4d8</load_address>
  1042. <run_address>0x4d8</run_address>
  1043. <size>0x18</size>
  1044. <alignment>0x1</alignment>
  1045. <input_file_ref idref="fl-cc"/>
  1046. </object_component>
  1047. <object_component id="oc-77">
  1048. <name>.debug_ranges</name>
  1049. <load_address>0x4f0</load_address>
  1050. <run_address>0x4f0</run_address>
  1051. <size>0x28</size>
  1052. <alignment>0x1</alignment>
  1053. <input_file_ref idref="fl-cd"/>
  1054. </object_component>
  1055. <object_component id="oc-8f">
  1056. <name>.debug_str</name>
  1057. <load_address>0x0</load_address>
  1058. <run_address>0x0</run_address>
  1059. <size>0xd5c</size>
  1060. <alignment>0x1</alignment>
  1061. <input_file_ref idref="fl-1"/>
  1062. </object_component>
  1063. <object_component id="oc-b7">
  1064. <name>.debug_str</name>
  1065. <load_address>0xd5c</load_address>
  1066. <run_address>0xd5c</run_address>
  1067. <size>0x15f7</size>
  1068. <alignment>0x1</alignment>
  1069. <input_file_ref idref="fl-2"/>
  1070. </object_component>
  1071. <object_component id="oc-35">
  1072. <name>.debug_str</name>
  1073. <load_address>0x2353</load_address>
  1074. <run_address>0x2353</run_address>
  1075. <size>0x16d</size>
  1076. <alignment>0x1</alignment>
  1077. <input_file_ref idref="fl-3"/>
  1078. </object_component>
  1079. <object_component id="oc-b9">
  1080. <name>.debug_str</name>
  1081. <load_address>0x24c0</load_address>
  1082. <run_address>0x24c0</run_address>
  1083. <size>0x809</size>
  1084. <alignment>0x1</alignment>
  1085. <input_file_ref idref="fl-4"/>
  1086. </object_component>
  1087. <object_component id="oc-e2">
  1088. <name>.debug_str</name>
  1089. <load_address>0x2cc9</load_address>
  1090. <run_address>0x2cc9</run_address>
  1091. <size>0x16d</size>
  1092. <alignment>0x1</alignment>
  1093. <input_file_ref idref="fl-12"/>
  1094. </object_component>
  1095. <object_component id="oc-de">
  1096. <name>.debug_str</name>
  1097. <load_address>0x2e36</load_address>
  1098. <run_address>0x2e36</run_address>
  1099. <size>0x329</size>
  1100. <alignment>0x1</alignment>
  1101. <input_file_ref idref="fl-13"/>
  1102. </object_component>
  1103. <object_component id="oc-e0">
  1104. <name>.debug_str</name>
  1105. <load_address>0x315f</load_address>
  1106. <run_address>0x315f</run_address>
  1107. <size>0x8ae</size>
  1108. <alignment>0x1</alignment>
  1109. <input_file_ref idref="fl-14"/>
  1110. </object_component>
  1111. <object_component id="oc-59">
  1112. <name>.debug_str</name>
  1113. <load_address>0x3a0d</load_address>
  1114. <run_address>0x3a0d</run_address>
  1115. <size>0x1a3</size>
  1116. <alignment>0x1</alignment>
  1117. <input_file_ref idref="fl-29"/>
  1118. </object_component>
  1119. <object_component id="oc-44">
  1120. <name>.debug_str</name>
  1121. <load_address>0x3bb0</load_address>
  1122. <run_address>0x3bb0</run_address>
  1123. <size>0x170</size>
  1124. <alignment>0x1</alignment>
  1125. <input_file_ref idref="fl-2a"/>
  1126. </object_component>
  1127. <object_component id="oc-3c">
  1128. <name>.debug_str</name>
  1129. <load_address>0x3d20</load_address>
  1130. <run_address>0x3d20</run_address>
  1131. <size>0x1dd</size>
  1132. <alignment>0x1</alignment>
  1133. <input_file_ref idref="fl-2b"/>
  1134. </object_component>
  1135. <object_component id="oc-37">
  1136. <name>.debug_str</name>
  1137. <load_address>0x3efd</load_address>
  1138. <run_address>0x3efd</run_address>
  1139. <size>0x22d</size>
  1140. <alignment>0x1</alignment>
  1141. <input_file_ref idref="fl-2c"/>
  1142. </object_component>
  1143. <object_component id="oc-cb">
  1144. <name>.debug_str</name>
  1145. <load_address>0x412a</load_address>
  1146. <run_address>0x412a</run_address>
  1147. <size>0x147</size>
  1148. <alignment>0x1</alignment>
  1149. <input_file_ref idref="fl-2e"/>
  1150. </object_component>
  1151. <object_component id="oc-d1">
  1152. <name>.debug_str</name>
  1153. <load_address>0x4271</load_address>
  1154. <run_address>0x4271</run_address>
  1155. <size>0x337</size>
  1156. <alignment>0x1</alignment>
  1157. <input_file_ref idref="fl-31"/>
  1158. </object_component>
  1159. <object_component id="oc-7c">
  1160. <name>.debug_str</name>
  1161. <load_address>0x45a8</load_address>
  1162. <run_address>0x45a8</run_address>
  1163. <size>0xfd</size>
  1164. <alignment>0x1</alignment>
  1165. <input_file_ref idref="fl-32"/>
  1166. </object_component>
  1167. <object_component id="oc-f4">
  1168. <name>.debug_str</name>
  1169. <load_address>0x46a5</load_address>
  1170. <run_address>0x46a5</run_address>
  1171. <size>0x1a3</size>
  1172. <alignment>0x1</alignment>
  1173. <input_file_ref idref="fl-cc"/>
  1174. </object_component>
  1175. <object_component id="oc-67">
  1176. <name>.debug_frame</name>
  1177. <load_address>0x0</load_address>
  1178. <run_address>0x0</run_address>
  1179. <size>0x40</size>
  1180. <alignment>0x4</alignment>
  1181. <input_file_ref idref="fl-1"/>
  1182. </object_component>
  1183. <object_component id="oc-80">
  1184. <name>.debug_frame</name>
  1185. <load_address>0x40</load_address>
  1186. <run_address>0x40</run_address>
  1187. <size>0x8c</size>
  1188. <alignment>0x4</alignment>
  1189. <input_file_ref idref="fl-2"/>
  1190. </object_component>
  1191. <object_component id="oc-31">
  1192. <name>.debug_frame</name>
  1193. <load_address>0xcc</load_address>
  1194. <run_address>0xcc</run_address>
  1195. <size>0x30</size>
  1196. <alignment>0x4</alignment>
  1197. <input_file_ref idref="fl-3"/>
  1198. </object_component>
  1199. <object_component id="oc-85">
  1200. <name>.debug_frame</name>
  1201. <load_address>0xfc</load_address>
  1202. <run_address>0xfc</run_address>
  1203. <size>0x88</size>
  1204. <alignment>0x4</alignment>
  1205. <input_file_ref idref="fl-4"/>
  1206. </object_component>
  1207. <object_component id="oc-c8">
  1208. <name>.debug_frame</name>
  1209. <load_address>0x184</load_address>
  1210. <run_address>0x184</run_address>
  1211. <size>0x20</size>
  1212. <alignment>0x4</alignment>
  1213. <input_file_ref idref="fl-12"/>
  1214. </object_component>
  1215. <object_component id="oc-be">
  1216. <name>.debug_frame</name>
  1217. <load_address>0x1a4</load_address>
  1218. <run_address>0x1a4</run_address>
  1219. <size>0x8c</size>
  1220. <alignment>0x4</alignment>
  1221. <input_file_ref idref="fl-13"/>
  1222. </object_component>
  1223. <object_component id="oc-c4">
  1224. <name>.debug_frame</name>
  1225. <load_address>0x230</load_address>
  1226. <run_address>0x230</run_address>
  1227. <size>0x12c</size>
  1228. <alignment>0x4</alignment>
  1229. <input_file_ref idref="fl-14"/>
  1230. </object_component>
  1231. <object_component id="oc-4a">
  1232. <name>.debug_frame</name>
  1233. <load_address>0x35c</load_address>
  1234. <run_address>0x35c</run_address>
  1235. <size>0x38</size>
  1236. <alignment>0x4</alignment>
  1237. <input_file_ref idref="fl-29"/>
  1238. </object_component>
  1239. <object_component id="oc-22">
  1240. <name>.debug_frame</name>
  1241. <load_address>0x394</load_address>
  1242. <run_address>0x394</run_address>
  1243. <size>0x28</size>
  1244. <alignment>0x4</alignment>
  1245. <input_file_ref idref="fl-2a"/>
  1246. </object_component>
  1247. <object_component id="oc-1e">
  1248. <name>.debug_frame</name>
  1249. <load_address>0x3bc</load_address>
  1250. <run_address>0x3bc</run_address>
  1251. <size>0x30</size>
  1252. <alignment>0x4</alignment>
  1253. <input_file_ref idref="fl-2b"/>
  1254. </object_component>
  1255. <object_component id="oc-4e">
  1256. <name>.debug_frame</name>
  1257. <load_address>0x3ec</load_address>
  1258. <run_address>0x3ec</run_address>
  1259. <size>0x90</size>
  1260. <alignment>0x4</alignment>
  1261. <input_file_ref idref="fl-2c"/>
  1262. </object_component>
  1263. <object_component id="oc-93">
  1264. <name>.debug_frame</name>
  1265. <load_address>0x47c</load_address>
  1266. <run_address>0x47c</run_address>
  1267. <size>0x30</size>
  1268. <alignment>0x4</alignment>
  1269. <input_file_ref idref="fl-2e"/>
  1270. </object_component>
  1271. <object_component id="oc-9b">
  1272. <name>.debug_frame</name>
  1273. <load_address>0x4ac</load_address>
  1274. <run_address>0x4ac</run_address>
  1275. <size>0x100</size>
  1276. <alignment>0x4</alignment>
  1277. <input_file_ref idref="fl-31"/>
  1278. </object_component>
  1279. <object_component id="oc-61">
  1280. <name>.debug_frame</name>
  1281. <load_address>0x5ac</load_address>
  1282. <run_address>0x5ac</run_address>
  1283. <size>0x20</size>
  1284. <alignment>0x4</alignment>
  1285. <input_file_ref idref="fl-32"/>
  1286. </object_component>
  1287. <object_component id="oc-f0">
  1288. <name>.debug_frame</name>
  1289. <load_address>0x5cc</load_address>
  1290. <run_address>0x5cc</run_address>
  1291. <size>0x30</size>
  1292. <alignment>0x4</alignment>
  1293. <input_file_ref idref="fl-cc"/>
  1294. </object_component>
  1295. <object_component id="oc-68">
  1296. <name>.debug_line</name>
  1297. <load_address>0x0</load_address>
  1298. <run_address>0x0</run_address>
  1299. <size>0x38d</size>
  1300. <alignment>0x1</alignment>
  1301. <input_file_ref idref="fl-1"/>
  1302. </object_component>
  1303. <object_component id="oc-81">
  1304. <name>.debug_line</name>
  1305. <load_address>0x38d</load_address>
  1306. <run_address>0x38d</run_address>
  1307. <size>0x58f</size>
  1308. <alignment>0x1</alignment>
  1309. <input_file_ref idref="fl-2"/>
  1310. </object_component>
  1311. <object_component id="oc-32">
  1312. <name>.debug_line</name>
  1313. <load_address>0x91c</load_address>
  1314. <run_address>0x91c</run_address>
  1315. <size>0xc1</size>
  1316. <alignment>0x1</alignment>
  1317. <input_file_ref idref="fl-3"/>
  1318. </object_component>
  1319. <object_component id="oc-86">
  1320. <name>.debug_line</name>
  1321. <load_address>0x9dd</load_address>
  1322. <run_address>0x9dd</run_address>
  1323. <size>0x847</size>
  1324. <alignment>0x1</alignment>
  1325. <input_file_ref idref="fl-4"/>
  1326. </object_component>
  1327. <object_component id="oc-c9">
  1328. <name>.debug_line</name>
  1329. <load_address>0x1224</load_address>
  1330. <run_address>0x1224</run_address>
  1331. <size>0x178</size>
  1332. <alignment>0x1</alignment>
  1333. <input_file_ref idref="fl-12"/>
  1334. </object_component>
  1335. <object_component id="oc-bf">
  1336. <name>.debug_line</name>
  1337. <load_address>0x139c</load_address>
  1338. <run_address>0x139c</run_address>
  1339. <size>0x45e</size>
  1340. <alignment>0x1</alignment>
  1341. <input_file_ref idref="fl-13"/>
  1342. </object_component>
  1343. <object_component id="oc-c5">
  1344. <name>.debug_line</name>
  1345. <load_address>0x17fa</load_address>
  1346. <run_address>0x17fa</run_address>
  1347. <size>0x682</size>
  1348. <alignment>0x1</alignment>
  1349. <input_file_ref idref="fl-14"/>
  1350. </object_component>
  1351. <object_component id="oc-4b">
  1352. <name>.debug_line</name>
  1353. <load_address>0x1e7c</load_address>
  1354. <run_address>0x1e7c</run_address>
  1355. <size>0x106</size>
  1356. <alignment>0x1</alignment>
  1357. <input_file_ref idref="fl-29"/>
  1358. </object_component>
  1359. <object_component id="oc-23">
  1360. <name>.debug_line</name>
  1361. <load_address>0x1f82</load_address>
  1362. <run_address>0x1f82</run_address>
  1363. <size>0x63</size>
  1364. <alignment>0x1</alignment>
  1365. <input_file_ref idref="fl-2a"/>
  1366. </object_component>
  1367. <object_component id="oc-1f">
  1368. <name>.debug_line</name>
  1369. <load_address>0x1fe5</load_address>
  1370. <run_address>0x1fe5</run_address>
  1371. <size>0x10e</size>
  1372. <alignment>0x1</alignment>
  1373. <input_file_ref idref="fl-2b"/>
  1374. </object_component>
  1375. <object_component id="oc-38">
  1376. <name>.debug_line</name>
  1377. <load_address>0x20f3</load_address>
  1378. <run_address>0x20f3</run_address>
  1379. <size>0x1dc</size>
  1380. <alignment>0x1</alignment>
  1381. <input_file_ref idref="fl-2c"/>
  1382. </object_component>
  1383. <object_component id="oc-94">
  1384. <name>.debug_line</name>
  1385. <load_address>0x22cf</load_address>
  1386. <run_address>0x22cf</run_address>
  1387. <size>0x69</size>
  1388. <alignment>0x1</alignment>
  1389. <input_file_ref idref="fl-2e"/>
  1390. </object_component>
  1391. <object_component id="oc-9c">
  1392. <name>.debug_line</name>
  1393. <load_address>0x2338</load_address>
  1394. <run_address>0x2338</run_address>
  1395. <size>0x403</size>
  1396. <alignment>0x1</alignment>
  1397. <input_file_ref idref="fl-31"/>
  1398. </object_component>
  1399. <object_component id="oc-62">
  1400. <name>.debug_line</name>
  1401. <load_address>0x273b</load_address>
  1402. <run_address>0x273b</run_address>
  1403. <size>0x3e</size>
  1404. <alignment>0x1</alignment>
  1405. <input_file_ref idref="fl-32"/>
  1406. </object_component>
  1407. <object_component id="oc-42">
  1408. <name>.debug_line</name>
  1409. <load_address>0x2779</load_address>
  1410. <run_address>0x2779</run_address>
  1411. <size>0xac</size>
  1412. <alignment>0x1</alignment>
  1413. <input_file_ref idref="fl-c9"/>
  1414. </object_component>
  1415. <object_component id="oc-db">
  1416. <name>.debug_line</name>
  1417. <load_address>0x2825</load_address>
  1418. <run_address>0x2825</run_address>
  1419. <size>0xca</size>
  1420. <alignment>0x1</alignment>
  1421. <input_file_ref idref="fl-cb"/>
  1422. </object_component>
  1423. <object_component id="oc-f1">
  1424. <name>.debug_line</name>
  1425. <load_address>0x28ef</load_address>
  1426. <run_address>0x28ef</run_address>
  1427. <size>0xbd</size>
  1428. <alignment>0x1</alignment>
  1429. <input_file_ref idref="fl-cc"/>
  1430. </object_component>
  1431. <object_component id="oc-76">
  1432. <name>.debug_line</name>
  1433. <load_address>0x29ac</load_address>
  1434. <run_address>0x29ac</run_address>
  1435. <size>0xa0</size>
  1436. <alignment>0x1</alignment>
  1437. <input_file_ref idref="fl-cd"/>
  1438. </object_component>
  1439. <object_component id="oc-41">
  1440. <name>.debug_aranges</name>
  1441. <load_address>0x0</load_address>
  1442. <run_address>0x0</run_address>
  1443. <size>0x20</size>
  1444. <alignment>0x1</alignment>
  1445. <input_file_ref idref="fl-c9"/>
  1446. </object_component>
  1447. <object_component id="oc-da">
  1448. <name>.debug_aranges</name>
  1449. <load_address>0x20</load_address>
  1450. <run_address>0x20</run_address>
  1451. <size>0x20</size>
  1452. <alignment>0x1</alignment>
  1453. <input_file_ref idref="fl-cb"/>
  1454. </object_component>
  1455. <object_component id="oc-75">
  1456. <name>.debug_aranges</name>
  1457. <load_address>0x40</load_address>
  1458. <run_address>0x40</run_address>
  1459. <size>0x28</size>
  1460. <alignment>0x1</alignment>
  1461. <input_file_ref idref="fl-cd"/>
  1462. </object_component>
  1463. </object_component_list>
  1464. <logical_group_list>
  1465. <logical_group id="lg-2" display="no" color="cyan">
  1466. <name>.intvecs</name>
  1467. <load_address>0x0</load_address>
  1468. <run_address>0x0</run_address>
  1469. <size>0xc0</size>
  1470. <contents>
  1471. <object_component_ref idref="oc-18"/>
  1472. </contents>
  1473. </logical_group>
  1474. <logical_group id="lg-3" display="no" color="cyan">
  1475. <name>.text</name>
  1476. <load_address>0xc0</load_address>
  1477. <run_address>0xc0</run_address>
  1478. <size>0x760</size>
  1479. <contents>
  1480. <object_component_ref idref="oc-87"/>
  1481. <object_component_ref idref="oc-63"/>
  1482. <object_component_ref idref="oc-78"/>
  1483. <object_component_ref idref="oc-33"/>
  1484. <object_component_ref idref="oc-ba"/>
  1485. <object_component_ref idref="oc-89"/>
  1486. <object_component_ref idref="oc-1c"/>
  1487. <object_component_ref idref="oc-b4"/>
  1488. <object_component_ref idref="oc-c0"/>
  1489. <object_component_ref idref="oc-ed"/>
  1490. <object_component_ref idref="oc-b0"/>
  1491. <object_component_ref idref="oc-d9"/>
  1492. <object_component_ref idref="oc-97"/>
  1493. <object_component_ref idref="oc-b2"/>
  1494. <object_component_ref idref="oc-4f"/>
  1495. <object_component_ref idref="oc-d7"/>
  1496. <object_component_ref idref="oc-b1"/>
  1497. <object_component_ref idref="oc-b5"/>
  1498. <object_component_ref idref="oc-82"/>
  1499. <object_component_ref idref="oc-7d"/>
  1500. <object_component_ref idref="oc-46"/>
  1501. <object_component_ref idref="oc-20"/>
  1502. <object_component_ref idref="oc-c6"/>
  1503. <object_component_ref idref="oc-3f"/>
  1504. <object_component_ref idref="oc-2f"/>
  1505. <object_component_ref idref="oc-5f"/>
  1506. <object_component_ref idref="oc-90"/>
  1507. </contents>
  1508. </logical_group>
  1509. <logical_group id="lg-4" display="no" color="cyan">
  1510. <name>.const</name>
  1511. <run_address>0x0</run_address>
  1512. <size>0x0</size>
  1513. <contents>
  1514. </contents>
  1515. </logical_group>
  1516. <logical_group id="lg-5" display="no" color="cyan">
  1517. <name>.cinit</name>
  1518. <load_address>0x828</load_address>
  1519. <run_address>0x828</run_address>
  1520. <size>0x48</size>
  1521. <contents>
  1522. <object_component_ref idref="oc-137"/>
  1523. <object_component_ref idref="oc-135"/>
  1524. <object_component_ref idref="oc-138"/>
  1525. <object_component_ref idref="oc-136"/>
  1526. </contents>
  1527. </logical_group>
  1528. <logical_group id="lg-6" display="no" color="cyan">
  1529. <name>.pinit</name>
  1530. <run_address>0x0</run_address>
  1531. <size>0x0</size>
  1532. <contents>
  1533. </contents>
  1534. </logical_group>
  1535. <logical_group id="lg-7" display="no" color="cyan">
  1536. <name>.rodata</name>
  1537. <load_address>0x820</load_address>
  1538. <run_address>0x820</run_address>
  1539. <size>0x8</size>
  1540. <contents>
  1541. <object_component_ref idref="oc-d8"/>
  1542. </contents>
  1543. </logical_group>
  1544. <logical_group id="lg-8" display="no" color="cyan">
  1545. <name>.ARM.exidx</name>
  1546. <run_address>0x0</run_address>
  1547. <size>0x0</size>
  1548. <contents>
  1549. </contents>
  1550. </logical_group>
  1551. <logical_group id="lg-9" display="no" color="cyan">
  1552. <name>.init_array</name>
  1553. <run_address>0x0</run_address>
  1554. <size>0x0</size>
  1555. <contents>
  1556. </contents>
  1557. </logical_group>
  1558. <logical_group id="lg-a" display="no" color="cyan">
  1559. <name>.binit</name>
  1560. <load_address>0x0</load_address>
  1561. <run_address>0x0</run_address>
  1562. <size>0x0</size>
  1563. <contents>
  1564. <object_component_ref idref="oc-ff"/>
  1565. </contents>
  1566. </logical_group>
  1567. <logical_group id="lg-b" display="no" color="cyan">
  1568. <name>.TI.ramfunc</name>
  1569. <run_address>0x0</run_address>
  1570. <size>0x0</size>
  1571. <contents>
  1572. </contents>
  1573. </logical_group>
  1574. <logical_group id="lg-c" display="no" color="cyan">
  1575. <name>.vtable</name>
  1576. <run_address>0x0</run_address>
  1577. <size>0x0</size>
  1578. <contents>
  1579. </contents>
  1580. </logical_group>
  1581. <logical_group id="lg-d" display="no" color="cyan">
  1582. <name>.args</name>
  1583. <run_address>0x0</run_address>
  1584. <size>0x0</size>
  1585. <contents>
  1586. </contents>
  1587. </logical_group>
  1588. <logical_group id="lg-e" display="no" color="cyan">
  1589. <name>.data</name>
  1590. <run_address>0x202000b0</run_address>
  1591. <size>0x41</size>
  1592. <contents>
  1593. <object_component_ref idref="oc-8d"/>
  1594. <object_component_ref idref="oc-8b"/>
  1595. </contents>
  1596. </logical_group>
  1597. <logical_group id="lg-f" display="no" color="cyan">
  1598. <name>.bss</name>
  1599. <run_address>0x20200000</run_address>
  1600. <size>0xb0</size>
  1601. <contents>
  1602. <object_component_ref idref="oc-8a"/>
  1603. <object_component_ref idref="oc-8c"/>
  1604. </contents>
  1605. </logical_group>
  1606. <logical_group id="lg-10" display="no" color="cyan">
  1607. <name>.sysmem</name>
  1608. <run_address>0x0</run_address>
  1609. <size>0x0</size>
  1610. <contents>
  1611. </contents>
  1612. </logical_group>
  1613. <logical_group id="lg-11" display="no" color="cyan">
  1614. <name>.stack</name>
  1615. <run_address>0x20207e00</run_address>
  1616. <size>0x200</size>
  1617. <contents>
  1618. <object_component_ref idref="oc-1a"/>
  1619. <object_component_ref idref="oc-13a"/>
  1620. </contents>
  1621. </logical_group>
  1622. <logical_group id="lg-12" display="no" color="cyan">
  1623. <name>.BCRConfig</name>
  1624. <run_address>0x0</run_address>
  1625. <size>0x0</size>
  1626. <contents>
  1627. </contents>
  1628. </logical_group>
  1629. <logical_group id="lg-13" display="no" color="cyan">
  1630. <name>.BSLConfig</name>
  1631. <run_address>0x0</run_address>
  1632. <size>0x0</size>
  1633. <contents>
  1634. </contents>
  1635. </logical_group>
  1636. <logical_group id="lg-f6" display="no" color="cyan">
  1637. <name>.TI.noinit</name>
  1638. <run_address>0x0</run_address>
  1639. <size>0x0</size>
  1640. <contents>
  1641. </contents>
  1642. </logical_group>
  1643. <logical_group id="lg-f7" display="no" color="cyan">
  1644. <name>.TI.persistent</name>
  1645. <run_address>0x0</run_address>
  1646. <size>0x0</size>
  1647. <contents>
  1648. </contents>
  1649. </logical_group>
  1650. <logical_group id="lg-f8" display="no" color="cyan">
  1651. <name>.TI.local</name>
  1652. <run_address>0x0</run_address>
  1653. <size>0x0</size>
  1654. <contents>
  1655. </contents>
  1656. </logical_group>
  1657. <logical_group id="lg-f9" display="no" color="cyan">
  1658. <name>.TI.onchip</name>
  1659. <run_address>0x0</run_address>
  1660. <size>0x0</size>
  1661. <contents>
  1662. </contents>
  1663. </logical_group>
  1664. <logical_group id="lg-fa" display="no" color="cyan">
  1665. <name>.TI.offchip</name>
  1666. <run_address>0x0</run_address>
  1667. <size>0x0</size>
  1668. <contents>
  1669. </contents>
  1670. </logical_group>
  1671. <logical_group id="lg-fb" display="no" color="cyan">
  1672. <name>__llvm_prf_cnts</name>
  1673. <run_address>0x20200000</run_address>
  1674. <size>0x0</size>
  1675. <contents>
  1676. </contents>
  1677. </logical_group>
  1678. <logical_group id="lg-fd" display="no" color="cyan">
  1679. <name>__llvm_prf_bits</name>
  1680. <run_address>0x20200000</run_address>
  1681. <size>0x0</size>
  1682. <contents>
  1683. </contents>
  1684. </logical_group>
  1685. <logical_group id="lg-119" display="never" color="cyan">
  1686. <name>.debug_loc</name>
  1687. <load_address>0x0</load_address>
  1688. <run_address>0x0</run_address>
  1689. <size>0x1529</size>
  1690. <contents>
  1691. <object_component_ref idref="oc-64"/>
  1692. <object_component_ref idref="oc-b3"/>
  1693. <object_component_ref idref="oc-88"/>
  1694. <object_component_ref idref="oc-e3"/>
  1695. <object_component_ref idref="oc-bb"/>
  1696. <object_component_ref idref="oc-c1"/>
  1697. <object_component_ref idref="oc-47"/>
  1698. <object_component_ref idref="oc-45"/>
  1699. <object_component_ref idref="oc-3d"/>
  1700. <object_component_ref idref="oc-3a"/>
  1701. <object_component_ref idref="oc-96"/>
  1702. <object_component_ref idref="oc-98"/>
  1703. <object_component_ref idref="oc-f5"/>
  1704. </contents>
  1705. </logical_group>
  1706. <logical_group id="lg-11b" display="never" color="cyan">
  1707. <name>.debug_abbrev</name>
  1708. <load_address>0x0</load_address>
  1709. <run_address>0x0</run_address>
  1710. <size>0xfe0</size>
  1711. <contents>
  1712. <object_component_ref idref="oc-8e"/>
  1713. <object_component_ref idref="oc-b6"/>
  1714. <object_component_ref idref="oc-34"/>
  1715. <object_component_ref idref="oc-b8"/>
  1716. <object_component_ref idref="oc-e1"/>
  1717. <object_component_ref idref="oc-dd"/>
  1718. <object_component_ref idref="oc-df"/>
  1719. <object_component_ref idref="oc-58"/>
  1720. <object_component_ref idref="oc-43"/>
  1721. <object_component_ref idref="oc-3b"/>
  1722. <object_component_ref idref="oc-36"/>
  1723. <object_component_ref idref="oc-ca"/>
  1724. <object_component_ref idref="oc-d0"/>
  1725. <object_component_ref idref="oc-7b"/>
  1726. <object_component_ref idref="oc-57"/>
  1727. <object_component_ref idref="oc-f2"/>
  1728. <object_component_ref idref="oc-f3"/>
  1729. <object_component_ref idref="oc-a9"/>
  1730. <object_component_ref idref="oc-13c"/>
  1731. </contents>
  1732. </logical_group>
  1733. <logical_group id="lg-11d" display="never" color="cyan">
  1734. <name>.debug_info</name>
  1735. <load_address>0x0</load_address>
  1736. <run_address>0x0</run_address>
  1737. <size>0x6484</size>
  1738. <contents>
  1739. <object_component_ref idref="oc-65"/>
  1740. <object_component_ref idref="oc-7e"/>
  1741. <object_component_ref idref="oc-19"/>
  1742. <object_component_ref idref="oc-83"/>
  1743. <object_component_ref idref="oc-c7"/>
  1744. <object_component_ref idref="oc-bc"/>
  1745. <object_component_ref idref="oc-c2"/>
  1746. <object_component_ref idref="oc-48"/>
  1747. <object_component_ref idref="oc-21"/>
  1748. <object_component_ref idref="oc-1d"/>
  1749. <object_component_ref idref="oc-1b"/>
  1750. <object_component_ref idref="oc-91"/>
  1751. <object_component_ref idref="oc-99"/>
  1752. <object_component_ref idref="oc-60"/>
  1753. <object_component_ref idref="oc-40"/>
  1754. <object_component_ref idref="oc-dc"/>
  1755. <object_component_ref idref="oc-ee"/>
  1756. <object_component_ref idref="oc-74"/>
  1757. <object_component_ref idref="oc-13b"/>
  1758. </contents>
  1759. </logical_group>
  1760. <logical_group id="lg-11f" display="never" color="cyan">
  1761. <name>.debug_ranges</name>
  1762. <load_address>0x0</load_address>
  1763. <run_address>0x0</run_address>
  1764. <size>0x518</size>
  1765. <contents>
  1766. <object_component_ref idref="oc-66"/>
  1767. <object_component_ref idref="oc-7f"/>
  1768. <object_component_ref idref="oc-30"/>
  1769. <object_component_ref idref="oc-84"/>
  1770. <object_component_ref idref="oc-bd"/>
  1771. <object_component_ref idref="oc-c3"/>
  1772. <object_component_ref idref="oc-49"/>
  1773. <object_component_ref idref="oc-3e"/>
  1774. <object_component_ref idref="oc-39"/>
  1775. <object_component_ref idref="oc-92"/>
  1776. <object_component_ref idref="oc-9a"/>
  1777. <object_component_ref idref="oc-ef"/>
  1778. <object_component_ref idref="oc-77"/>
  1779. </contents>
  1780. </logical_group>
  1781. <logical_group id="lg-121" display="never" color="cyan">
  1782. <name>.debug_str</name>
  1783. <load_address>0x0</load_address>
  1784. <run_address>0x0</run_address>
  1785. <size>0x4848</size>
  1786. <contents>
  1787. <object_component_ref idref="oc-8f"/>
  1788. <object_component_ref idref="oc-b7"/>
  1789. <object_component_ref idref="oc-35"/>
  1790. <object_component_ref idref="oc-b9"/>
  1791. <object_component_ref idref="oc-e2"/>
  1792. <object_component_ref idref="oc-de"/>
  1793. <object_component_ref idref="oc-e0"/>
  1794. <object_component_ref idref="oc-59"/>
  1795. <object_component_ref idref="oc-44"/>
  1796. <object_component_ref idref="oc-3c"/>
  1797. <object_component_ref idref="oc-37"/>
  1798. <object_component_ref idref="oc-cb"/>
  1799. <object_component_ref idref="oc-d1"/>
  1800. <object_component_ref idref="oc-7c"/>
  1801. <object_component_ref idref="oc-f4"/>
  1802. </contents>
  1803. </logical_group>
  1804. <logical_group id="lg-123" display="never" color="cyan">
  1805. <name>.debug_frame</name>
  1806. <load_address>0x0</load_address>
  1807. <run_address>0x0</run_address>
  1808. <size>0x5fc</size>
  1809. <contents>
  1810. <object_component_ref idref="oc-67"/>
  1811. <object_component_ref idref="oc-80"/>
  1812. <object_component_ref idref="oc-31"/>
  1813. <object_component_ref idref="oc-85"/>
  1814. <object_component_ref idref="oc-c8"/>
  1815. <object_component_ref idref="oc-be"/>
  1816. <object_component_ref idref="oc-c4"/>
  1817. <object_component_ref idref="oc-4a"/>
  1818. <object_component_ref idref="oc-22"/>
  1819. <object_component_ref idref="oc-1e"/>
  1820. <object_component_ref idref="oc-4e"/>
  1821. <object_component_ref idref="oc-93"/>
  1822. <object_component_ref idref="oc-9b"/>
  1823. <object_component_ref idref="oc-61"/>
  1824. <object_component_ref idref="oc-f0"/>
  1825. </contents>
  1826. </logical_group>
  1827. <logical_group id="lg-125" display="never" color="cyan">
  1828. <name>.debug_line</name>
  1829. <load_address>0x0</load_address>
  1830. <run_address>0x0</run_address>
  1831. <size>0x2a4c</size>
  1832. <contents>
  1833. <object_component_ref idref="oc-68"/>
  1834. <object_component_ref idref="oc-81"/>
  1835. <object_component_ref idref="oc-32"/>
  1836. <object_component_ref idref="oc-86"/>
  1837. <object_component_ref idref="oc-c9"/>
  1838. <object_component_ref idref="oc-bf"/>
  1839. <object_component_ref idref="oc-c5"/>
  1840. <object_component_ref idref="oc-4b"/>
  1841. <object_component_ref idref="oc-23"/>
  1842. <object_component_ref idref="oc-1f"/>
  1843. <object_component_ref idref="oc-38"/>
  1844. <object_component_ref idref="oc-94"/>
  1845. <object_component_ref idref="oc-9c"/>
  1846. <object_component_ref idref="oc-62"/>
  1847. <object_component_ref idref="oc-42"/>
  1848. <object_component_ref idref="oc-db"/>
  1849. <object_component_ref idref="oc-f1"/>
  1850. <object_component_ref idref="oc-76"/>
  1851. </contents>
  1852. </logical_group>
  1853. <logical_group id="lg-12f" display="never" color="cyan">
  1854. <name>.debug_aranges</name>
  1855. <load_address>0x0</load_address>
  1856. <run_address>0x0</run_address>
  1857. <size>0x68</size>
  1858. <contents>
  1859. <object_component_ref idref="oc-41"/>
  1860. <object_component_ref idref="oc-da"/>
  1861. <object_component_ref idref="oc-75"/>
  1862. </contents>
  1863. </logical_group>
  1864. <logical_group id="lg-139" display="no" color="cyan">
  1865. <name>Veneer$$CMSE</name>
  1866. <run_address>0x0</run_address>
  1867. <size>0x0</size>
  1868. <contents>
  1869. </contents>
  1870. </logical_group>
  1871. <load_segment id="lg-141" display="no" color="cyan">
  1872. <name>SEGMENT_0</name>
  1873. <load_address>0x0</load_address>
  1874. <run_address>0x0</run_address>
  1875. <size>0x870</size>
  1876. <flags>0x5</flags>
  1877. <contents>
  1878. <logical_group_ref idref="lg-2"/>
  1879. <logical_group_ref idref="lg-3"/>
  1880. <logical_group_ref idref="lg-7"/>
  1881. <logical_group_ref idref="lg-5"/>
  1882. </contents>
  1883. </load_segment>
  1884. <load_segment id="lg-142" display="no" color="cyan">
  1885. <name>SEGMENT_1</name>
  1886. <run_address>0x20200000</run_address>
  1887. <size>0xf1</size>
  1888. <flags>0x6</flags>
  1889. <contents>
  1890. <logical_group_ref idref="lg-f"/>
  1891. <logical_group_ref idref="lg-e"/>
  1892. </contents>
  1893. </load_segment>
  1894. <load_segment id="lg-143" display="no" color="cyan">
  1895. <name>SEGMENT_2</name>
  1896. <run_address>0x20207e00</run_address>
  1897. <size>0x200</size>
  1898. <flags>0x6</flags>
  1899. <contents>
  1900. <logical_group_ref idref="lg-11"/>
  1901. </contents>
  1902. </load_segment>
  1903. </logical_group_list>
  1904. <placement_map>
  1905. <memory_area display="yes" color="green">
  1906. <name>FLASH</name>
  1907. <page_id>0x0</page_id>
  1908. <origin>0x0</origin>
  1909. <length>0x20000</length>
  1910. <used_space>0x870</used_space>
  1911. <unused_space>0x1f790</unused_space>
  1912. <attributes>RX</attributes>
  1913. <usage_details>
  1914. <allocated_space>
  1915. <start_address>0x0</start_address>
  1916. <size>0x0</size>
  1917. <logical_group_ref idref="lg-a"/>
  1918. </allocated_space>
  1919. <allocated_space>
  1920. <start_address>0x0</start_address>
  1921. <size>0xc0</size>
  1922. <logical_group_ref idref="lg-2"/>
  1923. </allocated_space>
  1924. <allocated_space>
  1925. <start_address>0xc0</start_address>
  1926. <size>0x760</size>
  1927. <logical_group_ref idref="lg-3"/>
  1928. </allocated_space>
  1929. <allocated_space>
  1930. <start_address>0x820</start_address>
  1931. <size>0x8</size>
  1932. <logical_group_ref idref="lg-7"/>
  1933. </allocated_space>
  1934. <allocated_space>
  1935. <start_address>0x828</start_address>
  1936. <size>0x48</size>
  1937. <logical_group_ref idref="lg-5"/>
  1938. </allocated_space>
  1939. <available_space>
  1940. <start_address>0x870</start_address>
  1941. <size>0x1f790</size>
  1942. </available_space>
  1943. </usage_details>
  1944. </memory_area>
  1945. <memory_area display="yes" color="green">
  1946. <name>SRAM</name>
  1947. <page_id>0x0</page_id>
  1948. <origin>0x20200000</origin>
  1949. <length>0x8000</length>
  1950. <used_space>0x2f1</used_space>
  1951. <unused_space>0x7d0f</unused_space>
  1952. <attributes>RWX</attributes>
  1953. <usage_details>
  1954. <allocated_space>
  1955. <start_address>0x20200000</start_address>
  1956. <size>0x0</size>
  1957. <logical_group_ref idref="lg-fb"/>
  1958. </allocated_space>
  1959. <allocated_space>
  1960. <start_address>0x20200000</start_address>
  1961. <size>0x0</size>
  1962. <logical_group_ref idref="lg-fd"/>
  1963. </allocated_space>
  1964. <allocated_space>
  1965. <start_address>0x20200000</start_address>
  1966. <size>0xb0</size>
  1967. <logical_group_ref idref="lg-f"/>
  1968. </allocated_space>
  1969. <allocated_space>
  1970. <start_address>0x202000b0</start_address>
  1971. <size>0x41</size>
  1972. <logical_group_ref idref="lg-e"/>
  1973. </allocated_space>
  1974. <available_space>
  1975. <start_address>0x202000f1</start_address>
  1976. <size>0x7d0f</size>
  1977. </available_space>
  1978. <allocated_space>
  1979. <start_address>0x20207e00</start_address>
  1980. <size>0x200</size>
  1981. <logical_group_ref idref="lg-11"/>
  1982. </allocated_space>
  1983. </usage_details>
  1984. </memory_area>
  1985. <memory_area display="yes" color="green">
  1986. <name>BCR_CONFIG</name>
  1987. <page_id>0x0</page_id>
  1988. <origin>0x41c00000</origin>
  1989. <length>0x80</length>
  1990. <used_space>0x0</used_space>
  1991. <unused_space>0x80</unused_space>
  1992. <attributes>R</attributes>
  1993. <usage_details>
  1994. </usage_details>
  1995. </memory_area>
  1996. <memory_area display="yes" color="green">
  1997. <name>BSL_CONFIG</name>
  1998. <page_id>0x0</page_id>
  1999. <origin>0x41c00100</origin>
  2000. <length>0x80</length>
  2001. <used_space>0x0</used_space>
  2002. <unused_space>0x80</unused_space>
  2003. <attributes>R</attributes>
  2004. <usage_details>
  2005. </usage_details>
  2006. </memory_area>
  2007. </placement_map>
  2008. <cptbl_list>
  2009. <cptbl>
  2010. <name>__TI_cinit_table</name>
  2011. <cprec>
  2012. <name>.data</name>
  2013. <load_address>0x828</load_address>
  2014. <load_size>0x23</load_size>
  2015. <run_address>0x202000b0</run_address>
  2016. <run_size>0x41</run_size>
  2017. <compression>lzss</compression>
  2018. </cprec>
  2019. <cprec>
  2020. <name>.bss</name>
  2021. <load_address>0x858</load_address>
  2022. <load_size>0x8</load_size>
  2023. <run_address>0x20200000</run_address>
  2024. <run_size>0xb0</run_size>
  2025. <compression>zero_init</compression>
  2026. </cprec>
  2027. </cptbl>
  2028. </cptbl_list>
  2029. <handler_table>
  2030. <handler_table_name>__TI_handler_table</handler_table_name>
  2031. <handler>
  2032. <index>0x0</index>
  2033. <name>__TI_decompress_lzss</name>
  2034. </handler>
  2035. <handler>
  2036. <index>0x1</index>
  2037. <name>__TI_decompress_none</name>
  2038. </handler>
  2039. <handler>
  2040. <index>0x2</index>
  2041. <name>__TI_zero_init</name>
  2042. </handler>
  2043. </handler_table>
  2044. <symbol_table>
  2045. <symbol id="sm-1">
  2046. <name>__start___llvm_prf_cnts</name>
  2047. <value>0x20200000</value>
  2048. </symbol>
  2049. <symbol id="sm-2">
  2050. <name>__stop___llvm_prf_cnts</name>
  2051. <value>0x20200000</value>
  2052. </symbol>
  2053. <symbol id="sm-3">
  2054. <name>__start___llvm_prf_bits</name>
  2055. <value>0x20200000</value>
  2056. </symbol>
  2057. <symbol id="sm-4">
  2058. <name>__stop___llvm_prf_bits</name>
  2059. <value>0x20200000</value>
  2060. </symbol>
  2061. <symbol id="sm-5">
  2062. <name>__TI_CINIT_Base</name>
  2063. <value>0x860</value>
  2064. </symbol>
  2065. <symbol id="sm-6">
  2066. <name>__TI_CINIT_Limit</name>
  2067. <value>0x870</value>
  2068. </symbol>
  2069. <symbol id="sm-7">
  2070. <name>__TI_CINIT_Warm</name>
  2071. <value>0x870</value>
  2072. </symbol>
  2073. <symbol id="sm-8">
  2074. <name>__TI_Handler_Table_Base</name>
  2075. <value>0x84c</value>
  2076. </symbol>
  2077. <symbol id="sm-9">
  2078. <name>__TI_Handler_Table_Limit</name>
  2079. <value>0x858</value>
  2080. </symbol>
  2081. <symbol id="sm-a">
  2082. <name>binit</name>
  2083. <value>0xffffffff</value>
  2084. </symbol>
  2085. <symbol id="sm-b">
  2086. <name>__binit__</name>
  2087. <value>0xffffffff</value>
  2088. </symbol>
  2089. <symbol id="sm-c">
  2090. <name>__STACK_SIZE</name>
  2091. <value>0x200</value>
  2092. </symbol>
  2093. <symbol id="sm-d">
  2094. <name>__STACK_END</name>
  2095. <value>0x20208000</value>
  2096. </symbol>
  2097. <symbol id="sm-e">
  2098. <name>__TI_pprof_out_hndl</name>
  2099. <value>0xffffffff</value>
  2100. </symbol>
  2101. <symbol id="sm-f">
  2102. <name>__TI_prof_data_start</name>
  2103. <value>0xffffffff</value>
  2104. </symbol>
  2105. <symbol id="sm-10">
  2106. <name>__TI_prof_data_size</name>
  2107. <value>0xffffffff</value>
  2108. </symbol>
  2109. <symbol id="sm-3d">
  2110. <name>main</name>
  2111. <value>0x275</value>
  2112. <object_component_ref idref="oc-63"/>
  2113. </symbol>
  2114. <symbol id="sm-3e">
  2115. <name>gI2C</name>
  2116. <value>0x20200000</value>
  2117. </symbol>
  2118. <symbol id="sm-3f">
  2119. <name>gTxData</name>
  2120. <value>0x202000b0</value>
  2121. <object_component_ref idref="oc-8b"/>
  2122. </symbol>
  2123. <symbol id="sm-40">
  2124. <name>gCommand</name>
  2125. <value>0x2020009c</value>
  2126. </symbol>
  2127. <symbol id="sm-41">
  2128. <name>gSendCommand</name>
  2129. <value>0x202000f0</value>
  2130. <object_component_ref idref="oc-8d"/>
  2131. </symbol>
  2132. <symbol id="sm-5c">
  2133. <name>SYSCFG_DL_init</name>
  2134. <value>0x7bf</value>
  2135. <object_component_ref idref="oc-7d"/>
  2136. </symbol>
  2137. <symbol id="sm-5d">
  2138. <name>SYSCFG_DL_initPower</name>
  2139. <value>0x621</value>
  2140. <object_component_ref idref="oc-b0"/>
  2141. </symbol>
  2142. <symbol id="sm-5e">
  2143. <name>SYSCFG_DL_GPIO_init</name>
  2144. <value>0x75d</value>
  2145. <object_component_ref idref="oc-b1"/>
  2146. </symbol>
  2147. <symbol id="sm-5f">
  2148. <name>SYSCFG_DL_SYSCTL_init</name>
  2149. <value>0x6dd</value>
  2150. <object_component_ref idref="oc-b2"/>
  2151. </symbol>
  2152. <symbol id="sm-60">
  2153. <name>SYSCFG_DL_I2C_controller_init</name>
  2154. <value>0x555</value>
  2155. <object_component_ref idref="oc-b4"/>
  2156. </symbol>
  2157. <symbol id="sm-61">
  2158. <name>SYSCFG_DL_CRC_init</name>
  2159. <value>0x781</value>
  2160. <object_component_ref idref="oc-b5"/>
  2161. </symbol>
  2162. <symbol id="sm-6c">
  2163. <name>Default_Handler</name>
  2164. <value>0x3af</value>
  2165. <object_component_ref idref="oc-33"/>
  2166. </symbol>
  2167. <symbol id="sm-6d">
  2168. <name>Reset_Handler</name>
  2169. <value>0x811</value>
  2170. <object_component_ref idref="oc-2f"/>
  2171. </symbol>
  2172. <symbol id="sm-6e">
  2173. <name>interruptVectors</name>
  2174. <value>0x0</value>
  2175. <object_component_ref idref="oc-18"/>
  2176. </symbol>
  2177. <symbol id="sm-6f">
  2178. <name>NMI_Handler</name>
  2179. <value>0x3af</value>
  2180. <object_component_ref idref="oc-33"/>
  2181. </symbol>
  2182. <symbol id="sm-70">
  2183. <name>HardFault_Handler</name>
  2184. <value>0x3af</value>
  2185. <object_component_ref idref="oc-33"/>
  2186. </symbol>
  2187. <symbol id="sm-71">
  2188. <name>SVC_Handler</name>
  2189. <value>0x3af</value>
  2190. <object_component_ref idref="oc-33"/>
  2191. </symbol>
  2192. <symbol id="sm-72">
  2193. <name>PendSV_Handler</name>
  2194. <value>0x3af</value>
  2195. <object_component_ref idref="oc-33"/>
  2196. </symbol>
  2197. <symbol id="sm-73">
  2198. <name>SysTick_Handler</name>
  2199. <value>0x3af</value>
  2200. <object_component_ref idref="oc-33"/>
  2201. </symbol>
  2202. <symbol id="sm-74">
  2203. <name>GROUP0_IRQHandler</name>
  2204. <value>0x3af</value>
  2205. <object_component_ref idref="oc-33"/>
  2206. </symbol>
  2207. <symbol id="sm-75">
  2208. <name>GROUP1_IRQHandler</name>
  2209. <value>0x3af</value>
  2210. <object_component_ref idref="oc-33"/>
  2211. </symbol>
  2212. <symbol id="sm-76">
  2213. <name>TIMG8_IRQHandler</name>
  2214. <value>0x3af</value>
  2215. <object_component_ref idref="oc-33"/>
  2216. </symbol>
  2217. <symbol id="sm-77">
  2218. <name>UART3_IRQHandler</name>
  2219. <value>0x3af</value>
  2220. <object_component_ref idref="oc-33"/>
  2221. </symbol>
  2222. <symbol id="sm-78">
  2223. <name>ADC0_IRQHandler</name>
  2224. <value>0x3af</value>
  2225. <object_component_ref idref="oc-33"/>
  2226. </symbol>
  2227. <symbol id="sm-79">
  2228. <name>ADC1_IRQHandler</name>
  2229. <value>0x3af</value>
  2230. <object_component_ref idref="oc-33"/>
  2231. </symbol>
  2232. <symbol id="sm-7a">
  2233. <name>CANFD0_IRQHandler</name>
  2234. <value>0x3af</value>
  2235. <object_component_ref idref="oc-33"/>
  2236. </symbol>
  2237. <symbol id="sm-7b">
  2238. <name>DAC0_IRQHandler</name>
  2239. <value>0x3af</value>
  2240. <object_component_ref idref="oc-33"/>
  2241. </symbol>
  2242. <symbol id="sm-7c">
  2243. <name>SPI0_IRQHandler</name>
  2244. <value>0x3af</value>
  2245. <object_component_ref idref="oc-33"/>
  2246. </symbol>
  2247. <symbol id="sm-7d">
  2248. <name>SPI1_IRQHandler</name>
  2249. <value>0x3af</value>
  2250. <object_component_ref idref="oc-33"/>
  2251. </symbol>
  2252. <symbol id="sm-7e">
  2253. <name>UART1_IRQHandler</name>
  2254. <value>0x3af</value>
  2255. <object_component_ref idref="oc-33"/>
  2256. </symbol>
  2257. <symbol id="sm-7f">
  2258. <name>UART2_IRQHandler</name>
  2259. <value>0x3af</value>
  2260. <object_component_ref idref="oc-33"/>
  2261. </symbol>
  2262. <symbol id="sm-80">
  2263. <name>UART0_IRQHandler</name>
  2264. <value>0x3af</value>
  2265. <object_component_ref idref="oc-33"/>
  2266. </symbol>
  2267. <symbol id="sm-81">
  2268. <name>TIMG0_IRQHandler</name>
  2269. <value>0x3af</value>
  2270. <object_component_ref idref="oc-33"/>
  2271. </symbol>
  2272. <symbol id="sm-82">
  2273. <name>TIMG6_IRQHandler</name>
  2274. <value>0x3af</value>
  2275. <object_component_ref idref="oc-33"/>
  2276. </symbol>
  2277. <symbol id="sm-83">
  2278. <name>TIMA0_IRQHandler</name>
  2279. <value>0x3af</value>
  2280. <object_component_ref idref="oc-33"/>
  2281. </symbol>
  2282. <symbol id="sm-84">
  2283. <name>TIMA1_IRQHandler</name>
  2284. <value>0x3af</value>
  2285. <object_component_ref idref="oc-33"/>
  2286. </symbol>
  2287. <symbol id="sm-85">
  2288. <name>TIMG7_IRQHandler</name>
  2289. <value>0x3af</value>
  2290. <object_component_ref idref="oc-33"/>
  2291. </symbol>
  2292. <symbol id="sm-86">
  2293. <name>TIMG12_IRQHandler</name>
  2294. <value>0x3af</value>
  2295. <object_component_ref idref="oc-33"/>
  2296. </symbol>
  2297. <symbol id="sm-87">
  2298. <name>I2C0_IRQHandler</name>
  2299. <value>0x3af</value>
  2300. <object_component_ref idref="oc-33"/>
  2301. </symbol>
  2302. <symbol id="sm-88">
  2303. <name>I2C1_IRQHandler</name>
  2304. <value>0x3af</value>
  2305. <object_component_ref idref="oc-33"/>
  2306. </symbol>
  2307. <symbol id="sm-89">
  2308. <name>AES_IRQHandler</name>
  2309. <value>0x3af</value>
  2310. <object_component_ref idref="oc-33"/>
  2311. </symbol>
  2312. <symbol id="sm-8a">
  2313. <name>RTC_IRQHandler</name>
  2314. <value>0x3af</value>
  2315. <object_component_ref idref="oc-33"/>
  2316. </symbol>
  2317. <symbol id="sm-8b">
  2318. <name>DMA_IRQHandler</name>
  2319. <value>0x3af</value>
  2320. <object_component_ref idref="oc-33"/>
  2321. </symbol>
  2322. <symbol id="sm-9b">
  2323. <name>I2C_init</name>
  2324. <value>0x7a1</value>
  2325. <object_component_ref idref="oc-82"/>
  2326. </symbol>
  2327. <symbol id="sm-9c">
  2328. <name>I2C_sendCommand</name>
  2329. <value>0xc1</value>
  2330. <object_component_ref idref="oc-87"/>
  2331. </symbol>
  2332. <symbol id="sm-9d">
  2333. <name>I2C_getResponse</name>
  2334. <value>0x449</value>
  2335. <object_component_ref idref="oc-89"/>
  2336. </symbol>
  2337. <symbol id="sm-9e">
  2338. <name>__TI_ATRegion0_src_addr</name>
  2339. <value>0x0</value>
  2340. </symbol>
  2341. <symbol id="sm-9f">
  2342. <name>__TI_ATRegion0_trg_addr</name>
  2343. <value>0x0</value>
  2344. </symbol>
  2345. <symbol id="sm-a0">
  2346. <name>__TI_ATRegion0_region_sz</name>
  2347. <value>0x0</value>
  2348. </symbol>
  2349. <symbol id="sm-a1">
  2350. <name>__TI_ATRegion1_src_addr</name>
  2351. <value>0x0</value>
  2352. </symbol>
  2353. <symbol id="sm-a2">
  2354. <name>__TI_ATRegion1_trg_addr</name>
  2355. <value>0x0</value>
  2356. </symbol>
  2357. <symbol id="sm-a3">
  2358. <name>__TI_ATRegion1_region_sz</name>
  2359. <value>0x0</value>
  2360. </symbol>
  2361. <symbol id="sm-a4">
  2362. <name>__TI_ATRegion2_src_addr</name>
  2363. <value>0x0</value>
  2364. </symbol>
  2365. <symbol id="sm-a5">
  2366. <name>__TI_ATRegion2_trg_addr</name>
  2367. <value>0x0</value>
  2368. </symbol>
  2369. <symbol id="sm-a6">
  2370. <name>__TI_ATRegion2_region_sz</name>
  2371. <value>0x0</value>
  2372. </symbol>
  2373. <symbol id="sm-af">
  2374. <name>DL_Common_delayCycles</name>
  2375. <value>0x7ff</value>
  2376. <object_component_ref idref="oc-c6"/>
  2377. </symbol>
  2378. <symbol id="sm-ba">
  2379. <name>DL_CRC_calculateBlock16</name>
  2380. <value>0x3b1</value>
  2381. <object_component_ref idref="oc-ba"/>
  2382. </symbol>
  2383. <symbol id="sm-c6">
  2384. <name>DL_I2C_setClockConfig</name>
  2385. <value>0x735</value>
  2386. <object_component_ref idref="oc-d7"/>
  2387. </symbol>
  2388. <symbol id="sm-c7">
  2389. <name>DL_I2C_fillControllerTXFIFO</name>
  2390. <value>0x5c1</value>
  2391. <object_component_ref idref="oc-c0"/>
  2392. </symbol>
  2393. <symbol id="sm-d1">
  2394. <name>__TI_zero_init_nomemset</name>
  2395. <value>0x7d7</value>
  2396. <object_component_ref idref="oc-46"/>
  2397. </symbol>
  2398. <symbol id="sm-da">
  2399. <name>__TI_decompress_none</name>
  2400. <value>0x7ed</value>
  2401. <object_component_ref idref="oc-20"/>
  2402. </symbol>
  2403. <symbol id="sm-e5">
  2404. <name>__TI_decompress_lzss</name>
  2405. <value>0x4d9</value>
  2406. <object_component_ref idref="oc-1c"/>
  2407. </symbol>
  2408. <symbol id="sm-f0">
  2409. <name>_c_int00_noargs</name>
  2410. <value>0x70d</value>
  2411. <object_component_ref idref="oc-4f"/>
  2412. </symbol>
  2413. <symbol id="sm-f1">
  2414. <name>__stack</name>
  2415. <value>0x20207e00</value>
  2416. <object_component_ref idref="oc-1a"/>
  2417. </symbol>
  2418. <symbol id="sm-fc">
  2419. <name>abort</name>
  2420. <value>0x819</value>
  2421. <object_component_ref idref="oc-90"/>
  2422. </symbol>
  2423. <symbol id="sm-fd">
  2424. <name>C$$EXIT</name>
  2425. <value>0x818</value>
  2426. <object_component_ref idref="oc-90"/>
  2427. </symbol>
  2428. <symbol id="sm-10a">
  2429. <name>__TI_auto_init_nobinit_nopinit</name>
  2430. <value>0x6a1</value>
  2431. <object_component_ref idref="oc-97"/>
  2432. </symbol>
  2433. <symbol id="sm-112">
  2434. <name>_system_pre_init</name>
  2435. <value>0x815</value>
  2436. <object_component_ref idref="oc-5f"/>
  2437. </symbol>
  2438. <symbol id="sm-119">
  2439. <name>__aeabi_memcpy</name>
  2440. <value>0x809</value>
  2441. <object_component_ref idref="oc-3f"/>
  2442. </symbol>
  2443. <symbol id="sm-11a">
  2444. <name>__aeabi_memcpy4</name>
  2445. <value>0x809</value>
  2446. <object_component_ref idref="oc-3f"/>
  2447. </symbol>
  2448. <symbol id="sm-11b">
  2449. <name>__aeabi_memcpy8</name>
  2450. <value>0x809</value>
  2451. <object_component_ref idref="oc-3f"/>
  2452. </symbol>
  2453. <symbol id="sm-121">
  2454. <name>__aeabi_uidiv</name>
  2455. <value>0x661</value>
  2456. <object_component_ref idref="oc-d9"/>
  2457. </symbol>
  2458. <symbol id="sm-122">
  2459. <name>__aeabi_uidivmod</name>
  2460. <value>0x661</value>
  2461. <object_component_ref idref="oc-d9"/>
  2462. </symbol>
  2463. <symbol id="sm-12c">
  2464. <name>__aeabi_idiv0</name>
  2465. <value>0x61f</value>
  2466. <object_component_ref idref="oc-ed"/>
  2467. </symbol>
  2468. <symbol id="sm-145">
  2469. <name>memcpy</name>
  2470. <value>0x315</value>
  2471. <object_component_ref idref="oc-78"/>
  2472. </symbol>
  2473. <symbol id="sm-146">
  2474. <name>__TI_static_base__</name>
  2475. <value>0x0</value>
  2476. </symbol>
  2477. <symbol id="sm-149">
  2478. <name>__mpu_init</name>
  2479. <value>0x0</value>
  2480. </symbol>
  2481. <symbol id="sm-14a">
  2482. <name>_system_post_cinit</name>
  2483. <value>0x0</value>
  2484. </symbol>
  2485. </symbol_table>
  2486. <title>Link successful</title>
  2487. </link_info>