| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487 |
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <link_info>
- <banner>TI ARM Clang Linker Unix v4.0.0.LTS</banner>
- <copyright>Copyright (c) 1996-2018 Texas Instruments Incorporated</copyright>
- <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>
- <link_time>0x67aefc3c</link_time>
- <link_errors>0x0</link_errors>
- <output_file>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/charge_controller_v7.out</output_file>
- <entry_point>
- <name>_c_int00_noargs</name>
- <address>0x70d</address>
- </entry_point>
- <input_file_list>
- <input_file id="fl-1">
- <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./</path>
- <kind>object</kind>
- <file>i2c_controller.o</file>
- <name>i2c_controller.o</name>
- </input_file>
- <input_file id="fl-2">
- <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./</path>
- <kind>object</kind>
- <file>ti_msp_dl_config.o</file>
- <name>ti_msp_dl_config.o</name>
- </input_file>
- <input_file id="fl-3">
- <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./</path>
- <kind>object</kind>
- <file>startup_mspm0g350x_ticlang.o</file>
- <name>startup_mspm0g350x_ticlang.o</name>
- </input_file>
- <input_file id="fl-4">
- <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/./ti/comm_modules/i2c/controller/</path>
- <kind>object</kind>
- <file>i2c_comm_controller.o</file>
- <name>i2c_comm_controller.o</name>
- </input_file>
- <input_file id="fl-11">
- <path>/home/ngosh/workspace_ccstheia/charge_controller_v7/Debug/</path>
- <kind>object</kind>
- <file><internal></file>
- <name><internal></name>
- </input_file>
- <input_file id="fl-12">
- <path>/home/ngosh/ti/mspm0_sdk_2_03_00_07/source/ti/driverlib/lib/ticlang/m0p/mspm0g1x0x_g3x0x/</path>
- <kind>archive</kind>
- <file>driverlib.a</file>
- <name>dl_common.o</name>
- </input_file>
- <input_file id="fl-13">
- <path>/home/ngosh/ti/mspm0_sdk_2_03_00_07/source/ti/driverlib/lib/ticlang/m0p/mspm0g1x0x_g3x0x/</path>
- <kind>archive</kind>
- <file>driverlib.a</file>
- <name>dl_crc.o</name>
- </input_file>
- <input_file id="fl-14">
- <path>/home/ngosh/ti/mspm0_sdk_2_03_00_07/source/ti/driverlib/lib/ticlang/m0p/mspm0g1x0x_g3x0x/</path>
- <kind>archive</kind>
- <file>driverlib.a</file>
- <name>dl_i2c.o</name>
- </input_file>
- <input_file id="fl-29">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>copy_zero_init.c.obj</name>
- </input_file>
- <input_file id="fl-2a">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>copy_decompress_none.c.obj</name>
- </input_file>
- <input_file id="fl-2b">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>copy_decompress_lzss.c.obj</name>
- </input_file>
- <input_file id="fl-2c">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>boot_cortex_m.c.obj</name>
- </input_file>
- <input_file id="fl-2d">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>mathacl_init.c.obj</name>
- </input_file>
- <input_file id="fl-2e">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>exit.c.obj</name>
- </input_file>
- <input_file id="fl-2f">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>_lock.c.obj</name>
- </input_file>
- <input_file id="fl-30">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>args_main.c.obj</name>
- </input_file>
- <input_file id="fl-31">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>autoinit.c.obj</name>
- </input_file>
- <input_file id="fl-32">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>pre_init.c.obj</name>
- </input_file>
- <input_file id="fl-33">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>cpy_tbl.c.obj</name>
- </input_file>
- <input_file id="fl-c9">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_memcpy.S.obj</name>
- </input_file>
- <input_file id="fl-ca">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_memset.S.obj</name>
- </input_file>
- <input_file id="fl-cb">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_uidivmod.S.obj</name>
- </input_file>
- <input_file id="fl-cc">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/</path>
- <kind>archive</kind>
- <file>libclang_rt.builtins.a</file>
- <name>aeabi_div0.c.obj</name>
- </input_file>
- <input_file id="fl-cd">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>memcpy16.S.obj</name>
- </input_file>
- <input_file id="fl-ce">
- <path>/home/ngosh/ti/ccstheia151/ccs/tools/compiler/ti-cgt-armllvm_4.0.0.LTS/lib/armv6m-ti-none-eabi/c/</path>
- <kind>archive</kind>
- <file>libc.a</file>
- <name>memset16.S.obj</name>
- </input_file>
- </input_file_list>
- <object_component_list>
- <object_component id="oc-18">
- <name>.intvecs</name>
- <load_address>0x0</load_address>
- <readonly>true</readonly>
- <run_address>0x0</run_address>
- <size>0xc0</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-87">
- <name>.text.I2C_sendCommand</name>
- <load_address>0xc0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0xc0</run_address>
- <size>0x1b4</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-63">
- <name>.text.main</name>
- <load_address>0x274</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x274</run_address>
- <size>0xa0</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-78">
- <name>.text:memcpy</name>
- <load_address>0x314</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x314</run_address>
- <size>0x9a</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cd"/>
- </object_component>
- <object_component id="oc-33">
- <name>.text.Default_Handler</name>
- <load_address>0x3ae</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x3ae</run_address>
- <size>0x2</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-ba">
- <name>.text.DL_CRC_calculateBlock16</name>
- <load_address>0x3b0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x3b0</run_address>
- <size>0x98</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-89">
- <name>.text.I2C_getResponse</name>
- <load_address>0x448</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x448</run_address>
- <size>0x90</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-1c">
- <name>.text:decompress:lzss</name>
- <load_address>0x4d8</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x4d8</run_address>
- <size>0x7c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-b4">
- <name>.text.SYSCFG_DL_I2C_controller_init</name>
- <load_address>0x554</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x554</run_address>
- <size>0x6c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-c0">
- <name>.text.DL_I2C_fillControllerTXFIFO</name>
- <load_address>0x5c0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x5c0</run_address>
- <size>0x5e</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-ed">
- <name>.text.__aeabi_idiv0</name>
- <load_address>0x61e</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x61e</run_address>
- <size>0x2</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-b0">
- <name>.text.SYSCFG_DL_initPower</name>
- <load_address>0x620</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x620</run_address>
- <size>0x40</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-d9">
- <name>.text.__aeabi_uidivmod</name>
- <load_address>0x660</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x660</run_address>
- <size>0x40</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-cb"/>
- </object_component>
- <object_component id="oc-97">
- <name>.text:__TI_auto_init_nobinit_nopinit</name>
- <load_address>0x6a0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x6a0</run_address>
- <size>0x3c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-b2">
- <name>.text.SYSCFG_DL_SYSCTL_init</name>
- <load_address>0x6dc</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x6dc</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-4f">
- <name>.text:_c_int00_noargs</name>
- <load_address>0x70c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x70c</run_address>
- <size>0x28</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-d7">
- <name>.text.DL_I2C_setClockConfig</name>
- <load_address>0x734</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x734</run_address>
- <size>0x26</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-b1">
- <name>.text.SYSCFG_DL_GPIO_init</name>
- <load_address>0x75c</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x75c</run_address>
- <size>0x24</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-b5">
- <name>.text.SYSCFG_DL_CRC_init</name>
- <load_address>0x780</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x780</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-82">
- <name>.text.I2C_init</name>
- <load_address>0x7a0</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x7a0</run_address>
- <size>0x1e</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-7d">
- <name>.text.SYSCFG_DL_init</name>
- <load_address>0x7be</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x7be</run_address>
- <size>0x18</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-46">
- <name>.text:decompress:ZI:__TI_zero_init_nomemset</name>
- <load_address>0x7d6</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x7d6</run_address>
- <size>0x16</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-20">
- <name>.text:decompress:none</name>
- <load_address>0x7ec</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x7ec</run_address>
- <size>0x12</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-2a"/>
- </object_component>
- <object_component id="oc-c6">
- <name>.text.DL_Common_delayCycles</name>
- <load_address>0x7fe</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x7fe</run_address>
- <size>0xa</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-12"/>
- </object_component>
- <object_component id="oc-3f">
- <name>.text.__aeabi_memcpy</name>
- <load_address>0x808</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x808</run_address>
- <size>0x8</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-c9"/>
- </object_component>
- <object_component id="oc-2f">
- <name>.text.Reset_Handler</name>
- <load_address>0x810</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x810</run_address>
- <size>0x4</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-5f">
- <name>.text._system_pre_init</name>
- <load_address>0x814</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x814</run_address>
- <size>0x4</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-32"/>
- </object_component>
- <object_component id="oc-90">
- <name>.text:abort</name>
- <load_address>0x818</load_address>
- <readonly>true</readonly>
- <executable>true</executable>
- <run_address>0x818</run_address>
- <size>0x4</size>
- <alignment>0x2</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-137">
- <name>.cinit..data.load</name>
- <load_address>0x828</load_address>
- <readonly>true</readonly>
- <run_address>0x828</run_address>
- <size>0x23</size>
- <alignment>0x1</alignment>
- </object_component>
- <object_component id="oc-135">
- <name>__TI_handler_table</name>
- <load_address>0x84c</load_address>
- <readonly>true</readonly>
- <run_address>0x84c</run_address>
- <size>0xc</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-138">
- <name>.cinit..bss.load</name>
- <load_address>0x858</load_address>
- <readonly>true</readonly>
- <run_address>0x858</run_address>
- <size>0x8</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-136">
- <name>__TI_cinit_table</name>
- <load_address>0x860</load_address>
- <readonly>true</readonly>
- <run_address>0x860</run_address>
- <size>0x10</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-d8">
- <name>.rodata.gI2C_controllerClockConfig</name>
- <load_address>0x820</load_address>
- <readonly>true</readonly>
- <run_address>0x820</run_address>
- <size>0x2</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-ff">
- <name>.binit</name>
- <load_address>0x0</load_address>
- <readonly>true</readonly>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-8d">
- <name>.data.gSendCommand</name>
- <load_address>0x202000f0</load_address>
- <readwrite>true</readwrite>
- <run_address>0x202000f0</run_address>
- <size>0x1</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-8b">
- <name>.data.gTxData</name>
- <load_address>0x202000b0</load_address>
- <readwrite>true</readwrite>
- <run_address>0x202000b0</run_address>
- <size>0x40</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-8a">
- <name>.common:gI2C</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20200000</run_address>
- <size>0x9c</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-8c">
- <name>.common:gCommand</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x2020009c</run_address>
- <size>0x14</size>
- <alignment>0x4</alignment>
- </object_component>
- <object_component id="oc-1a">
- <name>.stack</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20207e00</run_address>
- <size>0x4</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-13a">
- <name>.stack</name>
- <uninitialized>true</uninitialized>
- <readwrite>true</readwrite>
- <run_address>0x20207e00</run_address>
- <size>0x0</size>
- <alignment>0x8</alignment>
- </object_component>
- <object_component id="oc-64">
- <name>.debug_loc</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x6a</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-b3">
- <name>.debug_loc</name>
- <load_address>0x6a</load_address>
- <run_address>0x6a</run_address>
- <size>0x6c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-88">
- <name>.debug_loc</name>
- <load_address>0xd6</load_address>
- <run_address>0xd6</run_address>
- <size>0x344</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-e3">
- <name>.debug_loc</name>
- <load_address>0x41a</load_address>
- <run_address>0x41a</run_address>
- <size>0x13</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-12"/>
- </object_component>
- <object_component id="oc-bb">
- <name>.debug_loc</name>
- <load_address>0x42d</load_address>
- <run_address>0x42d</run_address>
- <size>0x526</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-c1">
- <name>.debug_loc</name>
- <load_address>0x953</load_address>
- <run_address>0x953</run_address>
- <size>0x352</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-47">
- <name>.debug_loc</name>
- <load_address>0xca5</load_address>
- <run_address>0xca5</run_address>
- <size>0x16c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-45">
- <name>.debug_loc</name>
- <load_address>0xe11</load_address>
- <run_address>0xe11</run_address>
- <size>0x6f</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2a"/>
- </object_component>
- <object_component id="oc-3d">
- <name>.debug_loc</name>
- <load_address>0xe80</load_address>
- <run_address>0xe80</run_address>
- <size>0x167</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-3a">
- <name>.debug_loc</name>
- <load_address>0xfe7</load_address>
- <run_address>0xfe7</run_address>
- <size>0xd8</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-96">
- <name>.debug_loc</name>
- <load_address>0x10bf</load_address>
- <run_address>0x10bf</run_address>
- <size>0x26</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-98">
- <name>.debug_loc</name>
- <load_address>0x10e5</load_address>
- <run_address>0x10e5</run_address>
- <size>0x424</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-f5">
- <name>.debug_loc</name>
- <load_address>0x1509</load_address>
- <run_address>0x1509</run_address>
- <size>0x20</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-8e">
- <name>.debug_abbrev</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x1e2</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-b6">
- <name>.debug_abbrev</name>
- <load_address>0x1e2</load_address>
- <run_address>0x1e2</run_address>
- <size>0x1c7</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-34">
- <name>.debug_abbrev</name>
- <load_address>0x3a9</load_address>
- <run_address>0x3a9</run_address>
- <size>0x6d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-b8">
- <name>.debug_abbrev</name>
- <load_address>0x416</load_address>
- <run_address>0x416</run_address>
- <size>0x253</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-e1">
- <name>.debug_abbrev</name>
- <load_address>0x669</load_address>
- <run_address>0x669</run_address>
- <size>0x62</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-12"/>
- </object_component>
- <object_component id="oc-dd">
- <name>.debug_abbrev</name>
- <load_address>0x6cb</load_address>
- <run_address>0x6cb</run_address>
- <size>0x189</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-df">
- <name>.debug_abbrev</name>
- <load_address>0x854</load_address>
- <run_address>0x854</run_address>
- <size>0x1e7</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-58">
- <name>.debug_abbrev</name>
- <load_address>0xa3b</load_address>
- <run_address>0xa3b</run_address>
- <size>0xc2</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-43">
- <name>.debug_abbrev</name>
- <load_address>0xafd</load_address>
- <run_address>0xafd</run_address>
- <size>0x70</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2a"/>
- </object_component>
- <object_component id="oc-3b">
- <name>.debug_abbrev</name>
- <load_address>0xb6d</load_address>
- <run_address>0xb6d</run_address>
- <size>0x8d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-36">
- <name>.debug_abbrev</name>
- <load_address>0xbfa</load_address>
- <run_address>0xbfa</run_address>
- <size>0xaf</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-ca">
- <name>.debug_abbrev</name>
- <load_address>0xca9</load_address>
- <run_address>0xca9</run_address>
- <size>0xb3</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-d0">
- <name>.debug_abbrev</name>
- <load_address>0xd5c</load_address>
- <run_address>0xd5c</run_address>
- <size>0x170</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-7b">
- <name>.debug_abbrev</name>
- <load_address>0xecc</load_address>
- <run_address>0xecc</run_address>
- <size>0x39</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-32"/>
- </object_component>
- <object_component id="oc-57">
- <name>.debug_abbrev</name>
- <load_address>0xf05</load_address>
- <run_address>0xf05</run_address>
- <size>0x27</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c9"/>
- </object_component>
- <object_component id="oc-f2">
- <name>.debug_abbrev</name>
- <load_address>0xf2c</load_address>
- <run_address>0xf2c</run_address>
- <size>0x27</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cb"/>
- </object_component>
- <object_component id="oc-f3">
- <name>.debug_abbrev</name>
- <load_address>0xf53</load_address>
- <run_address>0xf53</run_address>
- <size>0x59</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-a9">
- <name>.debug_abbrev</name>
- <load_address>0xfac</load_address>
- <run_address>0xfac</run_address>
- <size>0x25</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cd"/>
- </object_component>
- <object_component id="oc-13c">
- <name>.debug_abbrev</name>
- <load_address>0xfd1</load_address>
- <run_address>0xfd1</run_address>
- <size>0xf</size>
- <alignment>0x0</alignment>
- </object_component>
- <object_component id="oc-65">
- <name>.debug_info</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0xc54</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-7e">
- <name>.debug_info</name>
- <load_address>0xc54</load_address>
- <run_address>0xc54</run_address>
- <size>0x1d53</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-19">
- <name>.debug_info</name>
- <load_address>0x29a7</load_address>
- <run_address>0x29a7</run_address>
- <size>0x80</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-83">
- <name>.debug_info</name>
- <load_address>0x2a27</load_address>
- <run_address>0x2a27</run_address>
- <size>0xf60</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-c7">
- <name>.debug_info</name>
- <load_address>0x3987</load_address>
- <run_address>0x3987</run_address>
- <size>0x75</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-12"/>
- </object_component>
- <object_component id="oc-bc">
- <name>.debug_info</name>
- <load_address>0x39fc</load_address>
- <run_address>0x39fc</run_address>
- <size>0x5cb</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-c2">
- <name>.debug_info</name>
- <load_address>0x3fc7</load_address>
- <run_address>0x3fc7</run_address>
- <size>0xca4</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-48">
- <name>.debug_info</name>
- <load_address>0x4c6b</load_address>
- <run_address>0x4c6b</run_address>
- <size>0x192</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-21">
- <name>.debug_info</name>
- <load_address>0x4dfd</load_address>
- <run_address>0x4dfd</run_address>
- <size>0xc6</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2a"/>
- </object_component>
- <object_component id="oc-1d">
- <name>.debug_info</name>
- <load_address>0x4ec3</load_address>
- <run_address>0x4ec3</run_address>
- <size>0x17c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-1b">
- <name>.debug_info</name>
- <load_address>0x503f</load_address>
- <run_address>0x503f</run_address>
- <size>0x423</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-91">
- <name>.debug_info</name>
- <load_address>0x5462</load_address>
- <run_address>0x5462</run_address>
- <size>0xed</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-99">
- <name>.debug_info</name>
- <load_address>0x554f</load_address>
- <run_address>0x554f</run_address>
- <size>0x744</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-60">
- <name>.debug_info</name>
- <load_address>0x5c93</load_address>
- <run_address>0x5c93</run_address>
- <size>0x46</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-32"/>
- </object_component>
- <object_component id="oc-40">
- <name>.debug_info</name>
- <load_address>0x5cd9</load_address>
- <run_address>0x5cd9</run_address>
- <size>0x1a9</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c9"/>
- </object_component>
- <object_component id="oc-dc">
- <name>.debug_info</name>
- <load_address>0x5e82</load_address>
- <run_address>0x5e82</run_address>
- <size>0x1cc</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cb"/>
- </object_component>
- <object_component id="oc-ee">
- <name>.debug_info</name>
- <load_address>0x604e</load_address>
- <run_address>0x604e</run_address>
- <size>0x85</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-74">
- <name>.debug_info</name>
- <load_address>0x60d3</load_address>
- <run_address>0x60d3</run_address>
- <size>0x302</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cd"/>
- </object_component>
- <object_component id="oc-13b">
- <name>.debug_info</name>
- <load_address>0x63d5</load_address>
- <run_address>0x63d5</run_address>
- <size>0xaf</size>
- <alignment>0x0</alignment>
- </object_component>
- <object_component id="oc-66">
- <name>.debug_ranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x30</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-7f">
- <name>.debug_ranges</name>
- <load_address>0x30</load_address>
- <run_address>0x30</run_address>
- <size>0x38</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-30">
- <name>.debug_ranges</name>
- <load_address>0x68</load_address>
- <run_address>0x68</run_address>
- <size>0x18</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-84">
- <name>.debug_ranges</name>
- <load_address>0x80</load_address>
- <run_address>0x80</run_address>
- <size>0xa8</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-bd">
- <name>.debug_ranges</name>
- <load_address>0x128</load_address>
- <run_address>0x128</run_address>
- <size>0xc8</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-c3">
- <name>.debug_ranges</name>
- <load_address>0x1f0</load_address>
- <run_address>0x1f0</run_address>
- <size>0x1d8</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-49">
- <name>.debug_ranges</name>
- <load_address>0x3c8</load_address>
- <run_address>0x3c8</run_address>
- <size>0x18</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-3e">
- <name>.debug_ranges</name>
- <load_address>0x3e0</load_address>
- <run_address>0x3e0</run_address>
- <size>0x50</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-39">
- <name>.debug_ranges</name>
- <load_address>0x430</load_address>
- <run_address>0x430</run_address>
- <size>0x48</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-92">
- <name>.debug_ranges</name>
- <load_address>0x478</load_address>
- <run_address>0x478</run_address>
- <size>0x18</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-9a">
- <name>.debug_ranges</name>
- <load_address>0x490</load_address>
- <run_address>0x490</run_address>
- <size>0x48</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-ef">
- <name>.debug_ranges</name>
- <load_address>0x4d8</load_address>
- <run_address>0x4d8</run_address>
- <size>0x18</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-77">
- <name>.debug_ranges</name>
- <load_address>0x4f0</load_address>
- <run_address>0x4f0</run_address>
- <size>0x28</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cd"/>
- </object_component>
- <object_component id="oc-8f">
- <name>.debug_str</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0xd5c</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-b7">
- <name>.debug_str</name>
- <load_address>0xd5c</load_address>
- <run_address>0xd5c</run_address>
- <size>0x15f7</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-35">
- <name>.debug_str</name>
- <load_address>0x2353</load_address>
- <run_address>0x2353</run_address>
- <size>0x16d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-b9">
- <name>.debug_str</name>
- <load_address>0x24c0</load_address>
- <run_address>0x24c0</run_address>
- <size>0x809</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-e2">
- <name>.debug_str</name>
- <load_address>0x2cc9</load_address>
- <run_address>0x2cc9</run_address>
- <size>0x16d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-12"/>
- </object_component>
- <object_component id="oc-de">
- <name>.debug_str</name>
- <load_address>0x2e36</load_address>
- <run_address>0x2e36</run_address>
- <size>0x329</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-e0">
- <name>.debug_str</name>
- <load_address>0x315f</load_address>
- <run_address>0x315f</run_address>
- <size>0x8ae</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-59">
- <name>.debug_str</name>
- <load_address>0x3a0d</load_address>
- <run_address>0x3a0d</run_address>
- <size>0x1a3</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-44">
- <name>.debug_str</name>
- <load_address>0x3bb0</load_address>
- <run_address>0x3bb0</run_address>
- <size>0x170</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2a"/>
- </object_component>
- <object_component id="oc-3c">
- <name>.debug_str</name>
- <load_address>0x3d20</load_address>
- <run_address>0x3d20</run_address>
- <size>0x1dd</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-37">
- <name>.debug_str</name>
- <load_address>0x3efd</load_address>
- <run_address>0x3efd</run_address>
- <size>0x22d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-cb">
- <name>.debug_str</name>
- <load_address>0x412a</load_address>
- <run_address>0x412a</run_address>
- <size>0x147</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-d1">
- <name>.debug_str</name>
- <load_address>0x4271</load_address>
- <run_address>0x4271</run_address>
- <size>0x337</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-7c">
- <name>.debug_str</name>
- <load_address>0x45a8</load_address>
- <run_address>0x45a8</run_address>
- <size>0xfd</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-32"/>
- </object_component>
- <object_component id="oc-f4">
- <name>.debug_str</name>
- <load_address>0x46a5</load_address>
- <run_address>0x46a5</run_address>
- <size>0x1a3</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-67">
- <name>.debug_frame</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x40</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-80">
- <name>.debug_frame</name>
- <load_address>0x40</load_address>
- <run_address>0x40</run_address>
- <size>0x8c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-31">
- <name>.debug_frame</name>
- <load_address>0xcc</load_address>
- <run_address>0xcc</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-85">
- <name>.debug_frame</name>
- <load_address>0xfc</load_address>
- <run_address>0xfc</run_address>
- <size>0x88</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-c8">
- <name>.debug_frame</name>
- <load_address>0x184</load_address>
- <run_address>0x184</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-12"/>
- </object_component>
- <object_component id="oc-be">
- <name>.debug_frame</name>
- <load_address>0x1a4</load_address>
- <run_address>0x1a4</run_address>
- <size>0x8c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-c4">
- <name>.debug_frame</name>
- <load_address>0x230</load_address>
- <run_address>0x230</run_address>
- <size>0x12c</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-4a">
- <name>.debug_frame</name>
- <load_address>0x35c</load_address>
- <run_address>0x35c</run_address>
- <size>0x38</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-22">
- <name>.debug_frame</name>
- <load_address>0x394</load_address>
- <run_address>0x394</run_address>
- <size>0x28</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2a"/>
- </object_component>
- <object_component id="oc-1e">
- <name>.debug_frame</name>
- <load_address>0x3bc</load_address>
- <run_address>0x3bc</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-4e">
- <name>.debug_frame</name>
- <load_address>0x3ec</load_address>
- <run_address>0x3ec</run_address>
- <size>0x90</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-93">
- <name>.debug_frame</name>
- <load_address>0x47c</load_address>
- <run_address>0x47c</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-9b">
- <name>.debug_frame</name>
- <load_address>0x4ac</load_address>
- <run_address>0x4ac</run_address>
- <size>0x100</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-61">
- <name>.debug_frame</name>
- <load_address>0x5ac</load_address>
- <run_address>0x5ac</run_address>
- <size>0x20</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-32"/>
- </object_component>
- <object_component id="oc-f0">
- <name>.debug_frame</name>
- <load_address>0x5cc</load_address>
- <run_address>0x5cc</run_address>
- <size>0x30</size>
- <alignment>0x4</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-68">
- <name>.debug_line</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x38d</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-1"/>
- </object_component>
- <object_component id="oc-81">
- <name>.debug_line</name>
- <load_address>0x38d</load_address>
- <run_address>0x38d</run_address>
- <size>0x58f</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2"/>
- </object_component>
- <object_component id="oc-32">
- <name>.debug_line</name>
- <load_address>0x91c</load_address>
- <run_address>0x91c</run_address>
- <size>0xc1</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-3"/>
- </object_component>
- <object_component id="oc-86">
- <name>.debug_line</name>
- <load_address>0x9dd</load_address>
- <run_address>0x9dd</run_address>
- <size>0x847</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-4"/>
- </object_component>
- <object_component id="oc-c9">
- <name>.debug_line</name>
- <load_address>0x1224</load_address>
- <run_address>0x1224</run_address>
- <size>0x178</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-12"/>
- </object_component>
- <object_component id="oc-bf">
- <name>.debug_line</name>
- <load_address>0x139c</load_address>
- <run_address>0x139c</run_address>
- <size>0x45e</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-13"/>
- </object_component>
- <object_component id="oc-c5">
- <name>.debug_line</name>
- <load_address>0x17fa</load_address>
- <run_address>0x17fa</run_address>
- <size>0x682</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-14"/>
- </object_component>
- <object_component id="oc-4b">
- <name>.debug_line</name>
- <load_address>0x1e7c</load_address>
- <run_address>0x1e7c</run_address>
- <size>0x106</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-29"/>
- </object_component>
- <object_component id="oc-23">
- <name>.debug_line</name>
- <load_address>0x1f82</load_address>
- <run_address>0x1f82</run_address>
- <size>0x63</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2a"/>
- </object_component>
- <object_component id="oc-1f">
- <name>.debug_line</name>
- <load_address>0x1fe5</load_address>
- <run_address>0x1fe5</run_address>
- <size>0x10e</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2b"/>
- </object_component>
- <object_component id="oc-38">
- <name>.debug_line</name>
- <load_address>0x20f3</load_address>
- <run_address>0x20f3</run_address>
- <size>0x1dc</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2c"/>
- </object_component>
- <object_component id="oc-94">
- <name>.debug_line</name>
- <load_address>0x22cf</load_address>
- <run_address>0x22cf</run_address>
- <size>0x69</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-2e"/>
- </object_component>
- <object_component id="oc-9c">
- <name>.debug_line</name>
- <load_address>0x2338</load_address>
- <run_address>0x2338</run_address>
- <size>0x403</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-31"/>
- </object_component>
- <object_component id="oc-62">
- <name>.debug_line</name>
- <load_address>0x273b</load_address>
- <run_address>0x273b</run_address>
- <size>0x3e</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-32"/>
- </object_component>
- <object_component id="oc-42">
- <name>.debug_line</name>
- <load_address>0x2779</load_address>
- <run_address>0x2779</run_address>
- <size>0xac</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c9"/>
- </object_component>
- <object_component id="oc-db">
- <name>.debug_line</name>
- <load_address>0x2825</load_address>
- <run_address>0x2825</run_address>
- <size>0xca</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cb"/>
- </object_component>
- <object_component id="oc-f1">
- <name>.debug_line</name>
- <load_address>0x28ef</load_address>
- <run_address>0x28ef</run_address>
- <size>0xbd</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cc"/>
- </object_component>
- <object_component id="oc-76">
- <name>.debug_line</name>
- <load_address>0x29ac</load_address>
- <run_address>0x29ac</run_address>
- <size>0xa0</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cd"/>
- </object_component>
- <object_component id="oc-41">
- <name>.debug_aranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x20</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-c9"/>
- </object_component>
- <object_component id="oc-da">
- <name>.debug_aranges</name>
- <load_address>0x20</load_address>
- <run_address>0x20</run_address>
- <size>0x20</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cb"/>
- </object_component>
- <object_component id="oc-75">
- <name>.debug_aranges</name>
- <load_address>0x40</load_address>
- <run_address>0x40</run_address>
- <size>0x28</size>
- <alignment>0x1</alignment>
- <input_file_ref idref="fl-cd"/>
- </object_component>
- </object_component_list>
- <logical_group_list>
- <logical_group id="lg-2" display="no" color="cyan">
- <name>.intvecs</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0xc0</size>
- <contents>
- <object_component_ref idref="oc-18"/>
- </contents>
- </logical_group>
- <logical_group id="lg-3" display="no" color="cyan">
- <name>.text</name>
- <load_address>0xc0</load_address>
- <run_address>0xc0</run_address>
- <size>0x760</size>
- <contents>
- <object_component_ref idref="oc-87"/>
- <object_component_ref idref="oc-63"/>
- <object_component_ref idref="oc-78"/>
- <object_component_ref idref="oc-33"/>
- <object_component_ref idref="oc-ba"/>
- <object_component_ref idref="oc-89"/>
- <object_component_ref idref="oc-1c"/>
- <object_component_ref idref="oc-b4"/>
- <object_component_ref idref="oc-c0"/>
- <object_component_ref idref="oc-ed"/>
- <object_component_ref idref="oc-b0"/>
- <object_component_ref idref="oc-d9"/>
- <object_component_ref idref="oc-97"/>
- <object_component_ref idref="oc-b2"/>
- <object_component_ref idref="oc-4f"/>
- <object_component_ref idref="oc-d7"/>
- <object_component_ref idref="oc-b1"/>
- <object_component_ref idref="oc-b5"/>
- <object_component_ref idref="oc-82"/>
- <object_component_ref idref="oc-7d"/>
- <object_component_ref idref="oc-46"/>
- <object_component_ref idref="oc-20"/>
- <object_component_ref idref="oc-c6"/>
- <object_component_ref idref="oc-3f"/>
- <object_component_ref idref="oc-2f"/>
- <object_component_ref idref="oc-5f"/>
- <object_component_ref idref="oc-90"/>
- </contents>
- </logical_group>
- <logical_group id="lg-4" display="no" color="cyan">
- <name>.const</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-5" display="no" color="cyan">
- <name>.cinit</name>
- <load_address>0x828</load_address>
- <run_address>0x828</run_address>
- <size>0x48</size>
- <contents>
- <object_component_ref idref="oc-137"/>
- <object_component_ref idref="oc-135"/>
- <object_component_ref idref="oc-138"/>
- <object_component_ref idref="oc-136"/>
- </contents>
- </logical_group>
- <logical_group id="lg-6" display="no" color="cyan">
- <name>.pinit</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-7" display="no" color="cyan">
- <name>.rodata</name>
- <load_address>0x820</load_address>
- <run_address>0x820</run_address>
- <size>0x8</size>
- <contents>
- <object_component_ref idref="oc-d8"/>
- </contents>
- </logical_group>
- <logical_group id="lg-8" display="no" color="cyan">
- <name>.ARM.exidx</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-9" display="no" color="cyan">
- <name>.init_array</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-a" display="no" color="cyan">
- <name>.binit</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- <object_component_ref idref="oc-ff"/>
- </contents>
- </logical_group>
- <logical_group id="lg-b" display="no" color="cyan">
- <name>.TI.ramfunc</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-c" display="no" color="cyan">
- <name>.vtable</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-d" display="no" color="cyan">
- <name>.args</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-e" display="no" color="cyan">
- <name>.data</name>
- <run_address>0x202000b0</run_address>
- <size>0x41</size>
- <contents>
- <object_component_ref idref="oc-8d"/>
- <object_component_ref idref="oc-8b"/>
- </contents>
- </logical_group>
- <logical_group id="lg-f" display="no" color="cyan">
- <name>.bss</name>
- <run_address>0x20200000</run_address>
- <size>0xb0</size>
- <contents>
- <object_component_ref idref="oc-8a"/>
- <object_component_ref idref="oc-8c"/>
- </contents>
- </logical_group>
- <logical_group id="lg-10" display="no" color="cyan">
- <name>.sysmem</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-11" display="no" color="cyan">
- <name>.stack</name>
- <run_address>0x20207e00</run_address>
- <size>0x200</size>
- <contents>
- <object_component_ref idref="oc-1a"/>
- <object_component_ref idref="oc-13a"/>
- </contents>
- </logical_group>
- <logical_group id="lg-12" display="no" color="cyan">
- <name>.BCRConfig</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-13" display="no" color="cyan">
- <name>.BSLConfig</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-f6" display="no" color="cyan">
- <name>.TI.noinit</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-f7" display="no" color="cyan">
- <name>.TI.persistent</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-f8" display="no" color="cyan">
- <name>.TI.local</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-f9" display="no" color="cyan">
- <name>.TI.onchip</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-fa" display="no" color="cyan">
- <name>.TI.offchip</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-fb" display="no" color="cyan">
- <name>__llvm_prf_cnts</name>
- <run_address>0x20200000</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-fd" display="no" color="cyan">
- <name>__llvm_prf_bits</name>
- <run_address>0x20200000</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <logical_group id="lg-119" display="never" color="cyan">
- <name>.debug_loc</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x1529</size>
- <contents>
- <object_component_ref idref="oc-64"/>
- <object_component_ref idref="oc-b3"/>
- <object_component_ref idref="oc-88"/>
- <object_component_ref idref="oc-e3"/>
- <object_component_ref idref="oc-bb"/>
- <object_component_ref idref="oc-c1"/>
- <object_component_ref idref="oc-47"/>
- <object_component_ref idref="oc-45"/>
- <object_component_ref idref="oc-3d"/>
- <object_component_ref idref="oc-3a"/>
- <object_component_ref idref="oc-96"/>
- <object_component_ref idref="oc-98"/>
- <object_component_ref idref="oc-f5"/>
- </contents>
- </logical_group>
- <logical_group id="lg-11b" display="never" color="cyan">
- <name>.debug_abbrev</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0xfe0</size>
- <contents>
- <object_component_ref idref="oc-8e"/>
- <object_component_ref idref="oc-b6"/>
- <object_component_ref idref="oc-34"/>
- <object_component_ref idref="oc-b8"/>
- <object_component_ref idref="oc-e1"/>
- <object_component_ref idref="oc-dd"/>
- <object_component_ref idref="oc-df"/>
- <object_component_ref idref="oc-58"/>
- <object_component_ref idref="oc-43"/>
- <object_component_ref idref="oc-3b"/>
- <object_component_ref idref="oc-36"/>
- <object_component_ref idref="oc-ca"/>
- <object_component_ref idref="oc-d0"/>
- <object_component_ref idref="oc-7b"/>
- <object_component_ref idref="oc-57"/>
- <object_component_ref idref="oc-f2"/>
- <object_component_ref idref="oc-f3"/>
- <object_component_ref idref="oc-a9"/>
- <object_component_ref idref="oc-13c"/>
- </contents>
- </logical_group>
- <logical_group id="lg-11d" display="never" color="cyan">
- <name>.debug_info</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x6484</size>
- <contents>
- <object_component_ref idref="oc-65"/>
- <object_component_ref idref="oc-7e"/>
- <object_component_ref idref="oc-19"/>
- <object_component_ref idref="oc-83"/>
- <object_component_ref idref="oc-c7"/>
- <object_component_ref idref="oc-bc"/>
- <object_component_ref idref="oc-c2"/>
- <object_component_ref idref="oc-48"/>
- <object_component_ref idref="oc-21"/>
- <object_component_ref idref="oc-1d"/>
- <object_component_ref idref="oc-1b"/>
- <object_component_ref idref="oc-91"/>
- <object_component_ref idref="oc-99"/>
- <object_component_ref idref="oc-60"/>
- <object_component_ref idref="oc-40"/>
- <object_component_ref idref="oc-dc"/>
- <object_component_ref idref="oc-ee"/>
- <object_component_ref idref="oc-74"/>
- <object_component_ref idref="oc-13b"/>
- </contents>
- </logical_group>
- <logical_group id="lg-11f" display="never" color="cyan">
- <name>.debug_ranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x518</size>
- <contents>
- <object_component_ref idref="oc-66"/>
- <object_component_ref idref="oc-7f"/>
- <object_component_ref idref="oc-30"/>
- <object_component_ref idref="oc-84"/>
- <object_component_ref idref="oc-bd"/>
- <object_component_ref idref="oc-c3"/>
- <object_component_ref idref="oc-49"/>
- <object_component_ref idref="oc-3e"/>
- <object_component_ref idref="oc-39"/>
- <object_component_ref idref="oc-92"/>
- <object_component_ref idref="oc-9a"/>
- <object_component_ref idref="oc-ef"/>
- <object_component_ref idref="oc-77"/>
- </contents>
- </logical_group>
- <logical_group id="lg-121" display="never" color="cyan">
- <name>.debug_str</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x4848</size>
- <contents>
- <object_component_ref idref="oc-8f"/>
- <object_component_ref idref="oc-b7"/>
- <object_component_ref idref="oc-35"/>
- <object_component_ref idref="oc-b9"/>
- <object_component_ref idref="oc-e2"/>
- <object_component_ref idref="oc-de"/>
- <object_component_ref idref="oc-e0"/>
- <object_component_ref idref="oc-59"/>
- <object_component_ref idref="oc-44"/>
- <object_component_ref idref="oc-3c"/>
- <object_component_ref idref="oc-37"/>
- <object_component_ref idref="oc-cb"/>
- <object_component_ref idref="oc-d1"/>
- <object_component_ref idref="oc-7c"/>
- <object_component_ref idref="oc-f4"/>
- </contents>
- </logical_group>
- <logical_group id="lg-123" display="never" color="cyan">
- <name>.debug_frame</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x5fc</size>
- <contents>
- <object_component_ref idref="oc-67"/>
- <object_component_ref idref="oc-80"/>
- <object_component_ref idref="oc-31"/>
- <object_component_ref idref="oc-85"/>
- <object_component_ref idref="oc-c8"/>
- <object_component_ref idref="oc-be"/>
- <object_component_ref idref="oc-c4"/>
- <object_component_ref idref="oc-4a"/>
- <object_component_ref idref="oc-22"/>
- <object_component_ref idref="oc-1e"/>
- <object_component_ref idref="oc-4e"/>
- <object_component_ref idref="oc-93"/>
- <object_component_ref idref="oc-9b"/>
- <object_component_ref idref="oc-61"/>
- <object_component_ref idref="oc-f0"/>
- </contents>
- </logical_group>
- <logical_group id="lg-125" display="never" color="cyan">
- <name>.debug_line</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x2a4c</size>
- <contents>
- <object_component_ref idref="oc-68"/>
- <object_component_ref idref="oc-81"/>
- <object_component_ref idref="oc-32"/>
- <object_component_ref idref="oc-86"/>
- <object_component_ref idref="oc-c9"/>
- <object_component_ref idref="oc-bf"/>
- <object_component_ref idref="oc-c5"/>
- <object_component_ref idref="oc-4b"/>
- <object_component_ref idref="oc-23"/>
- <object_component_ref idref="oc-1f"/>
- <object_component_ref idref="oc-38"/>
- <object_component_ref idref="oc-94"/>
- <object_component_ref idref="oc-9c"/>
- <object_component_ref idref="oc-62"/>
- <object_component_ref idref="oc-42"/>
- <object_component_ref idref="oc-db"/>
- <object_component_ref idref="oc-f1"/>
- <object_component_ref idref="oc-76"/>
- </contents>
- </logical_group>
- <logical_group id="lg-12f" display="never" color="cyan">
- <name>.debug_aranges</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x68</size>
- <contents>
- <object_component_ref idref="oc-41"/>
- <object_component_ref idref="oc-da"/>
- <object_component_ref idref="oc-75"/>
- </contents>
- </logical_group>
- <logical_group id="lg-139" display="no" color="cyan">
- <name>Veneer$$CMSE</name>
- <run_address>0x0</run_address>
- <size>0x0</size>
- <contents>
- </contents>
- </logical_group>
- <load_segment id="lg-141" display="no" color="cyan">
- <name>SEGMENT_0</name>
- <load_address>0x0</load_address>
- <run_address>0x0</run_address>
- <size>0x870</size>
- <flags>0x5</flags>
- <contents>
- <logical_group_ref idref="lg-2"/>
- <logical_group_ref idref="lg-3"/>
- <logical_group_ref idref="lg-7"/>
- <logical_group_ref idref="lg-5"/>
- </contents>
- </load_segment>
- <load_segment id="lg-142" display="no" color="cyan">
- <name>SEGMENT_1</name>
- <run_address>0x20200000</run_address>
- <size>0xf1</size>
- <flags>0x6</flags>
- <contents>
- <logical_group_ref idref="lg-f"/>
- <logical_group_ref idref="lg-e"/>
- </contents>
- </load_segment>
- <load_segment id="lg-143" display="no" color="cyan">
- <name>SEGMENT_2</name>
- <run_address>0x20207e00</run_address>
- <size>0x200</size>
- <flags>0x6</flags>
- <contents>
- <logical_group_ref idref="lg-11"/>
- </contents>
- </load_segment>
- </logical_group_list>
- <placement_map>
- <memory_area display="yes" color="green">
- <name>FLASH</name>
- <page_id>0x0</page_id>
- <origin>0x0</origin>
- <length>0x20000</length>
- <used_space>0x870</used_space>
- <unused_space>0x1f790</unused_space>
- <attributes>RX</attributes>
- <usage_details>
- <allocated_space>
- <start_address>0x0</start_address>
- <size>0x0</size>
- <logical_group_ref idref="lg-a"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x0</start_address>
- <size>0xc0</size>
- <logical_group_ref idref="lg-2"/>
- </allocated_space>
- <allocated_space>
- <start_address>0xc0</start_address>
- <size>0x760</size>
- <logical_group_ref idref="lg-3"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x820</start_address>
- <size>0x8</size>
- <logical_group_ref idref="lg-7"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x828</start_address>
- <size>0x48</size>
- <logical_group_ref idref="lg-5"/>
- </allocated_space>
- <available_space>
- <start_address>0x870</start_address>
- <size>0x1f790</size>
- </available_space>
- </usage_details>
- </memory_area>
- <memory_area display="yes" color="green">
- <name>SRAM</name>
- <page_id>0x0</page_id>
- <origin>0x20200000</origin>
- <length>0x8000</length>
- <used_space>0x2f1</used_space>
- <unused_space>0x7d0f</unused_space>
- <attributes>RWX</attributes>
- <usage_details>
- <allocated_space>
- <start_address>0x20200000</start_address>
- <size>0x0</size>
- <logical_group_ref idref="lg-fb"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x20200000</start_address>
- <size>0x0</size>
- <logical_group_ref idref="lg-fd"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x20200000</start_address>
- <size>0xb0</size>
- <logical_group_ref idref="lg-f"/>
- </allocated_space>
- <allocated_space>
- <start_address>0x202000b0</start_address>
- <size>0x41</size>
- <logical_group_ref idref="lg-e"/>
- </allocated_space>
- <available_space>
- <start_address>0x202000f1</start_address>
- <size>0x7d0f</size>
- </available_space>
- <allocated_space>
- <start_address>0x20207e00</start_address>
- <size>0x200</size>
- <logical_group_ref idref="lg-11"/>
- </allocated_space>
- </usage_details>
- </memory_area>
- <memory_area display="yes" color="green">
- <name>BCR_CONFIG</name>
- <page_id>0x0</page_id>
- <origin>0x41c00000</origin>
- <length>0x80</length>
- <used_space>0x0</used_space>
- <unused_space>0x80</unused_space>
- <attributes>R</attributes>
- <usage_details>
- </usage_details>
- </memory_area>
- <memory_area display="yes" color="green">
- <name>BSL_CONFIG</name>
- <page_id>0x0</page_id>
- <origin>0x41c00100</origin>
- <length>0x80</length>
- <used_space>0x0</used_space>
- <unused_space>0x80</unused_space>
- <attributes>R</attributes>
- <usage_details>
- </usage_details>
- </memory_area>
- </placement_map>
- <cptbl_list>
- <cptbl>
- <name>__TI_cinit_table</name>
- <cprec>
- <name>.data</name>
- <load_address>0x828</load_address>
- <load_size>0x23</load_size>
- <run_address>0x202000b0</run_address>
- <run_size>0x41</run_size>
- <compression>lzss</compression>
- </cprec>
- <cprec>
- <name>.bss</name>
- <load_address>0x858</load_address>
- <load_size>0x8</load_size>
- <run_address>0x20200000</run_address>
- <run_size>0xb0</run_size>
- <compression>zero_init</compression>
- </cprec>
- </cptbl>
- </cptbl_list>
- <handler_table>
- <handler_table_name>__TI_handler_table</handler_table_name>
- <handler>
- <index>0x0</index>
- <name>__TI_decompress_lzss</name>
- </handler>
- <handler>
- <index>0x1</index>
- <name>__TI_decompress_none</name>
- </handler>
- <handler>
- <index>0x2</index>
- <name>__TI_zero_init</name>
- </handler>
- </handler_table>
- <symbol_table>
- <symbol id="sm-1">
- <name>__start___llvm_prf_cnts</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-2">
- <name>__stop___llvm_prf_cnts</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-3">
- <name>__start___llvm_prf_bits</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-4">
- <name>__stop___llvm_prf_bits</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-5">
- <name>__TI_CINIT_Base</name>
- <value>0x860</value>
- </symbol>
- <symbol id="sm-6">
- <name>__TI_CINIT_Limit</name>
- <value>0x870</value>
- </symbol>
- <symbol id="sm-7">
- <name>__TI_CINIT_Warm</name>
- <value>0x870</value>
- </symbol>
- <symbol id="sm-8">
- <name>__TI_Handler_Table_Base</name>
- <value>0x84c</value>
- </symbol>
- <symbol id="sm-9">
- <name>__TI_Handler_Table_Limit</name>
- <value>0x858</value>
- </symbol>
- <symbol id="sm-a">
- <name>binit</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-b">
- <name>__binit__</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-c">
- <name>__STACK_SIZE</name>
- <value>0x200</value>
- </symbol>
- <symbol id="sm-d">
- <name>__STACK_END</name>
- <value>0x20208000</value>
- </symbol>
- <symbol id="sm-e">
- <name>__TI_pprof_out_hndl</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-f">
- <name>__TI_prof_data_start</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-10">
- <name>__TI_prof_data_size</name>
- <value>0xffffffff</value>
- </symbol>
- <symbol id="sm-3d">
- <name>main</name>
- <value>0x275</value>
- <object_component_ref idref="oc-63"/>
- </symbol>
- <symbol id="sm-3e">
- <name>gI2C</name>
- <value>0x20200000</value>
- </symbol>
- <symbol id="sm-3f">
- <name>gTxData</name>
- <value>0x202000b0</value>
- <object_component_ref idref="oc-8b"/>
- </symbol>
- <symbol id="sm-40">
- <name>gCommand</name>
- <value>0x2020009c</value>
- </symbol>
- <symbol id="sm-41">
- <name>gSendCommand</name>
- <value>0x202000f0</value>
- <object_component_ref idref="oc-8d"/>
- </symbol>
- <symbol id="sm-5c">
- <name>SYSCFG_DL_init</name>
- <value>0x7bf</value>
- <object_component_ref idref="oc-7d"/>
- </symbol>
- <symbol id="sm-5d">
- <name>SYSCFG_DL_initPower</name>
- <value>0x621</value>
- <object_component_ref idref="oc-b0"/>
- </symbol>
- <symbol id="sm-5e">
- <name>SYSCFG_DL_GPIO_init</name>
- <value>0x75d</value>
- <object_component_ref idref="oc-b1"/>
- </symbol>
- <symbol id="sm-5f">
- <name>SYSCFG_DL_SYSCTL_init</name>
- <value>0x6dd</value>
- <object_component_ref idref="oc-b2"/>
- </symbol>
- <symbol id="sm-60">
- <name>SYSCFG_DL_I2C_controller_init</name>
- <value>0x555</value>
- <object_component_ref idref="oc-b4"/>
- </symbol>
- <symbol id="sm-61">
- <name>SYSCFG_DL_CRC_init</name>
- <value>0x781</value>
- <object_component_ref idref="oc-b5"/>
- </symbol>
- <symbol id="sm-6c">
- <name>Default_Handler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-6d">
- <name>Reset_Handler</name>
- <value>0x811</value>
- <object_component_ref idref="oc-2f"/>
- </symbol>
- <symbol id="sm-6e">
- <name>interruptVectors</name>
- <value>0x0</value>
- <object_component_ref idref="oc-18"/>
- </symbol>
- <symbol id="sm-6f">
- <name>NMI_Handler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-70">
- <name>HardFault_Handler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-71">
- <name>SVC_Handler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-72">
- <name>PendSV_Handler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-73">
- <name>SysTick_Handler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-74">
- <name>GROUP0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-75">
- <name>GROUP1_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-76">
- <name>TIMG8_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-77">
- <name>UART3_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-78">
- <name>ADC0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-79">
- <name>ADC1_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-7a">
- <name>CANFD0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-7b">
- <name>DAC0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-7c">
- <name>SPI0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-7d">
- <name>SPI1_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-7e">
- <name>UART1_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-7f">
- <name>UART2_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-80">
- <name>UART0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-81">
- <name>TIMG0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-82">
- <name>TIMG6_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-83">
- <name>TIMA0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-84">
- <name>TIMA1_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-85">
- <name>TIMG7_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-86">
- <name>TIMG12_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-87">
- <name>I2C0_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-88">
- <name>I2C1_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-89">
- <name>AES_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-8a">
- <name>RTC_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-8b">
- <name>DMA_IRQHandler</name>
- <value>0x3af</value>
- <object_component_ref idref="oc-33"/>
- </symbol>
- <symbol id="sm-9b">
- <name>I2C_init</name>
- <value>0x7a1</value>
- <object_component_ref idref="oc-82"/>
- </symbol>
- <symbol id="sm-9c">
- <name>I2C_sendCommand</name>
- <value>0xc1</value>
- <object_component_ref idref="oc-87"/>
- </symbol>
- <symbol id="sm-9d">
- <name>I2C_getResponse</name>
- <value>0x449</value>
- <object_component_ref idref="oc-89"/>
- </symbol>
- <symbol id="sm-9e">
- <name>__TI_ATRegion0_src_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-9f">
- <name>__TI_ATRegion0_trg_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-a0">
- <name>__TI_ATRegion0_region_sz</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-a1">
- <name>__TI_ATRegion1_src_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-a2">
- <name>__TI_ATRegion1_trg_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-a3">
- <name>__TI_ATRegion1_region_sz</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-a4">
- <name>__TI_ATRegion2_src_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-a5">
- <name>__TI_ATRegion2_trg_addr</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-a6">
- <name>__TI_ATRegion2_region_sz</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-af">
- <name>DL_Common_delayCycles</name>
- <value>0x7ff</value>
- <object_component_ref idref="oc-c6"/>
- </symbol>
- <symbol id="sm-ba">
- <name>DL_CRC_calculateBlock16</name>
- <value>0x3b1</value>
- <object_component_ref idref="oc-ba"/>
- </symbol>
- <symbol id="sm-c6">
- <name>DL_I2C_setClockConfig</name>
- <value>0x735</value>
- <object_component_ref idref="oc-d7"/>
- </symbol>
- <symbol id="sm-c7">
- <name>DL_I2C_fillControllerTXFIFO</name>
- <value>0x5c1</value>
- <object_component_ref idref="oc-c0"/>
- </symbol>
- <symbol id="sm-d1">
- <name>__TI_zero_init_nomemset</name>
- <value>0x7d7</value>
- <object_component_ref idref="oc-46"/>
- </symbol>
- <symbol id="sm-da">
- <name>__TI_decompress_none</name>
- <value>0x7ed</value>
- <object_component_ref idref="oc-20"/>
- </symbol>
- <symbol id="sm-e5">
- <name>__TI_decompress_lzss</name>
- <value>0x4d9</value>
- <object_component_ref idref="oc-1c"/>
- </symbol>
- <symbol id="sm-f0">
- <name>_c_int00_noargs</name>
- <value>0x70d</value>
- <object_component_ref idref="oc-4f"/>
- </symbol>
- <symbol id="sm-f1">
- <name>__stack</name>
- <value>0x20207e00</value>
- <object_component_ref idref="oc-1a"/>
- </symbol>
- <symbol id="sm-fc">
- <name>abort</name>
- <value>0x819</value>
- <object_component_ref idref="oc-90"/>
- </symbol>
- <symbol id="sm-fd">
- <name>C$$EXIT</name>
- <value>0x818</value>
- <object_component_ref idref="oc-90"/>
- </symbol>
- <symbol id="sm-10a">
- <name>__TI_auto_init_nobinit_nopinit</name>
- <value>0x6a1</value>
- <object_component_ref idref="oc-97"/>
- </symbol>
- <symbol id="sm-112">
- <name>_system_pre_init</name>
- <value>0x815</value>
- <object_component_ref idref="oc-5f"/>
- </symbol>
- <symbol id="sm-119">
- <name>__aeabi_memcpy</name>
- <value>0x809</value>
- <object_component_ref idref="oc-3f"/>
- </symbol>
- <symbol id="sm-11a">
- <name>__aeabi_memcpy4</name>
- <value>0x809</value>
- <object_component_ref idref="oc-3f"/>
- </symbol>
- <symbol id="sm-11b">
- <name>__aeabi_memcpy8</name>
- <value>0x809</value>
- <object_component_ref idref="oc-3f"/>
- </symbol>
- <symbol id="sm-121">
- <name>__aeabi_uidiv</name>
- <value>0x661</value>
- <object_component_ref idref="oc-d9"/>
- </symbol>
- <symbol id="sm-122">
- <name>__aeabi_uidivmod</name>
- <value>0x661</value>
- <object_component_ref idref="oc-d9"/>
- </symbol>
- <symbol id="sm-12c">
- <name>__aeabi_idiv0</name>
- <value>0x61f</value>
- <object_component_ref idref="oc-ed"/>
- </symbol>
- <symbol id="sm-145">
- <name>memcpy</name>
- <value>0x315</value>
- <object_component_ref idref="oc-78"/>
- </symbol>
- <symbol id="sm-146">
- <name>__TI_static_base__</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-149">
- <name>__mpu_init</name>
- <value>0x0</value>
- </symbol>
- <symbol id="sm-14a">
- <name>_system_post_cinit</name>
- <value>0x0</value>
- </symbol>
- </symbol_table>
- <title>Link successful</title>
- </link_info>
|