HVBLDC_Sensored_linkInfo.xml 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <link_info>
  3. <banner>TMS320C2000 Linker PC v22.6.0.LTS</banner>
  4. <copyright>Copyright (c) 1996-2018 Texas Instruments Incorporated</copyright>
  5. <link_time>0x6581621e</link_time>
  6. <link_errors>0x0</link_errors>
  7. <output_file>HVBLDC_Sensored.out</output_file>
  8. <entry_point>
  9. <name>_c_int00</name>
  10. <address>0x3e99fc</address>
  11. </entry_point>
  12. <input_file_list>
  13. <input_file id="fl-2">
  14. <path>.\</path>
  15. <kind>object</kind>
  16. <file>DLOG4CHC.obj</file>
  17. <name>DLOG4CHC.obj</name>
  18. </input_file>
  19. <input_file id="fl-3">
  20. <path>.\</path>
  21. <kind>object</kind>
  22. <file>DSP2803x_CpuTimers.obj</file>
  23. <name>DSP2803x_CpuTimers.obj</name>
  24. </input_file>
  25. <input_file id="fl-4">
  26. <path>.\</path>
  27. <kind>object</kind>
  28. <file>DSP2803x_GlobalVariableDefs.obj</file>
  29. <name>DSP2803x_GlobalVariableDefs.obj</name>
  30. </input_file>
  31. <input_file id="fl-5">
  32. <path>.\</path>
  33. <kind>object</kind>
  34. <file>DSP2803x_usDelay.obj</file>
  35. <name>DSP2803x_usDelay.obj</name>
  36. </input_file>
  37. <input_file id="fl-6">
  38. <path>.\</path>
  39. <kind>object</kind>
  40. <file>HVBLDC_Sensored-DevInit_F2803x.obj</file>
  41. <name>HVBLDC_Sensored-DevInit_F2803x.obj</name>
  42. </input_file>
  43. <input_file id="fl-7">
  44. <path>.\</path>
  45. <kind>object</kind>
  46. <file>HVBLDC_Sensored.obj</file>
  47. <name>HVBLDC_Sensored.obj</name>
  48. </input_file>
  49. <input_file id="fl-8">
  50. <path>.\UserSource\</path>
  51. <kind>object</kind>
  52. <file>UserCan.obj</file>
  53. <name>UserCan.obj</name>
  54. </input_file>
  55. <input_file id="fl-9">
  56. <path>.\UserSource\</path>
  57. <kind>object</kind>
  58. <file>lowpass.obj</file>
  59. <name>lowpass.obj</name>
  60. </input_file>
  61. <input_file id="fl-a">
  62. <path>.\UserSource\</path>
  63. <kind>object</kind>
  64. <file>var.obj</file>
  65. <name>var.obj</name>
  66. </input_file>
  67. <input_file id="fl-b">
  68. <path>.\include\device_support\f2803x\v121\DSP2803x_common\source\</path>
  69. <kind>object</kind>
  70. <file>DSP2803x_CodeStartBranch.obj</file>
  71. <name>DSP2803x_CodeStartBranch.obj</name>
  72. </input_file>
  73. <input_file id="fl-c">
  74. <path>.\include\device_support\f2803x\v125\DSP2803x_common\source\</path>
  75. <kind>object</kind>
  76. <file>DSP2803x_ECan.obj</file>
  77. <name>DSP2803x_ECan.obj</name>
  78. </input_file>
  79. <input_file id="fl-d">
  80. <path>.\include\libs\app_libs\motor_control\math_blocks\v4.0\</path>
  81. <kind>object</kind>
  82. <file>pi.obj</file>
  83. <name>pi.obj</name>
  84. </input_file>
  85. <input_file id="fl-e">
  86. <path>.\include\libs\app_libs\motor_control\math_blocks\v4.0\</path>
  87. <kind>object</kind>
  88. <file>rmp_cntl.obj</file>
  89. <name>rmp_cntl.obj</name>
  90. </input_file>
  91. <input_file id="fl-f">
  92. <path>.\include\libs\app_libs\motor_control\math_blocks\v4.0\</path>
  93. <kind>object</kind>
  94. <file>speed_pr.obj</file>
  95. <name>speed_pr.obj</name>
  96. </input_file>
  97. <input_file id="fl-16">
  98. <kind>object</kind>
  99. <file>&lt;internal&gt;</file>
  100. <name>&lt;internal&gt;</name>
  101. </input_file>
  102. <input_file id="fl-17">
  103. <path>..\include\libs\math\IQmath\v15c\lib\</path>
  104. <kind>archive</kind>
  105. <file>IQmath.lib</file>
  106. <name>IQ12div.obj</name>
  107. </input_file>
  108. <input_file id="fl-18">
  109. <path>..\include\libs\math\IQmath\v15c\lib\</path>
  110. <kind>archive</kind>
  111. <file>IQmath.lib</file>
  112. <name>IQ24div.obj</name>
  113. </input_file>
  114. <input_file id="fl-19">
  115. <path>..\include\libs\math\IQmath\v15c\lib\</path>
  116. <kind>archive</kind>
  117. <file>IQmath.lib</file>
  118. <name>IQmathTables.obj</name>
  119. </input_file>
  120. <input_file id="fl-1a">
  121. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  122. <kind>archive</kind>
  123. <file>rts2800_ml.lib</file>
  124. <name>boot28.asm.obj</name>
  125. </input_file>
  126. <input_file id="fl-1b">
  127. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  128. <kind>archive</kind>
  129. <file>rts2800_ml.lib</file>
  130. <name>fd_mpy28.asm.obj</name>
  131. </input_file>
  132. <input_file id="fl-1c">
  133. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  134. <kind>archive</kind>
  135. <file>rts2800_ml.lib</file>
  136. <name>fd_tol28.asm.obj</name>
  137. </input_file>
  138. <input_file id="fl-1d">
  139. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  140. <kind>archive</kind>
  141. <file>rts2800_ml.lib</file>
  142. <name>fs_div28.asm.obj</name>
  143. </input_file>
  144. <input_file id="fl-1e">
  145. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  146. <kind>archive</kind>
  147. <file>rts2800_ml.lib</file>
  148. <name>fs_mpy28.asm.obj</name>
  149. </input_file>
  150. <input_file id="fl-1f">
  151. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  152. <kind>archive</kind>
  153. <file>rts2800_ml.lib</file>
  154. <name>fs_tol28.asm.obj</name>
  155. </input_file>
  156. <input_file id="fl-20">
  157. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  158. <kind>archive</kind>
  159. <file>rts2800_ml.lib</file>
  160. <name>l_tofs28.asm.obj</name>
  161. </input_file>
  162. <input_file id="fl-21">
  163. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  164. <kind>archive</kind>
  165. <file>rts2800_ml.lib</file>
  166. <name>l_div28.asm.obj</name>
  167. </input_file>
  168. <input_file id="fl-22">
  169. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  170. <kind>archive</kind>
  171. <file>rts2800_ml.lib</file>
  172. <name>fs_tofd28.asm.obj</name>
  173. </input_file>
  174. <input_file id="fl-23">
  175. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  176. <kind>archive</kind>
  177. <file>rts2800_ml.lib</file>
  178. <name>cpy_tbl.c.obj</name>
  179. </input_file>
  180. <input_file id="fl-24">
  181. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  182. <kind>archive</kind>
  183. <file>rts2800_ml.lib</file>
  184. <name>memcpy.c.obj</name>
  185. </input_file>
  186. <input_file id="fl-25">
  187. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  188. <kind>archive</kind>
  189. <file>rts2800_ml.lib</file>
  190. <name>pre_init.c.obj</name>
  191. </input_file>
  192. <input_file id="fl-26">
  193. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  194. <kind>archive</kind>
  195. <file>rts2800_ml.lib</file>
  196. <name>startup.c.obj</name>
  197. </input_file>
  198. <input_file id="fl-27">
  199. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  200. <kind>archive</kind>
  201. <file>rts2800_ml.lib</file>
  202. <name>exit.c.obj</name>
  203. </input_file>
  204. <input_file id="fl-28">
  205. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  206. <kind>archive</kind>
  207. <file>rts2800_ml.lib</file>
  208. <name>_lock.c.obj</name>
  209. </input_file>
  210. <input_file id="fl-29">
  211. <path>D:\ti\ccs1220\ccs\tools\compiler\ti-cgt-c2000_22.6.0.LTS\lib\</path>
  212. <kind>archive</kind>
  213. <file>rts2800_ml.lib</file>
  214. <name>args_main.c.obj</name>
  215. </input_file>
  216. </input_file_list>
  217. <object_component_list>
  218. <object_component id="oc-93">
  219. <name>.cinit</name>
  220. <load_address>0x3e9c04</load_address>
  221. <run_address>0x3e9c04</run_address>
  222. <size>0x12f</size>
  223. <input_file_ref idref="fl-7"/>
  224. </object_component>
  225. <object_component id="oc-a9">
  226. <name>.cinit</name>
  227. <load_address>0x3e9d33</load_address>
  228. <run_address>0x3e9d33</run_address>
  229. <size>0xe1</size>
  230. <input_file_ref idref="fl-a"/>
  231. </object_component>
  232. <object_component id="oc-141">
  233. <name>.cinit:_pwm_limit_table2</name>
  234. <load_address>0x3e9e14</load_address>
  235. <run_address>0x3e9e14</run_address>
  236. <size>0x28</size>
  237. <input_file_ref idref="fl-7"/>
  238. </object_component>
  239. <object_component id="oc-143">
  240. <name>.cinit:_pwm_limit_table_neg</name>
  241. <load_address>0x3e9e3c</load_address>
  242. <run_address>0x3e9e3c</run_address>
  243. <size>0x28</size>
  244. <input_file_ref idref="fl-7"/>
  245. </object_component>
  246. <object_component id="oc-9c">
  247. <name>.cinit</name>
  248. <load_address>0x3e9e64</load_address>
  249. <run_address>0x3e9e64</run_address>
  250. <size>0x18</size>
  251. <input_file_ref idref="fl-8"/>
  252. </object_component>
  253. <object_component id="oc-137">
  254. <name>.cinit:_ACQPS</name>
  255. <load_address>0x3e9e7c</load_address>
  256. <run_address>0x3e9e7c</run_address>
  257. <size>0x13</size>
  258. <input_file_ref idref="fl-7"/>
  259. </object_component>
  260. <object_component id="oc-133">
  261. <name>.cinit:_ChSel</name>
  262. <load_address>0x3e9e8f</load_address>
  263. <run_address>0x3e9e8f</run_address>
  264. <size>0x13</size>
  265. <input_file_ref idref="fl-7"/>
  266. </object_component>
  267. <object_component id="oc-13b">
  268. <name>.cinit:_RotarrpmArr$10</name>
  269. <load_address>0x3e9ea2</load_address>
  270. <run_address>0x3e9ea2</run_address>
  271. <size>0x13</size>
  272. <input_file_ref idref="fl-7"/>
  273. </object_component>
  274. <object_component id="oc-135">
  275. <name>.cinit:_TrigSel</name>
  276. <load_address>0x3e9eb5</load_address>
  277. <run_address>0x3e9eb5</run_address>
  278. <size>0x13</size>
  279. <input_file_ref idref="fl-7"/>
  280. </object_component>
  281. <object_component id="oc-78">
  282. <name>.cinit:_ePWM</name>
  283. <load_address>0x3e9ec8</load_address>
  284. <run_address>0x3e9ec8</run_address>
  285. <size>0x13</size>
  286. <input_file_ref idref="fl-7"/>
  287. </object_component>
  288. <object_component id="oc-147">
  289. <name>.cinit:_btable</name>
  290. <load_address>0x3e9edb</load_address>
  291. <run_address>0x3e9edb</run_address>
  292. <size>0xf</size>
  293. <input_file_ref idref="fl-7"/>
  294. </object_component>
  295. <object_component id="oc-145">
  296. <name>.cinit:_ktable</name>
  297. <load_address>0x3e9eea</load_address>
  298. <run_address>0x3e9eea</run_address>
  299. <size>0xf</size>
  300. <input_file_ref idref="fl-7"/>
  301. </object_component>
  302. <object_component id="oc-112">
  303. <name>.cinit</name>
  304. <load_address>0x3e9ef9</load_address>
  305. <run_address>0x3e9ef9</run_address>
  306. <size>0xe</size>
  307. <input_file_ref idref="fl-27"/>
  308. </object_component>
  309. <object_component id="oc-c6">
  310. <name>.cinit</name>
  311. <load_address>0x3e9f07</load_address>
  312. <run_address>0x3e9f07</run_address>
  313. <size>0x9</size>
  314. <input_file_ref idref="fl-f"/>
  315. </object_component>
  316. <object_component id="oc-13d">
  317. <name>.cinit:_pwm_limit_table1</name>
  318. <load_address>0x3e9f10</load_address>
  319. <run_address>0x3e9f10</run_address>
  320. <size>0x8</size>
  321. <input_file_ref idref="fl-7"/>
  322. </object_component>
  323. <object_component id="oc-13f">
  324. <name>.cinit:_pwm_limit_table1_NEG</name>
  325. <load_address>0x3e9f18</load_address>
  326. <run_address>0x3e9f18</run_address>
  327. <size>0x8</size>
  328. <input_file_ref idref="fl-7"/>
  329. </object_component>
  330. <object_component id="oc-14d">
  331. <name>.cinit:_cnt$5</name>
  332. <load_address>0x3e9f20</load_address>
  333. <run_address>0x3e9f20</run_address>
  334. <size>0x7</size>
  335. <input_file_ref idref="fl-8"/>
  336. </object_component>
  337. <object_component id="oc-6e">
  338. <name>.cinit:_eCAP</name>
  339. <load_address>0x3e9f27</load_address>
  340. <run_address>0x3e9f27</run_address>
  341. <size>0x7</size>
  342. <input_file_ref idref="fl-7"/>
  343. </object_component>
  344. <object_component id="oc-80">
  345. <name>.cinit:_eQEP</name>
  346. <load_address>0x3e9f2e</load_address>
  347. <run_address>0x3e9f2e</run_address>
  348. <size>0x7</size>
  349. <input_file_ref idref="fl-7"/>
  350. </object_component>
  351. <object_component id="oc-12d">
  352. <name>.cinit:__lock</name>
  353. <load_address>0x3e9f35</load_address>
  354. <run_address>0x3e9f35</run_address>
  355. <size>0x5</size>
  356. <input_file_ref idref="fl-28"/>
  357. </object_component>
  358. <object_component id="oc-14a">
  359. <name>.cinit:__unlock</name>
  360. <load_address>0x3e9f3a</load_address>
  361. <run_address>0x3e9f3a</run_address>
  362. <size>0x5</size>
  363. <input_file_ref idref="fl-28"/>
  364. </object_component>
  365. <object_component id="oc-12a">
  366. <name>.text</name>
  367. <load_address>0x3e8000</load_address>
  368. <run_address>0x3e8000</run_address>
  369. <size>0x1022</size>
  370. <input_file_ref idref="fl-7"/>
  371. </object_component>
  372. <object_component id="oc-12f">
  373. <name>.text</name>
  374. <load_address>0x3e9022</load_address>
  375. <run_address>0x3e9022</run_address>
  376. <size>0x317</size>
  377. <input_file_ref idref="fl-8"/>
  378. </object_component>
  379. <object_component id="oc-12e">
  380. <name>.text</name>
  381. <load_address>0x3e9339</load_address>
  382. <run_address>0x3e9339</run_address>
  383. <size>0x1c7</size>
  384. <input_file_ref idref="fl-6"/>
  385. </object_component>
  386. <object_component id="oc-138">
  387. <name>.text</name>
  388. <load_address>0x3e9500</load_address>
  389. <run_address>0x3e9500</run_address>
  390. <size>0x165</size>
  391. <input_file_ref idref="fl-a"/>
  392. </object_component>
  393. <object_component id="oc-14b">
  394. <name>.text</name>
  395. <load_address>0x3e9665</load_address>
  396. <run_address>0x3e9665</run_address>
  397. <size>0x9f</size>
  398. <input_file_ref idref="fl-c"/>
  399. </object_component>
  400. <object_component id="oc-96">
  401. <name>.text:retain</name>
  402. <load_address>0x3e9704</load_address>
  403. <run_address>0x3e9704</run_address>
  404. <size>0x97</size>
  405. <input_file_ref idref="fl-7"/>
  406. </object_component>
  407. <object_component id="oc-148">
  408. <name>.text</name>
  409. <load_address>0x3e979b</load_address>
  410. <run_address>0x3e979b</run_address>
  411. <size>0x8f</size>
  412. <input_file_ref idref="fl-d"/>
  413. </object_component>
  414. <object_component id="oc-d5">
  415. <name>.text</name>
  416. <load_address>0x3e982a</load_address>
  417. <run_address>0x3e982a</run_address>
  418. <size>0x83</size>
  419. <input_file_ref idref="fl-1b"/>
  420. </object_component>
  421. <object_component id="oc-df">
  422. <name>.text</name>
  423. <load_address>0x3e98ad</load_address>
  424. <run_address>0x3e98ad</run_address>
  425. <size>0x83</size>
  426. <input_file_ref idref="fl-1d"/>
  427. </object_component>
  428. <object_component id="oc-131">
  429. <name>.text</name>
  430. <load_address>0x3e9930</load_address>
  431. <run_address>0x3e9930</run_address>
  432. <size>0x72</size>
  433. <input_file_ref idref="fl-3"/>
  434. </object_component>
  435. <object_component id="oc-e4">
  436. <name>.text</name>
  437. <load_address>0x3e99a2</load_address>
  438. <run_address>0x3e99a2</run_address>
  439. <size>0x5a</size>
  440. <input_file_ref idref="fl-1e"/>
  441. </object_component>
  442. <object_component id="oc-48">
  443. <name>.text</name>
  444. <load_address>0x3e99fc</load_address>
  445. <run_address>0x3e99fc</run_address>
  446. <size>0x54</size>
  447. <input_file_ref idref="fl-1a"/>
  448. </object_component>
  449. <object_component id="oc-49">
  450. <name>.text</name>
  451. <load_address>0x3e9a50</load_address>
  452. <run_address>0x3e9a50</run_address>
  453. <size>0x4b</size>
  454. <input_file_ref idref="fl-2"/>
  455. </object_component>
  456. <object_component id="oc-139">
  457. <name>.text</name>
  458. <load_address>0x3e9a9b</load_address>
  459. <run_address>0x3e9a9b</run_address>
  460. <size>0x2d</size>
  461. <input_file_ref idref="fl-9"/>
  462. </object_component>
  463. <object_component id="oc-f3">
  464. <name>.text</name>
  465. <load_address>0x3e9ac8</load_address>
  466. <run_address>0x3e9ac8</run_address>
  467. <size>0x2a</size>
  468. <input_file_ref idref="fl-21"/>
  469. </object_component>
  470. <object_component id="oc-126">
  471. <name>.text</name>
  472. <load_address>0x3e9af2</load_address>
  473. <run_address>0x3e9af2</run_address>
  474. <size>0x29</size>
  475. <input_file_ref idref="fl-27"/>
  476. </object_component>
  477. <object_component id="oc-e9">
  478. <name>.text</name>
  479. <load_address>0x3e9b1b</load_address>
  480. <run_address>0x3e9b1b</run_address>
  481. <size>0x29</size>
  482. <input_file_ref idref="fl-1f"/>
  483. </object_component>
  484. <object_component id="oc-123">
  485. <name>.text</name>
  486. <load_address>0x3e9b44</load_address>
  487. <run_address>0x3e9b44</run_address>
  488. <size>0x24</size>
  489. <input_file_ref idref="fl-23"/>
  490. </object_component>
  491. <object_component id="oc-da">
  492. <name>.text</name>
  493. <load_address>0x3e9b68</load_address>
  494. <run_address>0x3e9b68</run_address>
  495. <size>0x1f</size>
  496. <input_file_ref idref="fl-1c"/>
  497. </object_component>
  498. <object_component id="oc-12b">
  499. <name>.text</name>
  500. <load_address>0x3e9b87</load_address>
  501. <run_address>0x3e9b87</run_address>
  502. <size>0x1d</size>
  503. <input_file_ref idref="fl-24"/>
  504. </object_component>
  505. <object_component id="oc-f8">
  506. <name>.text</name>
  507. <load_address>0x3e9ba4</load_address>
  508. <run_address>0x3e9ba4</run_address>
  509. <size>0x1c</size>
  510. <input_file_ref idref="fl-22"/>
  511. </object_component>
  512. <object_component id="oc-ee">
  513. <name>.text</name>
  514. <load_address>0x3e9bc0</load_address>
  515. <run_address>0x3e9bc0</run_address>
  516. <size>0x1a</size>
  517. <input_file_ref idref="fl-20"/>
  518. </object_component>
  519. <object_component id="oc-125">
  520. <name>.text</name>
  521. <load_address>0x3e9bda</load_address>
  522. <run_address>0x3e9bda</run_address>
  523. <size>0x11</size>
  524. <input_file_ref idref="fl-29"/>
  525. </object_component>
  526. <object_component id="oc-149">
  527. <name>.text</name>
  528. <load_address>0x3e9beb</load_address>
  529. <run_address>0x3e9beb</run_address>
  530. <size>0x9</size>
  531. <input_file_ref idref="fl-28"/>
  532. </object_component>
  533. <object_component id="oc-b0">
  534. <name>.text</name>
  535. <load_address>0x3e9bf4</load_address>
  536. <run_address>0x3e9bf4</run_address>
  537. <size>0x8</size>
  538. <input_file_ref idref="fl-b"/>
  539. </object_component>
  540. <object_component id="oc-8d">
  541. <name>.text:retain</name>
  542. <load_address>0x3e9bfc</load_address>
  543. <run_address>0x3e9bfc</run_address>
  544. <size>0x5</size>
  545. <input_file_ref idref="fl-6"/>
  546. </object_component>
  547. <object_component id="oc-122">
  548. <name>.text</name>
  549. <load_address>0x3e9c01</load_address>
  550. <run_address>0x3e9c01</run_address>
  551. <size>0x2</size>
  552. <input_file_ref idref="fl-25"/>
  553. </object_component>
  554. <object_component id="oc-124">
  555. <name>.text</name>
  556. <load_address>0x3e9c03</load_address>
  557. <run_address>0x3e9c03</run_address>
  558. <size>0x1</size>
  559. <input_file_ref idref="fl-26"/>
  560. </object_component>
  561. <object_component id="oc-b1">
  562. <name>codestart</name>
  563. <load_address>0x3f7ff6</load_address>
  564. <run_address>0x3f7ff6</run_address>
  565. <size>0x2</size>
  566. <input_file_ref idref="fl-b"/>
  567. </object_component>
  568. <object_component id="oc-95">
  569. <name>ramfuncs:retain</name>
  570. <load_address>0x3ec000</load_address>
  571. <run_address>0x8000</run_address>
  572. <size>0x99</size>
  573. <input_file_ref idref="fl-7"/>
  574. </object_component>
  575. <object_component id="oc-130">
  576. <name>ramfuncs</name>
  577. <load_address>0x3ec099</load_address>
  578. <run_address>0x8099</run_address>
  579. <size>0x1b</size>
  580. <input_file_ref idref="fl-6"/>
  581. </object_component>
  582. <object_component id="oc-87">
  583. <name>ramfuncs</name>
  584. <load_address>0x3ec0b4</load_address>
  585. <run_address>0x80b4</run_address>
  586. <size>0x4</size>
  587. <input_file_ref idref="fl-5"/>
  588. </object_component>
  589. <object_component id="oc-cf">
  590. <name>.stack</name>
  591. <uninitialized>true</uninitialized>
  592. <run_address>0x50</run_address>
  593. <size>0x0</size>
  594. <input_file_ref idref="fl-1a"/>
  595. </object_component>
  596. <object_component id="oc-19e">
  597. <name>.stack</name>
  598. <uninitialized>true</uninitialized>
  599. <run_address>0x50</run_address>
  600. <size>0x0</size>
  601. </object_component>
  602. <object_component id="oc-50">
  603. <name>.ebss</name>
  604. <uninitialized>true</uninitialized>
  605. <run_address>0x96e6</run_address>
  606. <size>0x18</size>
  607. <input_file_ref idref="fl-3"/>
  608. </object_component>
  609. <object_component id="oc-94">
  610. <name>.ebss</name>
  611. <uninitialized>true</uninitialized>
  612. <run_address>0x9640</run_address>
  613. <size>0xa5</size>
  614. <input_file_ref idref="fl-7"/>
  615. </object_component>
  616. <object_component id="oc-129">
  617. <name>.ebss:_eQEP</name>
  618. <uninitialized>true</uninitialized>
  619. <run_address>0x987c</run_address>
  620. <size>0x4</size>
  621. <input_file_ref idref="fl-7"/>
  622. </object_component>
  623. <object_component id="oc-127">
  624. <name>.ebss:_eCAP</name>
  625. <uninitialized>true</uninitialized>
  626. <run_address>0x983a</run_address>
  627. <size>0x4</size>
  628. <input_file_ref idref="fl-7"/>
  629. </object_component>
  630. <object_component id="oc-13c">
  631. <name>.ebss:_pwm_limit_table1</name>
  632. <uninitialized>true</uninitialized>
  633. <run_address>0x97f5</run_address>
  634. <size>0x5</size>
  635. <input_file_ref idref="fl-7"/>
  636. </object_component>
  637. <object_component id="oc-13e">
  638. <name>.ebss:_pwm_limit_table1_NEG</name>
  639. <uninitialized>true</uninitialized>
  640. <run_address>0x97fa</run_address>
  641. <size>0x5</size>
  642. <input_file_ref idref="fl-7"/>
  643. </object_component>
  644. <object_component id="oc-144">
  645. <name>.ebss:_ktable</name>
  646. <uninitialized>true</uninitialized>
  647. <run_address>0x9880</run_address>
  648. <size>0xc</size>
  649. <input_file_ref idref="fl-7"/>
  650. </object_component>
  651. <object_component id="oc-146">
  652. <name>.ebss:_btable</name>
  653. <uninitialized>true</uninitialized>
  654. <run_address>0x9870</run_address>
  655. <size>0xc</size>
  656. <input_file_ref idref="fl-7"/>
  657. </object_component>
  658. <object_component id="oc-128">
  659. <name>.ebss:_ePWM</name>
  660. <uninitialized>true</uninitialized>
  661. <run_address>0x9860</run_address>
  662. <size>0x10</size>
  663. <input_file_ref idref="fl-7"/>
  664. </object_component>
  665. <object_component id="oc-132">
  666. <name>.ebss:_ChSel</name>
  667. <uninitialized>true</uninitialized>
  668. <run_address>0x9825</run_address>
  669. <size>0x10</size>
  670. <input_file_ref idref="fl-7"/>
  671. </object_component>
  672. <object_component id="oc-134">
  673. <name>.ebss:_TrigSel</name>
  674. <uninitialized>true</uninitialized>
  675. <run_address>0x9850</run_address>
  676. <size>0x10</size>
  677. <input_file_ref idref="fl-7"/>
  678. </object_component>
  679. <object_component id="oc-136">
  680. <name>.ebss:_ACQPS</name>
  681. <uninitialized>true</uninitialized>
  682. <run_address>0x97e5</run_address>
  683. <size>0x10</size>
  684. <input_file_ref idref="fl-7"/>
  685. </object_component>
  686. <object_component id="oc-13a">
  687. <name>.ebss:_RotarrpmArr$10</name>
  688. <uninitialized>true</uninitialized>
  689. <run_address>0x9840</run_address>
  690. <size>0x10</size>
  691. <input_file_ref idref="fl-7"/>
  692. </object_component>
  693. <object_component id="oc-140">
  694. <name>.ebss:_pwm_limit_table2</name>
  695. <uninitialized>true</uninitialized>
  696. <run_address>0x97c0</run_address>
  697. <size>0x25</size>
  698. <input_file_ref idref="fl-7"/>
  699. </object_component>
  700. <object_component id="oc-142">
  701. <name>.ebss:_pwm_limit_table_neg</name>
  702. <uninitialized>true</uninitialized>
  703. <run_address>0x9800</run_address>
  704. <size>0x25</size>
  705. <input_file_ref idref="fl-7"/>
  706. </object_component>
  707. <object_component id="oc-9d">
  708. <name>.ebss</name>
  709. <uninitialized>true</uninitialized>
  710. <run_address>0x9780</run_address>
  711. <size>0x38</size>
  712. <input_file_ref idref="fl-8"/>
  713. </object_component>
  714. <object_component id="oc-14c">
  715. <name>.ebss:_cnt$5</name>
  716. <uninitialized>true</uninitialized>
  717. <run_address>0x9835</run_address>
  718. <size>0x4</size>
  719. <input_file_ref idref="fl-8"/>
  720. </object_component>
  721. <object_component id="oc-aa">
  722. <name>.ebss</name>
  723. <uninitialized>true</uninitialized>
  724. <run_address>0x9700</run_address>
  725. <size>0x80</size>
  726. <input_file_ref idref="fl-a"/>
  727. </object_component>
  728. <object_component id="oc-c7">
  729. <name>.ebss</name>
  730. <uninitialized>true</uninitialized>
  731. <run_address>0x988c</run_address>
  732. <size>0x4</size>
  733. <input_file_ref idref="fl-f"/>
  734. </object_component>
  735. <object_component id="oc-113">
  736. <name>.ebss</name>
  737. <uninitialized>true</uninitialized>
  738. <run_address>0x97b8</run_address>
  739. <size>0x6</size>
  740. <input_file_ref idref="fl-27"/>
  741. </object_component>
  742. <object_component id="oc-12c">
  743. <name>.ebss:__lock</name>
  744. <uninitialized>true</uninitialized>
  745. <run_address>0x96fe</run_address>
  746. <size>0x2</size>
  747. <input_file_ref idref="fl-28"/>
  748. </object_component>
  749. <object_component id="oc-14e">
  750. <name>.ebss:__unlock</name>
  751. <uninitialized>true</uninitialized>
  752. <run_address>0x97be</run_address>
  753. <size>0x2</size>
  754. <input_file_ref idref="fl-28"/>
  755. </object_component>
  756. <object_component id="oc-ab">
  757. <name>.econst</name>
  758. <load_address>0x3e9fd0</load_address>
  759. <run_address>0x3e9fd0</run_address>
  760. <size>0x4</size>
  761. <input_file_ref idref="fl-a"/>
  762. </object_component>
  763. <object_component id="oc-cc">
  764. <name>IQmath</name>
  765. <load_address>0x3e9f41</load_address>
  766. <run_address>0x3e9f41</run_address>
  767. <size>0x47</size>
  768. <input_file_ref idref="fl-17"/>
  769. </object_component>
  770. <object_component id="oc-cd">
  771. <name>IQmath</name>
  772. <load_address>0x3e9f88</load_address>
  773. <run_address>0x3e9f88</run_address>
  774. <size>0x47</size>
  775. <input_file_ref idref="fl-18"/>
  776. </object_component>
  777. <object_component id="oc-ce">
  778. <name>IQmathTables</name>
  779. <load_address>0x3fe000</load_address>
  780. <run_address>0x3fe000</run_address>
  781. <size>0xb50</size>
  782. <input_file_ref idref="fl-19"/>
  783. </object_component>
  784. <object_component id="oc-d0">
  785. <name>.reset</name>
  786. <load_address>0x3fffc0</load_address>
  787. <run_address>0x3fffc0</run_address>
  788. <size>0x2</size>
  789. <input_file_ref idref="fl-1a"/>
  790. </object_component>
  791. <object_component id="oc-9e">
  792. <name>MemoryFile</name>
  793. <uninitialized>true</uninitialized>
  794. <run_address>0x400</run_address>
  795. <size>0x400</size>
  796. <input_file_ref idref="fl-8"/>
  797. </object_component>
  798. <object_component id="oc-4a">
  799. <name>DLOG</name>
  800. <uninitialized>true</uninitialized>
  801. <run_address>0x9000</run_address>
  802. <size>0x640</size>
  803. <input_file_ref idref="fl-2"/>
  804. </object_component>
  805. <object_component id="oc-85">
  806. <name>PieVectTableFile</name>
  807. <uninitialized>true</uninitialized>
  808. <run_address>0xd00</run_address>
  809. <size>0x100</size>
  810. <input_file_ref idref="fl-4"/>
  811. </object_component>
  812. <object_component id="oc-57">
  813. <name>EmuKeyVar</name>
  814. <uninitialized>true</uninitialized>
  815. <run_address>0xd00</run_address>
  816. <size>0x1</size>
  817. <input_file_ref idref="fl-4"/>
  818. </object_component>
  819. <object_component id="oc-58">
  820. <name>EmuBModeVar</name>
  821. <uninitialized>true</uninitialized>
  822. <run_address>0xd01</run_address>
  823. <size>0x1</size>
  824. <input_file_ref idref="fl-4"/>
  825. </object_component>
  826. <object_component id="oc-5a">
  827. <name>FlashCallbackVar</name>
  828. <uninitialized>true</uninitialized>
  829. <run_address>0xd02</run_address>
  830. <size>0x2</size>
  831. <input_file_ref idref="fl-4"/>
  832. </object_component>
  833. <object_component id="oc-59">
  834. <name>FlashScalingVar</name>
  835. <uninitialized>true</uninitialized>
  836. <run_address>0xd04</run_address>
  837. <size>0x2</size>
  838. <input_file_ref idref="fl-4"/>
  839. </object_component>
  840. <object_component id="oc-5b">
  841. <name>DevEmuRegsFile</name>
  842. <uninitialized>true</uninitialized>
  843. <run_address>0x880</run_address>
  844. <size>0x4</size>
  845. <input_file_ref idref="fl-4"/>
  846. </object_component>
  847. <object_component id="oc-60">
  848. <name>FlashRegsFile</name>
  849. <uninitialized>true</uninitialized>
  850. <run_address>0xa80</run_address>
  851. <size>0x8</size>
  852. <input_file_ref idref="fl-4"/>
  853. </object_component>
  854. <object_component id="oc-62">
  855. <name>CsmRegsFile</name>
  856. <uninitialized>true</uninitialized>
  857. <run_address>0xae0</run_address>
  858. <size>0x10</size>
  859. <input_file_ref idref="fl-4"/>
  860. </object_component>
  861. <object_component id="oc-6c">
  862. <name>AdcResultFile</name>
  863. <uninitialized>true</uninitialized>
  864. <run_address>0xb00</run_address>
  865. <size>0x20</size>
  866. <input_file_ref idref="fl-4"/>
  867. </object_component>
  868. <object_component id="oc-5c">
  869. <name>CpuTimer0RegsFile</name>
  870. <uninitialized>true</uninitialized>
  871. <run_address>0xc00</run_address>
  872. <size>0x8</size>
  873. <input_file_ref idref="fl-4"/>
  874. </object_component>
  875. <object_component id="oc-5d">
  876. <name>CpuTimer1RegsFile</name>
  877. <uninitialized>true</uninitialized>
  878. <run_address>0xc08</run_address>
  879. <size>0x8</size>
  880. <input_file_ref idref="fl-4"/>
  881. </object_component>
  882. <object_component id="oc-5e">
  883. <name>CpuTimer2RegsFile</name>
  884. <uninitialized>true</uninitialized>
  885. <run_address>0xc10</run_address>
  886. <size>0x8</size>
  887. <input_file_ref idref="fl-4"/>
  888. </object_component>
  889. <object_component id="oc-6b">
  890. <name>PieCtrlRegsFile</name>
  891. <uninitialized>true</uninitialized>
  892. <run_address>0xce0</run_address>
  893. <size>0x1a</size>
  894. <input_file_ref idref="fl-4"/>
  895. </object_component>
  896. <object_component id="oc-76">
  897. <name>Cla1RegsFile</name>
  898. <uninitialized>true</uninitialized>
  899. <run_address>0x1400</run_address>
  900. <size>0x40</size>
  901. <input_file_ref idref="fl-4"/>
  902. </object_component>
  903. <object_component id="oc-72">
  904. <name>ECanaRegsFile</name>
  905. <uninitialized>true</uninitialized>
  906. <run_address>0x6000</run_address>
  907. <size>0x34</size>
  908. <input_file_ref idref="fl-4"/>
  909. </object_component>
  910. <object_component id="oc-73">
  911. <name>ECanaLAMRegsFile</name>
  912. <uninitialized>true</uninitialized>
  913. <run_address>0x6040</run_address>
  914. <size>0x40</size>
  915. <input_file_ref idref="fl-4"/>
  916. </object_component>
  917. <object_component id="oc-84">
  918. <name>ECanaMboxesFile</name>
  919. <uninitialized>true</uninitialized>
  920. <run_address>0x6100</run_address>
  921. <size>0x100</size>
  922. <input_file_ref idref="fl-4"/>
  923. </object_component>
  924. <object_component id="oc-74">
  925. <name>ECanaMOTSRegsFile</name>
  926. <uninitialized>true</uninitialized>
  927. <run_address>0x6080</run_address>
  928. <size>0x40</size>
  929. <input_file_ref idref="fl-4"/>
  930. </object_component>
  931. <object_component id="oc-75">
  932. <name>ECanaMOTORegsFile</name>
  933. <uninitialized>true</uninitialized>
  934. <run_address>0x60c0</run_address>
  935. <size>0x40</size>
  936. <input_file_ref idref="fl-4"/>
  937. </object_component>
  938. <object_component id="oc-6d">
  939. <name>ECap1RegsFile</name>
  940. <uninitialized>true</uninitialized>
  941. <run_address>0x6a00</run_address>
  942. <size>0x20</size>
  943. <input_file_ref idref="fl-4"/>
  944. </object_component>
  945. <object_component id="oc-7f">
  946. <name>EQep1RegsFile</name>
  947. <uninitialized>true</uninitialized>
  948. <run_address>0x6b00</run_address>
  949. <size>0x40</size>
  950. <input_file_ref idref="fl-4"/>
  951. </object_component>
  952. <object_component id="oc-82">
  953. <name>LinaRegsFile</name>
  954. <uninitialized>true</uninitialized>
  955. <run_address>0x6c00</run_address>
  956. <size>0x4a</size>
  957. <input_file_ref idref="fl-4"/>
  958. </object_component>
  959. <object_component id="oc-81">
  960. <name>GpioCtrlRegsFile</name>
  961. <uninitialized>true</uninitialized>
  962. <run_address>0x6f80</run_address>
  963. <size>0x40</size>
  964. <input_file_ref idref="fl-4"/>
  965. </object_component>
  966. <object_component id="oc-6f">
  967. <name>GpioDataRegsFile</name>
  968. <uninitialized>true</uninitialized>
  969. <run_address>0x6fc0</run_address>
  970. <size>0x20</size>
  971. <input_file_ref idref="fl-4"/>
  972. </object_component>
  973. <object_component id="oc-61">
  974. <name>GpioIntRegsFile</name>
  975. <uninitialized>true</uninitialized>
  976. <run_address>0x6fe0</run_address>
  977. <size>0xc</size>
  978. <input_file_ref idref="fl-4"/>
  979. </object_component>
  980. <object_component id="oc-70">
  981. <name>SysCtrlRegsFile</name>
  982. <uninitialized>true</uninitialized>
  983. <run_address>0x7010</run_address>
  984. <size>0x20</size>
  985. <input_file_ref idref="fl-4"/>
  986. </object_component>
  987. <object_component id="oc-65">
  988. <name>SpiaRegsFile</name>
  989. <uninitialized>true</uninitialized>
  990. <run_address>0x7040</run_address>
  991. <size>0x10</size>
  992. <input_file_ref idref="fl-4"/>
  993. </object_component>
  994. <object_component id="oc-66">
  995. <name>SpibRegsFile</name>
  996. <uninitialized>true</uninitialized>
  997. <run_address>0x7740</run_address>
  998. <size>0x10</size>
  999. <input_file_ref idref="fl-4"/>
  1000. </object_component>
  1001. <object_component id="oc-64">
  1002. <name>SciaRegsFile</name>
  1003. <uninitialized>true</uninitialized>
  1004. <run_address>0x7050</run_address>
  1005. <size>0x10</size>
  1006. <input_file_ref idref="fl-4"/>
  1007. </object_component>
  1008. <object_component id="oc-63">
  1009. <name>NmiIntruptRegsFile</name>
  1010. <uninitialized>true</uninitialized>
  1011. <run_address>0x7060</run_address>
  1012. <size>0x10</size>
  1013. <input_file_ref idref="fl-4"/>
  1014. </object_component>
  1015. <object_component id="oc-67">
  1016. <name>XIntruptRegsFile</name>
  1017. <uninitialized>true</uninitialized>
  1018. <run_address>0x7070</run_address>
  1019. <size>0x10</size>
  1020. <input_file_ref idref="fl-4"/>
  1021. </object_component>
  1022. <object_component id="oc-83">
  1023. <name>AdcRegsFile</name>
  1024. <uninitialized>true</uninitialized>
  1025. <run_address>0x7100</run_address>
  1026. <size>0x50</size>
  1027. <input_file_ref idref="fl-4"/>
  1028. </object_component>
  1029. <object_component id="oc-71">
  1030. <name>I2caRegsFile</name>
  1031. <uninitialized>true</uninitialized>
  1032. <run_address>0x7900</run_address>
  1033. <size>0x22</size>
  1034. <input_file_ref idref="fl-4"/>
  1035. </object_component>
  1036. <object_component id="oc-68">
  1037. <name>Comp1RegsFile</name>
  1038. <uninitialized>true</uninitialized>
  1039. <run_address>0x6400</run_address>
  1040. <size>0x14</size>
  1041. <input_file_ref idref="fl-4"/>
  1042. </object_component>
  1043. <object_component id="oc-69">
  1044. <name>Comp2RegsFile</name>
  1045. <uninitialized>true</uninitialized>
  1046. <run_address>0x6420</run_address>
  1047. <size>0x14</size>
  1048. <input_file_ref idref="fl-4"/>
  1049. </object_component>
  1050. <object_component id="oc-6a">
  1051. <name>Comp3RegsFile</name>
  1052. <uninitialized>true</uninitialized>
  1053. <run_address>0x6440</run_address>
  1054. <size>0x14</size>
  1055. <input_file_ref idref="fl-4"/>
  1056. </object_component>
  1057. <object_component id="oc-77">
  1058. <name>EPwm1RegsFile</name>
  1059. <uninitialized>true</uninitialized>
  1060. <run_address>0x6800</run_address>
  1061. <size>0x40</size>
  1062. <input_file_ref idref="fl-4"/>
  1063. </object_component>
  1064. <object_component id="oc-79">
  1065. <name>EPwm2RegsFile</name>
  1066. <uninitialized>true</uninitialized>
  1067. <run_address>0x6840</run_address>
  1068. <size>0x40</size>
  1069. <input_file_ref idref="fl-4"/>
  1070. </object_component>
  1071. <object_component id="oc-7a">
  1072. <name>EPwm3RegsFile</name>
  1073. <uninitialized>true</uninitialized>
  1074. <run_address>0x6880</run_address>
  1075. <size>0x40</size>
  1076. <input_file_ref idref="fl-4"/>
  1077. </object_component>
  1078. <object_component id="oc-7b">
  1079. <name>EPwm4RegsFile</name>
  1080. <uninitialized>true</uninitialized>
  1081. <run_address>0x68c0</run_address>
  1082. <size>0x40</size>
  1083. <input_file_ref idref="fl-4"/>
  1084. </object_component>
  1085. <object_component id="oc-7c">
  1086. <name>EPwm5RegsFile</name>
  1087. <uninitialized>true</uninitialized>
  1088. <run_address>0x6900</run_address>
  1089. <size>0x40</size>
  1090. <input_file_ref idref="fl-4"/>
  1091. </object_component>
  1092. <object_component id="oc-7d">
  1093. <name>EPwm6RegsFile</name>
  1094. <uninitialized>true</uninitialized>
  1095. <run_address>0x6940</run_address>
  1096. <size>0x40</size>
  1097. <input_file_ref idref="fl-4"/>
  1098. </object_component>
  1099. <object_component id="oc-7e">
  1100. <name>EPwm7RegsFile</name>
  1101. <uninitialized>true</uninitialized>
  1102. <run_address>0x6980</run_address>
  1103. <size>0x40</size>
  1104. <input_file_ref idref="fl-4"/>
  1105. </object_component>
  1106. <object_component id="oc-5f">
  1107. <name>CsmPwlFile</name>
  1108. <uninitialized>true</uninitialized>
  1109. <run_address>0x3f7ff8</run_address>
  1110. <size>0x8</size>
  1111. <input_file_ref idref="fl-4"/>
  1112. </object_component>
  1113. <object_component id="oc-56">
  1114. <name>PartIdRegsFile</name>
  1115. <uninitialized>true</uninitialized>
  1116. <run_address>0x3d7e80</run_address>
  1117. <size>0x1</size>
  1118. <input_file_ref idref="fl-4"/>
  1119. </object_component>
  1120. <object_component id="oc-4b">
  1121. <name>.debug_line</name>
  1122. <load_address>0x0</load_address>
  1123. <run_address>0x0</run_address>
  1124. <size>0x7f</size>
  1125. <input_file_ref idref="fl-2"/>
  1126. </object_component>
  1127. <object_component id="oc-52">
  1128. <name>.debug_line</name>
  1129. <load_address>0x7f</load_address>
  1130. <run_address>0x7f</run_address>
  1131. <size>0x88</size>
  1132. <input_file_ref idref="fl-3"/>
  1133. </object_component>
  1134. <object_component id="oc-88">
  1135. <name>.debug_line</name>
  1136. <load_address>0x107</load_address>
  1137. <run_address>0x107</run_address>
  1138. <size>0x48</size>
  1139. <input_file_ref idref="fl-5"/>
  1140. </object_component>
  1141. <object_component id="oc-8f">
  1142. <name>.debug_line</name>
  1143. <load_address>0x14f</load_address>
  1144. <run_address>0x14f</run_address>
  1145. <size>0x1f0</size>
  1146. <input_file_ref idref="fl-6"/>
  1147. </object_component>
  1148. <object_component id="oc-98">
  1149. <name>.debug_line</name>
  1150. <load_address>0x33f</load_address>
  1151. <run_address>0x33f</run_address>
  1152. <size>0xa03</size>
  1153. <input_file_ref idref="fl-7"/>
  1154. </object_component>
  1155. <object_component id="oc-a0">
  1156. <name>.debug_line</name>
  1157. <load_address>0xd42</load_address>
  1158. <run_address>0xd42</run_address>
  1159. <size>0x2b1</size>
  1160. <input_file_ref idref="fl-8"/>
  1161. </object_component>
  1162. <object_component id="oc-a5">
  1163. <name>.debug_line</name>
  1164. <load_address>0xff3</load_address>
  1165. <run_address>0xff3</run_address>
  1166. <size>0x5d</size>
  1167. <input_file_ref idref="fl-9"/>
  1168. </object_component>
  1169. <object_component id="oc-ad">
  1170. <name>.debug_line</name>
  1171. <load_address>0x1050</load_address>
  1172. <run_address>0x1050</run_address>
  1173. <size>0x197</size>
  1174. <input_file_ref idref="fl-a"/>
  1175. </object_component>
  1176. <object_component id="oc-b2">
  1177. <name>.debug_line</name>
  1178. <load_address>0x11e7</load_address>
  1179. <run_address>0x11e7</run_address>
  1180. <size>0x9b</size>
  1181. <input_file_ref idref="fl-b"/>
  1182. </object_component>
  1183. <object_component id="oc-b8">
  1184. <name>.debug_line</name>
  1185. <load_address>0x1282</load_address>
  1186. <run_address>0x1282</run_address>
  1187. <size>0x122</size>
  1188. <input_file_ref idref="fl-c"/>
  1189. </object_component>
  1190. <object_component id="oc-bd">
  1191. <name>.debug_line</name>
  1192. <load_address>0x13a4</load_address>
  1193. <run_address>0x13a4</run_address>
  1194. <size>0xb1</size>
  1195. <input_file_ref idref="fl-d"/>
  1196. </object_component>
  1197. <object_component id="oc-c2">
  1198. <name>.debug_line</name>
  1199. <load_address>0x1455</load_address>
  1200. <run_address>0x1455</run_address>
  1201. <size>0x63</size>
  1202. <input_file_ref idref="fl-e"/>
  1203. </object_component>
  1204. <object_component id="oc-c9">
  1205. <name>.debug_line</name>
  1206. <load_address>0x14b8</load_address>
  1207. <run_address>0x14b8</run_address>
  1208. <size>0x63</size>
  1209. <input_file_ref idref="fl-f"/>
  1210. </object_component>
  1211. <object_component id="oc-d2">
  1212. <name>.debug_line</name>
  1213. <load_address>0x151b</load_address>
  1214. <run_address>0x151b</run_address>
  1215. <size>0x7d</size>
  1216. <input_file_ref idref="fl-1a"/>
  1217. </object_component>
  1218. <object_component id="oc-d7">
  1219. <name>.debug_line</name>
  1220. <load_address>0x1598</load_address>
  1221. <run_address>0x1598</run_address>
  1222. <size>0xa2</size>
  1223. <input_file_ref idref="fl-1b"/>
  1224. </object_component>
  1225. <object_component id="oc-dc">
  1226. <name>.debug_line</name>
  1227. <load_address>0x163a</load_address>
  1228. <run_address>0x163a</run_address>
  1229. <size>0x58</size>
  1230. <input_file_ref idref="fl-1c"/>
  1231. </object_component>
  1232. <object_component id="oc-e1">
  1233. <name>.debug_line</name>
  1234. <load_address>0x1692</load_address>
  1235. <run_address>0x1692</run_address>
  1236. <size>0xab</size>
  1237. <input_file_ref idref="fl-1d"/>
  1238. </object_component>
  1239. <object_component id="oc-e6">
  1240. <name>.debug_line</name>
  1241. <load_address>0x173d</load_address>
  1242. <run_address>0x173d</run_address>
  1243. <size>0x8d</size>
  1244. <input_file_ref idref="fl-1e"/>
  1245. </object_component>
  1246. <object_component id="oc-eb">
  1247. <name>.debug_line</name>
  1248. <load_address>0x17ca</load_address>
  1249. <run_address>0x17ca</run_address>
  1250. <size>0x60</size>
  1251. <input_file_ref idref="fl-1f"/>
  1252. </object_component>
  1253. <object_component id="oc-f0">
  1254. <name>.debug_line</name>
  1255. <load_address>0x182a</load_address>
  1256. <run_address>0x182a</run_address>
  1257. <size>0x53</size>
  1258. <input_file_ref idref="fl-20"/>
  1259. </object_component>
  1260. <object_component id="oc-f5">
  1261. <name>.debug_line</name>
  1262. <load_address>0x187d</load_address>
  1263. <run_address>0x187d</run_address>
  1264. <size>0x8e</size>
  1265. <input_file_ref idref="fl-21"/>
  1266. </object_component>
  1267. <object_component id="oc-fa">
  1268. <name>.debug_line</name>
  1269. <load_address>0x190b</load_address>
  1270. <run_address>0x190b</run_address>
  1271. <size>0x56</size>
  1272. <input_file_ref idref="fl-22"/>
  1273. </object_component>
  1274. <object_component id="oc-ff">
  1275. <name>.debug_line</name>
  1276. <load_address>0x1961</load_address>
  1277. <run_address>0x1961</run_address>
  1278. <size>0x50</size>
  1279. <input_file_ref idref="fl-23"/>
  1280. </object_component>
  1281. <object_component id="oc-104">
  1282. <name>.debug_line</name>
  1283. <load_address>0x19b1</load_address>
  1284. <run_address>0x19b1</run_address>
  1285. <size>0x62</size>
  1286. <input_file_ref idref="fl-24"/>
  1287. </object_component>
  1288. <object_component id="oc-109">
  1289. <name>.debug_line</name>
  1290. <load_address>0x1a13</load_address>
  1291. <run_address>0x1a13</run_address>
  1292. <size>0x3e</size>
  1293. <input_file_ref idref="fl-25"/>
  1294. </object_component>
  1295. <object_component id="oc-10e">
  1296. <name>.debug_line</name>
  1297. <load_address>0x1a51</load_address>
  1298. <run_address>0x1a51</run_address>
  1299. <size>0x3a</size>
  1300. <input_file_ref idref="fl-26"/>
  1301. </object_component>
  1302. <object_component id="oc-115">
  1303. <name>.debug_line</name>
  1304. <load_address>0x1a8b</load_address>
  1305. <run_address>0x1a8b</run_address>
  1306. <size>0x65</size>
  1307. <input_file_ref idref="fl-27"/>
  1308. </object_component>
  1309. <object_component id="oc-11a">
  1310. <name>.debug_line</name>
  1311. <load_address>0x1af0</load_address>
  1312. <run_address>0x1af0</run_address>
  1313. <size>0x5e</size>
  1314. <input_file_ref idref="fl-28"/>
  1315. </object_component>
  1316. <object_component id="oc-11f">
  1317. <name>.debug_line</name>
  1318. <load_address>0x1b4e</load_address>
  1319. <run_address>0x1b4e</run_address>
  1320. <size>0x4f</size>
  1321. <input_file_ref idref="fl-29"/>
  1322. </object_component>
  1323. <object_component id="oc-4c">
  1324. <name>.debug_info</name>
  1325. <load_address>0x0</load_address>
  1326. <run_address>0x0</run_address>
  1327. <size>0xf8</size>
  1328. <input_file_ref idref="fl-2"/>
  1329. </object_component>
  1330. <object_component id="oc-4f">
  1331. <name>.debug_info</name>
  1332. <load_address>0xf8</load_address>
  1333. <run_address>0xf8</run_address>
  1334. <size>0x904</size>
  1335. <input_file_ref idref="fl-3"/>
  1336. </object_component>
  1337. <object_component id="oc-55">
  1338. <name>.debug_info</name>
  1339. <load_address>0x9fc</load_address>
  1340. <run_address>0x9fc</run_address>
  1341. <size>0x138a2</size>
  1342. <input_file_ref idref="fl-4"/>
  1343. </object_component>
  1344. <object_component id="oc-89">
  1345. <name>.debug_info</name>
  1346. <load_address>0x1429e</load_address>
  1347. <run_address>0x1429e</run_address>
  1348. <size>0xef</size>
  1349. <input_file_ref idref="fl-5"/>
  1350. </object_component>
  1351. <object_component id="oc-8c">
  1352. <name>.debug_info</name>
  1353. <load_address>0x1438d</load_address>
  1354. <run_address>0x1438d</run_address>
  1355. <size>0x46ad</size>
  1356. <input_file_ref idref="fl-6"/>
  1357. </object_component>
  1358. <object_component id="oc-92">
  1359. <name>.debug_info</name>
  1360. <load_address>0x18a3a</load_address>
  1361. <run_address>0x18a3a</run_address>
  1362. <size>0xc7e4</size>
  1363. <input_file_ref idref="fl-7"/>
  1364. </object_component>
  1365. <object_component id="oc-9b">
  1366. <name>.debug_info</name>
  1367. <load_address>0x2521e</load_address>
  1368. <run_address>0x2521e</run_address>
  1369. <size>0x5634</size>
  1370. <input_file_ref idref="fl-8"/>
  1371. </object_component>
  1372. <object_component id="oc-a3">
  1373. <name>.debug_info</name>
  1374. <load_address>0x2a852</load_address>
  1375. <run_address>0x2a852</run_address>
  1376. <size>0x43d</size>
  1377. <input_file_ref idref="fl-9"/>
  1378. </object_component>
  1379. <object_component id="oc-a8">
  1380. <name>.debug_info</name>
  1381. <load_address>0x2ac8f</load_address>
  1382. <run_address>0x2ac8f</run_address>
  1383. <size>0x1dad</size>
  1384. <input_file_ref idref="fl-a"/>
  1385. </object_component>
  1386. <object_component id="oc-b3">
  1387. <name>.debug_info</name>
  1388. <load_address>0x2ca3c</load_address>
  1389. <run_address>0x2ca3c</run_address>
  1390. <size>0x1d4</size>
  1391. <input_file_ref idref="fl-b"/>
  1392. </object_component>
  1393. <object_component id="oc-b6">
  1394. <name>.debug_info</name>
  1395. <load_address>0x2cc10</load_address>
  1396. <run_address>0x2cc10</run_address>
  1397. <size>0x5a09</size>
  1398. <input_file_ref idref="fl-c"/>
  1399. </object_component>
  1400. <object_component id="oc-bb">
  1401. <name>.debug_info</name>
  1402. <load_address>0x32619</load_address>
  1403. <run_address>0x32619</run_address>
  1404. <size>0x614</size>
  1405. <input_file_ref idref="fl-d"/>
  1406. </object_component>
  1407. <object_component id="oc-c0">
  1408. <name>.debug_info</name>
  1409. <load_address>0x32c2d</load_address>
  1410. <run_address>0x32c2d</run_address>
  1411. <size>0x41c</size>
  1412. <input_file_ref idref="fl-e"/>
  1413. </object_component>
  1414. <object_component id="oc-c5">
  1415. <name>.debug_info</name>
  1416. <load_address>0x33049</load_address>
  1417. <run_address>0x33049</run_address>
  1418. <size>0x48b</size>
  1419. <input_file_ref idref="fl-f"/>
  1420. </object_component>
  1421. <object_component id="oc-d1">
  1422. <name>.debug_info</name>
  1423. <load_address>0x334d4</load_address>
  1424. <run_address>0x334d4</run_address>
  1425. <size>0x173</size>
  1426. <input_file_ref idref="fl-1a"/>
  1427. </object_component>
  1428. <object_component id="oc-d6">
  1429. <name>.debug_info</name>
  1430. <load_address>0x33647</load_address>
  1431. <run_address>0x33647</run_address>
  1432. <size>0x114</size>
  1433. <input_file_ref idref="fl-1b"/>
  1434. </object_component>
  1435. <object_component id="oc-db">
  1436. <name>.debug_info</name>
  1437. <load_address>0x3375b</load_address>
  1438. <run_address>0x3375b</run_address>
  1439. <size>0x114</size>
  1440. <input_file_ref idref="fl-1c"/>
  1441. </object_component>
  1442. <object_component id="oc-e0">
  1443. <name>.debug_info</name>
  1444. <load_address>0x3386f</load_address>
  1445. <run_address>0x3386f</run_address>
  1446. <size>0x114</size>
  1447. <input_file_ref idref="fl-1d"/>
  1448. </object_component>
  1449. <object_component id="oc-e5">
  1450. <name>.debug_info</name>
  1451. <load_address>0x33983</load_address>
  1452. <run_address>0x33983</run_address>
  1453. <size>0x114</size>
  1454. <input_file_ref idref="fl-1e"/>
  1455. </object_component>
  1456. <object_component id="oc-ea">
  1457. <name>.debug_info</name>
  1458. <load_address>0x33a97</load_address>
  1459. <run_address>0x33a97</run_address>
  1460. <size>0x120</size>
  1461. <input_file_ref idref="fl-1f"/>
  1462. </object_component>
  1463. <object_component id="oc-ef">
  1464. <name>.debug_info</name>
  1465. <load_address>0x33bb7</load_address>
  1466. <run_address>0x33bb7</run_address>
  1467. <size>0x11e</size>
  1468. <input_file_ref idref="fl-20"/>
  1469. </object_component>
  1470. <object_component id="oc-f4">
  1471. <name>.debug_info</name>
  1472. <load_address>0x33cd5</load_address>
  1473. <run_address>0x33cd5</run_address>
  1474. <size>0x1a5</size>
  1475. <input_file_ref idref="fl-21"/>
  1476. </object_component>
  1477. <object_component id="oc-f9">
  1478. <name>.debug_info</name>
  1479. <load_address>0x33e7a</load_address>
  1480. <run_address>0x33e7a</run_address>
  1481. <size>0x117</size>
  1482. <input_file_ref idref="fl-22"/>
  1483. </object_component>
  1484. <object_component id="oc-fd">
  1485. <name>.debug_info</name>
  1486. <load_address>0x33f91</load_address>
  1487. <run_address>0x33f91</run_address>
  1488. <size>0x4fa</size>
  1489. <input_file_ref idref="fl-23"/>
  1490. </object_component>
  1491. <object_component id="oc-102">
  1492. <name>.debug_info</name>
  1493. <load_address>0x3448b</load_address>
  1494. <run_address>0x3448b</run_address>
  1495. <size>0x3d3</size>
  1496. <input_file_ref idref="fl-24"/>
  1497. </object_component>
  1498. <object_component id="oc-107">
  1499. <name>.debug_info</name>
  1500. <load_address>0x3485e</load_address>
  1501. <run_address>0x3485e</run_address>
  1502. <size>0x346</size>
  1503. <input_file_ref idref="fl-25"/>
  1504. </object_component>
  1505. <object_component id="oc-10c">
  1506. <name>.debug_info</name>
  1507. <load_address>0x34ba4</load_address>
  1508. <run_address>0x34ba4</run_address>
  1509. <size>0x343</size>
  1510. <input_file_ref idref="fl-26"/>
  1511. </object_component>
  1512. <object_component id="oc-111">
  1513. <name>.debug_info</name>
  1514. <load_address>0x34ee7</load_address>
  1515. <run_address>0x34ee7</run_address>
  1516. <size>0x4dd</size>
  1517. <input_file_ref idref="fl-27"/>
  1518. </object_component>
  1519. <object_component id="oc-118">
  1520. <name>.debug_info</name>
  1521. <load_address>0x353c4</load_address>
  1522. <run_address>0x353c4</run_address>
  1523. <size>0x465</size>
  1524. <input_file_ref idref="fl-28"/>
  1525. </object_component>
  1526. <object_component id="oc-11d">
  1527. <name>.debug_info</name>
  1528. <load_address>0x35829</load_address>
  1529. <run_address>0x35829</run_address>
  1530. <size>0x3ee</size>
  1531. <input_file_ref idref="fl-29"/>
  1532. </object_component>
  1533. <object_component id="oc-19f">
  1534. <name>.debug_info</name>
  1535. <load_address>0x35c17</load_address>
  1536. <run_address>0x35c17</run_address>
  1537. <size>0xa8</size>
  1538. </object_component>
  1539. <object_component id="oc-4d">
  1540. <name>.debug_abbrev</name>
  1541. <load_address>0x0</load_address>
  1542. <run_address>0x0</run_address>
  1543. <size>0x2f</size>
  1544. <input_file_ref idref="fl-2"/>
  1545. </object_component>
  1546. <object_component id="oc-53">
  1547. <name>.debug_abbrev</name>
  1548. <load_address>0x2f</load_address>
  1549. <run_address>0x2f</run_address>
  1550. <size>0x10b</size>
  1551. <input_file_ref idref="fl-3"/>
  1552. </object_component>
  1553. <object_component id="oc-86">
  1554. <name>.debug_abbrev</name>
  1555. <load_address>0x13a</load_address>
  1556. <run_address>0x13a</run_address>
  1557. <size>0xb7</size>
  1558. <input_file_ref idref="fl-4"/>
  1559. </object_component>
  1560. <object_component id="oc-8a">
  1561. <name>.debug_abbrev</name>
  1562. <load_address>0x1f1</load_address>
  1563. <run_address>0x1f1</run_address>
  1564. <size>0x2f</size>
  1565. <input_file_ref idref="fl-5"/>
  1566. </object_component>
  1567. <object_component id="oc-90">
  1568. <name>.debug_abbrev</name>
  1569. <load_address>0x220</load_address>
  1570. <run_address>0x220</run_address>
  1571. <size>0x17f</size>
  1572. <input_file_ref idref="fl-6"/>
  1573. </object_component>
  1574. <object_component id="oc-99">
  1575. <name>.debug_abbrev</name>
  1576. <load_address>0x39f</load_address>
  1577. <run_address>0x39f</run_address>
  1578. <size>0x21d</size>
  1579. <input_file_ref idref="fl-7"/>
  1580. </object_component>
  1581. <object_component id="oc-a1">
  1582. <name>.debug_abbrev</name>
  1583. <load_address>0x5bc</load_address>
  1584. <run_address>0x5bc</run_address>
  1585. <size>0x1f0</size>
  1586. <input_file_ref idref="fl-8"/>
  1587. </object_component>
  1588. <object_component id="oc-a6">
  1589. <name>.debug_abbrev</name>
  1590. <load_address>0x7ac</load_address>
  1591. <run_address>0x7ac</run_address>
  1592. <size>0xa8</size>
  1593. <input_file_ref idref="fl-9"/>
  1594. </object_component>
  1595. <object_component id="oc-ae">
  1596. <name>.debug_abbrev</name>
  1597. <load_address>0x854</load_address>
  1598. <run_address>0x854</run_address>
  1599. <size>0x161</size>
  1600. <input_file_ref idref="fl-a"/>
  1601. </object_component>
  1602. <object_component id="oc-b4">
  1603. <name>.debug_abbrev</name>
  1604. <load_address>0x9b5</load_address>
  1605. <run_address>0x9b5</run_address>
  1606. <size>0x21</size>
  1607. <input_file_ref idref="fl-b"/>
  1608. </object_component>
  1609. <object_component id="oc-b9">
  1610. <name>.debug_abbrev</name>
  1611. <load_address>0x9d6</load_address>
  1612. <run_address>0x9d6</run_address>
  1613. <size>0x103</size>
  1614. <input_file_ref idref="fl-c"/>
  1615. </object_component>
  1616. <object_component id="oc-be">
  1617. <name>.debug_abbrev</name>
  1618. <load_address>0xad9</load_address>
  1619. <run_address>0xad9</run_address>
  1620. <size>0xac</size>
  1621. <input_file_ref idref="fl-d"/>
  1622. </object_component>
  1623. <object_component id="oc-c3">
  1624. <name>.debug_abbrev</name>
  1625. <load_address>0xb85</load_address>
  1626. <run_address>0xb85</run_address>
  1627. <size>0xac</size>
  1628. <input_file_ref idref="fl-e"/>
  1629. </object_component>
  1630. <object_component id="oc-ca">
  1631. <name>.debug_abbrev</name>
  1632. <load_address>0xc31</load_address>
  1633. <run_address>0xc31</run_address>
  1634. <size>0xf7</size>
  1635. <input_file_ref idref="fl-f"/>
  1636. </object_component>
  1637. <object_component id="oc-d3">
  1638. <name>.debug_abbrev</name>
  1639. <load_address>0xd28</load_address>
  1640. <run_address>0xd28</run_address>
  1641. <size>0x46</size>
  1642. <input_file_ref idref="fl-1a"/>
  1643. </object_component>
  1644. <object_component id="oc-d8">
  1645. <name>.debug_abbrev</name>
  1646. <load_address>0xd6e</load_address>
  1647. <run_address>0xd6e</run_address>
  1648. <size>0x38</size>
  1649. <input_file_ref idref="fl-1b"/>
  1650. </object_component>
  1651. <object_component id="oc-dd">
  1652. <name>.debug_abbrev</name>
  1653. <load_address>0xda6</load_address>
  1654. <run_address>0xda6</run_address>
  1655. <size>0x38</size>
  1656. <input_file_ref idref="fl-1c"/>
  1657. </object_component>
  1658. <object_component id="oc-e2">
  1659. <name>.debug_abbrev</name>
  1660. <load_address>0xdde</load_address>
  1661. <run_address>0xdde</run_address>
  1662. <size>0x38</size>
  1663. <input_file_ref idref="fl-1d"/>
  1664. </object_component>
  1665. <object_component id="oc-e7">
  1666. <name>.debug_abbrev</name>
  1667. <load_address>0xe16</load_address>
  1668. <run_address>0xe16</run_address>
  1669. <size>0x38</size>
  1670. <input_file_ref idref="fl-1e"/>
  1671. </object_component>
  1672. <object_component id="oc-ec">
  1673. <name>.debug_abbrev</name>
  1674. <load_address>0xe4e</load_address>
  1675. <run_address>0xe4e</run_address>
  1676. <size>0x38</size>
  1677. <input_file_ref idref="fl-1f"/>
  1678. </object_component>
  1679. <object_component id="oc-f1">
  1680. <name>.debug_abbrev</name>
  1681. <load_address>0xe86</load_address>
  1682. <run_address>0xe86</run_address>
  1683. <size>0x38</size>
  1684. <input_file_ref idref="fl-20"/>
  1685. </object_component>
  1686. <object_component id="oc-f6">
  1687. <name>.debug_abbrev</name>
  1688. <load_address>0xebe</load_address>
  1689. <run_address>0xebe</run_address>
  1690. <size>0x38</size>
  1691. <input_file_ref idref="fl-21"/>
  1692. </object_component>
  1693. <object_component id="oc-fb">
  1694. <name>.debug_abbrev</name>
  1695. <load_address>0xef6</load_address>
  1696. <run_address>0xef6</run_address>
  1697. <size>0x38</size>
  1698. <input_file_ref idref="fl-22"/>
  1699. </object_component>
  1700. <object_component id="oc-100">
  1701. <name>.debug_abbrev</name>
  1702. <load_address>0xf2e</load_address>
  1703. <run_address>0xf2e</run_address>
  1704. <size>0xe3</size>
  1705. <input_file_ref idref="fl-23"/>
  1706. </object_component>
  1707. <object_component id="oc-105">
  1708. <name>.debug_abbrev</name>
  1709. <load_address>0x1011</load_address>
  1710. <run_address>0x1011</run_address>
  1711. <size>0xa8</size>
  1712. <input_file_ref idref="fl-24"/>
  1713. </object_component>
  1714. <object_component id="oc-10a">
  1715. <name>.debug_abbrev</name>
  1716. <load_address>0x10b9</load_address>
  1717. <run_address>0x10b9</run_address>
  1718. <size>0x68</size>
  1719. <input_file_ref idref="fl-25"/>
  1720. </object_component>
  1721. <object_component id="oc-10f">
  1722. <name>.debug_abbrev</name>
  1723. <load_address>0x1121</load_address>
  1724. <run_address>0x1121</run_address>
  1725. <size>0x66</size>
  1726. <input_file_ref idref="fl-26"/>
  1727. </object_component>
  1728. <object_component id="oc-116">
  1729. <name>.debug_abbrev</name>
  1730. <load_address>0x1187</load_address>
  1731. <run_address>0x1187</run_address>
  1732. <size>0x130</size>
  1733. <input_file_ref idref="fl-27"/>
  1734. </object_component>
  1735. <object_component id="oc-11b">
  1736. <name>.debug_abbrev</name>
  1737. <load_address>0x12b7</load_address>
  1738. <run_address>0x12b7</run_address>
  1739. <size>0xb2</size>
  1740. <input_file_ref idref="fl-28"/>
  1741. </object_component>
  1742. <object_component id="oc-120">
  1743. <name>.debug_abbrev</name>
  1744. <load_address>0x1369</load_address>
  1745. <run_address>0x1369</run_address>
  1746. <size>0xee</size>
  1747. <input_file_ref idref="fl-29"/>
  1748. </object_component>
  1749. <object_component id="oc-1a0">
  1750. <name>.debug_abbrev</name>
  1751. <load_address>0x1457</load_address>
  1752. <run_address>0x1457</run_address>
  1753. <size>0xf</size>
  1754. </object_component>
  1755. <object_component id="oc-4e">
  1756. <name>.debug_aranges</name>
  1757. <load_address>0x0</load_address>
  1758. <run_address>0x0</run_address>
  1759. <size>0x20</size>
  1760. <input_file_ref idref="fl-2"/>
  1761. </object_component>
  1762. <object_component id="oc-54">
  1763. <name>.debug_aranges</name>
  1764. <load_address>0x20</load_address>
  1765. <run_address>0x20</run_address>
  1766. <size>0x28</size>
  1767. <input_file_ref idref="fl-3"/>
  1768. </object_component>
  1769. <object_component id="oc-8b">
  1770. <name>.debug_aranges</name>
  1771. <load_address>0x48</load_address>
  1772. <run_address>0x48</run_address>
  1773. <size>0x20</size>
  1774. <input_file_ref idref="fl-5"/>
  1775. </object_component>
  1776. <object_component id="oc-91">
  1777. <name>.debug_aranges</name>
  1778. <load_address>0x68</load_address>
  1779. <run_address>0x68</run_address>
  1780. <size>0x58</size>
  1781. <input_file_ref idref="fl-6"/>
  1782. </object_component>
  1783. <object_component id="oc-9a">
  1784. <name>.debug_aranges</name>
  1785. <load_address>0xc0</load_address>
  1786. <run_address>0xc0</run_address>
  1787. <size>0x108</size>
  1788. <input_file_ref idref="fl-7"/>
  1789. </object_component>
  1790. <object_component id="oc-a2">
  1791. <name>.debug_aranges</name>
  1792. <load_address>0x1c8</load_address>
  1793. <run_address>0x1c8</run_address>
  1794. <size>0x60</size>
  1795. <input_file_ref idref="fl-8"/>
  1796. </object_component>
  1797. <object_component id="oc-a7">
  1798. <name>.debug_aranges</name>
  1799. <load_address>0x228</load_address>
  1800. <run_address>0x228</run_address>
  1801. <size>0x20</size>
  1802. <input_file_ref idref="fl-9"/>
  1803. </object_component>
  1804. <object_component id="oc-af">
  1805. <name>.debug_aranges</name>
  1806. <load_address>0x248</load_address>
  1807. <run_address>0x248</run_address>
  1808. <size>0x58</size>
  1809. <input_file_ref idref="fl-a"/>
  1810. </object_component>
  1811. <object_component id="oc-b5">
  1812. <name>.debug_aranges</name>
  1813. <load_address>0x2a0</load_address>
  1814. <run_address>0x2a0</run_address>
  1815. <size>0x28</size>
  1816. <input_file_ref idref="fl-b"/>
  1817. </object_component>
  1818. <object_component id="oc-ba">
  1819. <name>.debug_aranges</name>
  1820. <load_address>0x2c8</load_address>
  1821. <run_address>0x2c8</run_address>
  1822. <size>0x38</size>
  1823. <input_file_ref idref="fl-c"/>
  1824. </object_component>
  1825. <object_component id="oc-bf">
  1826. <name>.debug_aranges</name>
  1827. <load_address>0x300</load_address>
  1828. <run_address>0x300</run_address>
  1829. <size>0x30</size>
  1830. <input_file_ref idref="fl-d"/>
  1831. </object_component>
  1832. <object_component id="oc-c4">
  1833. <name>.debug_aranges</name>
  1834. <load_address>0x330</load_address>
  1835. <run_address>0x330</run_address>
  1836. <size>0x18</size>
  1837. <input_file_ref idref="fl-e"/>
  1838. </object_component>
  1839. <object_component id="oc-cb">
  1840. <name>.debug_aranges</name>
  1841. <load_address>0x348</load_address>
  1842. <run_address>0x348</run_address>
  1843. <size>0x18</size>
  1844. <input_file_ref idref="fl-f"/>
  1845. </object_component>
  1846. <object_component id="oc-d4">
  1847. <name>.debug_aranges</name>
  1848. <load_address>0x360</load_address>
  1849. <run_address>0x360</run_address>
  1850. <size>0x20</size>
  1851. <input_file_ref idref="fl-1a"/>
  1852. </object_component>
  1853. <object_component id="oc-d9">
  1854. <name>.debug_aranges</name>
  1855. <load_address>0x380</load_address>
  1856. <run_address>0x380</run_address>
  1857. <size>0x20</size>
  1858. <input_file_ref idref="fl-1b"/>
  1859. </object_component>
  1860. <object_component id="oc-de">
  1861. <name>.debug_aranges</name>
  1862. <load_address>0x3a0</load_address>
  1863. <run_address>0x3a0</run_address>
  1864. <size>0x20</size>
  1865. <input_file_ref idref="fl-1c"/>
  1866. </object_component>
  1867. <object_component id="oc-e3">
  1868. <name>.debug_aranges</name>
  1869. <load_address>0x3c0</load_address>
  1870. <run_address>0x3c0</run_address>
  1871. <size>0x20</size>
  1872. <input_file_ref idref="fl-1d"/>
  1873. </object_component>
  1874. <object_component id="oc-e8">
  1875. <name>.debug_aranges</name>
  1876. <load_address>0x3e0</load_address>
  1877. <run_address>0x3e0</run_address>
  1878. <size>0x20</size>
  1879. <input_file_ref idref="fl-1e"/>
  1880. </object_component>
  1881. <object_component id="oc-ed">
  1882. <name>.debug_aranges</name>
  1883. <load_address>0x400</load_address>
  1884. <run_address>0x400</run_address>
  1885. <size>0x20</size>
  1886. <input_file_ref idref="fl-1f"/>
  1887. </object_component>
  1888. <object_component id="oc-f2">
  1889. <name>.debug_aranges</name>
  1890. <load_address>0x420</load_address>
  1891. <run_address>0x420</run_address>
  1892. <size>0x20</size>
  1893. <input_file_ref idref="fl-20"/>
  1894. </object_component>
  1895. <object_component id="oc-f7">
  1896. <name>.debug_aranges</name>
  1897. <load_address>0x440</load_address>
  1898. <run_address>0x440</run_address>
  1899. <size>0x38</size>
  1900. <input_file_ref idref="fl-21"/>
  1901. </object_component>
  1902. <object_component id="oc-fc">
  1903. <name>.debug_aranges</name>
  1904. <load_address>0x478</load_address>
  1905. <run_address>0x478</run_address>
  1906. <size>0x20</size>
  1907. <input_file_ref idref="fl-22"/>
  1908. </object_component>
  1909. <object_component id="oc-101">
  1910. <name>.debug_aranges</name>
  1911. <load_address>0x498</load_address>
  1912. <run_address>0x498</run_address>
  1913. <size>0x20</size>
  1914. <input_file_ref idref="fl-23"/>
  1915. </object_component>
  1916. <object_component id="oc-106">
  1917. <name>.debug_aranges</name>
  1918. <load_address>0x4b8</load_address>
  1919. <run_address>0x4b8</run_address>
  1920. <size>0x20</size>
  1921. <input_file_ref idref="fl-24"/>
  1922. </object_component>
  1923. <object_component id="oc-10b">
  1924. <name>.debug_aranges</name>
  1925. <load_address>0x4d8</load_address>
  1926. <run_address>0x4d8</run_address>
  1927. <size>0x20</size>
  1928. <input_file_ref idref="fl-25"/>
  1929. </object_component>
  1930. <object_component id="oc-110">
  1931. <name>.debug_aranges</name>
  1932. <load_address>0x4f8</load_address>
  1933. <run_address>0x4f8</run_address>
  1934. <size>0x20</size>
  1935. <input_file_ref idref="fl-26"/>
  1936. </object_component>
  1937. <object_component id="oc-117">
  1938. <name>.debug_aranges</name>
  1939. <load_address>0x518</load_address>
  1940. <run_address>0x518</run_address>
  1941. <size>0x28</size>
  1942. <input_file_ref idref="fl-27"/>
  1943. </object_component>
  1944. <object_component id="oc-11c">
  1945. <name>.debug_aranges</name>
  1946. <load_address>0x540</load_address>
  1947. <run_address>0x540</run_address>
  1948. <size>0x30</size>
  1949. <input_file_ref idref="fl-28"/>
  1950. </object_component>
  1951. <object_component id="oc-121">
  1952. <name>.debug_aranges</name>
  1953. <load_address>0x570</load_address>
  1954. <run_address>0x570</run_address>
  1955. <size>0x20</size>
  1956. <input_file_ref idref="fl-29"/>
  1957. </object_component>
  1958. <object_component id="oc-51">
  1959. <name>.debug_frame</name>
  1960. <load_address>0x0</load_address>
  1961. <run_address>0x0</run_address>
  1962. <size>0x54</size>
  1963. <input_file_ref idref="fl-3"/>
  1964. </object_component>
  1965. <object_component id="oc-8e">
  1966. <name>.debug_frame</name>
  1967. <load_address>0x54</load_address>
  1968. <run_address>0x54</run_address>
  1969. <size>0xec</size>
  1970. <input_file_ref idref="fl-6"/>
  1971. </object_component>
  1972. <object_component id="oc-97">
  1973. <name>.debug_frame</name>
  1974. <load_address>0x140</load_address>
  1975. <run_address>0x140</run_address>
  1976. <size>0x3a8</size>
  1977. <input_file_ref idref="fl-7"/>
  1978. </object_component>
  1979. <object_component id="oc-9f">
  1980. <name>.debug_frame</name>
  1981. <load_address>0x4e8</load_address>
  1982. <run_address>0x4e8</run_address>
  1983. <size>0x110</size>
  1984. <input_file_ref idref="fl-8"/>
  1985. </object_component>
  1986. <object_component id="oc-a4">
  1987. <name>.debug_frame</name>
  1988. <load_address>0x5f8</load_address>
  1989. <run_address>0x5f8</run_address>
  1990. <size>0x3c</size>
  1991. <input_file_ref idref="fl-9"/>
  1992. </object_component>
  1993. <object_component id="oc-ac">
  1994. <name>.debug_frame</name>
  1995. <load_address>0x634</load_address>
  1996. <run_address>0x634</run_address>
  1997. <size>0xe8</size>
  1998. <input_file_ref idref="fl-a"/>
  1999. </object_component>
  2000. <object_component id="oc-b7">
  2001. <name>.debug_frame</name>
  2002. <load_address>0x71c</load_address>
  2003. <run_address>0x71c</run_address>
  2004. <size>0x84</size>
  2005. <input_file_ref idref="fl-c"/>
  2006. </object_component>
  2007. <object_component id="oc-bc">
  2008. <name>.debug_frame</name>
  2009. <load_address>0x7a0</load_address>
  2010. <run_address>0x7a0</run_address>
  2011. <size>0x74</size>
  2012. <input_file_ref idref="fl-d"/>
  2013. </object_component>
  2014. <object_component id="oc-c1">
  2015. <name>.debug_frame</name>
  2016. <load_address>0x814</load_address>
  2017. <run_address>0x814</run_address>
  2018. <size>0x20</size>
  2019. <input_file_ref idref="fl-e"/>
  2020. </object_component>
  2021. <object_component id="oc-c8">
  2022. <name>.debug_frame</name>
  2023. <load_address>0x834</load_address>
  2024. <run_address>0x834</run_address>
  2025. <size>0x20</size>
  2026. <input_file_ref idref="fl-f"/>
  2027. </object_component>
  2028. <object_component id="oc-fe">
  2029. <name>.debug_frame</name>
  2030. <load_address>0x854</load_address>
  2031. <run_address>0x854</run_address>
  2032. <size>0x58</size>
  2033. <input_file_ref idref="fl-23"/>
  2034. </object_component>
  2035. <object_component id="oc-103">
  2036. <name>.debug_frame</name>
  2037. <load_address>0x8ac</load_address>
  2038. <run_address>0x8ac</run_address>
  2039. <size>0x38</size>
  2040. <input_file_ref idref="fl-24"/>
  2041. </object_component>
  2042. <object_component id="oc-108">
  2043. <name>.debug_frame</name>
  2044. <load_address>0x8e4</load_address>
  2045. <run_address>0x8e4</run_address>
  2046. <size>0x38</size>
  2047. <input_file_ref idref="fl-25"/>
  2048. </object_component>
  2049. <object_component id="oc-10d">
  2050. <name>.debug_frame</name>
  2051. <load_address>0x91c</load_address>
  2052. <run_address>0x91c</run_address>
  2053. <size>0x38</size>
  2054. <input_file_ref idref="fl-26"/>
  2055. </object_component>
  2056. <object_component id="oc-114">
  2057. <name>.debug_frame</name>
  2058. <load_address>0x954</load_address>
  2059. <run_address>0x954</run_address>
  2060. <size>0x58</size>
  2061. <input_file_ref idref="fl-27"/>
  2062. </object_component>
  2063. <object_component id="oc-119">
  2064. <name>.debug_frame</name>
  2065. <load_address>0x9ac</load_address>
  2066. <run_address>0x9ac</run_address>
  2067. <size>0x68</size>
  2068. <input_file_ref idref="fl-28"/>
  2069. </object_component>
  2070. <object_component id="oc-11e">
  2071. <name>.debug_frame</name>
  2072. <load_address>0xa14</load_address>
  2073. <run_address>0xa14</run_address>
  2074. <size>0x38</size>
  2075. <input_file_ref idref="fl-29"/>
  2076. </object_component>
  2077. </object_component_list>
  2078. <logical_group_list>
  2079. <logical_group id="lg-2" display="no" color="cyan">
  2080. <name>.cinit</name>
  2081. <load_address>0x3e9c04</load_address>
  2082. <run_address>0x3e9c04</run_address>
  2083. <size>0x33d</size>
  2084. <contents>
  2085. <object_component_ref idref="oc-93"/>
  2086. <object_component_ref idref="oc-a9"/>
  2087. <object_component_ref idref="oc-141"/>
  2088. <object_component_ref idref="oc-143"/>
  2089. <object_component_ref idref="oc-9c"/>
  2090. <object_component_ref idref="oc-137"/>
  2091. <object_component_ref idref="oc-133"/>
  2092. <object_component_ref idref="oc-13b"/>
  2093. <object_component_ref idref="oc-135"/>
  2094. <object_component_ref idref="oc-78"/>
  2095. <object_component_ref idref="oc-147"/>
  2096. <object_component_ref idref="oc-145"/>
  2097. <object_component_ref idref="oc-112"/>
  2098. <object_component_ref idref="oc-c6"/>
  2099. <object_component_ref idref="oc-13d"/>
  2100. <object_component_ref idref="oc-13f"/>
  2101. <object_component_ref idref="oc-14d"/>
  2102. <object_component_ref idref="oc-6e"/>
  2103. <object_component_ref idref="oc-80"/>
  2104. <object_component_ref idref="oc-12d"/>
  2105. <object_component_ref idref="oc-14a"/>
  2106. </contents>
  2107. </logical_group>
  2108. <logical_group id="lg-3" display="no" color="cyan">
  2109. <name>.pinit</name>
  2110. <run_address>0x0</run_address>
  2111. <size>0x0</size>
  2112. <contents>
  2113. </contents>
  2114. </logical_group>
  2115. <logical_group id="lg-4" display="no" color="cyan">
  2116. <name>.text</name>
  2117. <load_address>0x3e8000</load_address>
  2118. <run_address>0x3e8000</run_address>
  2119. <size>0x1c04</size>
  2120. <contents>
  2121. <object_component_ref idref="oc-12a"/>
  2122. <object_component_ref idref="oc-12f"/>
  2123. <object_component_ref idref="oc-12e"/>
  2124. <object_component_ref idref="oc-138"/>
  2125. <object_component_ref idref="oc-14b"/>
  2126. <object_component_ref idref="oc-96"/>
  2127. <object_component_ref idref="oc-148"/>
  2128. <object_component_ref idref="oc-d5"/>
  2129. <object_component_ref idref="oc-df"/>
  2130. <object_component_ref idref="oc-131"/>
  2131. <object_component_ref idref="oc-e4"/>
  2132. <object_component_ref idref="oc-48"/>
  2133. <object_component_ref idref="oc-49"/>
  2134. <object_component_ref idref="oc-139"/>
  2135. <object_component_ref idref="oc-f3"/>
  2136. <object_component_ref idref="oc-126"/>
  2137. <object_component_ref idref="oc-e9"/>
  2138. <object_component_ref idref="oc-123"/>
  2139. <object_component_ref idref="oc-da"/>
  2140. <object_component_ref idref="oc-12b"/>
  2141. <object_component_ref idref="oc-f8"/>
  2142. <object_component_ref idref="oc-ee"/>
  2143. <object_component_ref idref="oc-125"/>
  2144. <object_component_ref idref="oc-149"/>
  2145. <object_component_ref idref="oc-b0"/>
  2146. <object_component_ref idref="oc-8d"/>
  2147. <object_component_ref idref="oc-122"/>
  2148. <object_component_ref idref="oc-124"/>
  2149. </contents>
  2150. </logical_group>
  2151. <logical_group id="lg-5" display="no" color="cyan">
  2152. <name>codestart</name>
  2153. <load_address>0x3f7ff6</load_address>
  2154. <run_address>0x3f7ff6</run_address>
  2155. <size>0x2</size>
  2156. <contents>
  2157. <object_component_ref idref="oc-b1"/>
  2158. </contents>
  2159. </logical_group>
  2160. <logical_group id="lg-6" display="no" color="cyan">
  2161. <name>ramfuncs</name>
  2162. <load_address>0x3ec000</load_address>
  2163. <run_address>0x8000</run_address>
  2164. <size>0xb8</size>
  2165. <contents>
  2166. <object_component_ref idref="oc-95"/>
  2167. <object_component_ref idref="oc-130"/>
  2168. <object_component_ref idref="oc-87"/>
  2169. </contents>
  2170. </logical_group>
  2171. <logical_group id="lg-7" display="no" color="cyan">
  2172. <name>csmpasswds</name>
  2173. <run_address>0x0</run_address>
  2174. <size>0x0</size>
  2175. <contents>
  2176. </contents>
  2177. </logical_group>
  2178. <logical_group id="lg-8" display="no" color="cyan">
  2179. <name>csm_rsvd</name>
  2180. <run_address>0x0</run_address>
  2181. <size>0x0</size>
  2182. <contents>
  2183. </contents>
  2184. </logical_group>
  2185. <logical_group id="lg-9" display="no" color="cyan">
  2186. <name>.stack</name>
  2187. <run_address>0x50</run_address>
  2188. <size>0x380</size>
  2189. <contents>
  2190. <object_component_ref idref="oc-cf"/>
  2191. <object_component_ref idref="oc-19e"/>
  2192. </contents>
  2193. </logical_group>
  2194. <logical_group id="lg-a" display="no" color="cyan">
  2195. <name>.ebss</name>
  2196. <run_address>0x9640</run_address>
  2197. <size>0x250</size>
  2198. <contents>
  2199. <object_component_ref idref="oc-50"/>
  2200. <object_component_ref idref="oc-94"/>
  2201. <object_component_ref idref="oc-129"/>
  2202. <object_component_ref idref="oc-127"/>
  2203. <object_component_ref idref="oc-13c"/>
  2204. <object_component_ref idref="oc-13e"/>
  2205. <object_component_ref idref="oc-144"/>
  2206. <object_component_ref idref="oc-146"/>
  2207. <object_component_ref idref="oc-128"/>
  2208. <object_component_ref idref="oc-132"/>
  2209. <object_component_ref idref="oc-134"/>
  2210. <object_component_ref idref="oc-136"/>
  2211. <object_component_ref idref="oc-13a"/>
  2212. <object_component_ref idref="oc-140"/>
  2213. <object_component_ref idref="oc-142"/>
  2214. <object_component_ref idref="oc-9d"/>
  2215. <object_component_ref idref="oc-14c"/>
  2216. <object_component_ref idref="oc-aa"/>
  2217. <object_component_ref idref="oc-c7"/>
  2218. <object_component_ref idref="oc-113"/>
  2219. <object_component_ref idref="oc-12c"/>
  2220. <object_component_ref idref="oc-14e"/>
  2221. </contents>
  2222. </logical_group>
  2223. <logical_group id="lg-b" display="no" color="cyan">
  2224. <name>.esysmem</name>
  2225. <run_address>0x0</run_address>
  2226. <size>0x0</size>
  2227. <contents>
  2228. </contents>
  2229. </logical_group>
  2230. <logical_group id="lg-c" display="no" color="cyan">
  2231. <name>.econst</name>
  2232. <load_address>0x3e9fd0</load_address>
  2233. <run_address>0x3e9fd0</run_address>
  2234. <size>0x4</size>
  2235. <contents>
  2236. <object_component_ref idref="oc-ab"/>
  2237. </contents>
  2238. </logical_group>
  2239. <logical_group id="lg-d" display="no" color="cyan">
  2240. <name>.switch</name>
  2241. <run_address>0x0</run_address>
  2242. <size>0x0</size>
  2243. <contents>
  2244. </contents>
  2245. </logical_group>
  2246. <logical_group id="lg-e" display="no" color="cyan">
  2247. <name>IQmath</name>
  2248. <load_address>0x3e9f41</load_address>
  2249. <run_address>0x3e9f41</run_address>
  2250. <size>0x8e</size>
  2251. <contents>
  2252. <object_component_ref idref="oc-cc"/>
  2253. <object_component_ref idref="oc-cd"/>
  2254. </contents>
  2255. </logical_group>
  2256. <logical_group id="lg-f" display="no" color="cyan">
  2257. <name>IQmathTables</name>
  2258. <load_address>0x3fe000</load_address>
  2259. <run_address>0x3fe000</run_address>
  2260. <size>0xb50</size>
  2261. <contents>
  2262. <object_component_ref idref="oc-ce"/>
  2263. </contents>
  2264. </logical_group>
  2265. <logical_group id="lg-10" display="no" color="cyan">
  2266. <name>Cla1ToCpuMsgRAM</name>
  2267. <run_address>0x0</run_address>
  2268. <size>0x0</size>
  2269. <contents>
  2270. </contents>
  2271. </logical_group>
  2272. <logical_group id="lg-11" display="no" color="cyan">
  2273. <name>CpuToCla1MsgRAM</name>
  2274. <run_address>0x0</run_address>
  2275. <size>0x0</size>
  2276. <contents>
  2277. </contents>
  2278. </logical_group>
  2279. <logical_group id="lg-12" display="no" color="cyan">
  2280. <name>.reset</name>
  2281. <load_address>0x3fffc0</load_address>
  2282. <run_address>0x3fffc0</run_address>
  2283. <size>0x2</size>
  2284. <contents>
  2285. <object_component_ref idref="oc-d0"/>
  2286. </contents>
  2287. </logical_group>
  2288. <logical_group id="lg-13" display="no" color="cyan">
  2289. <name>vectors</name>
  2290. <run_address>0x3fffc2</run_address>
  2291. <size>0x0</size>
  2292. <contents>
  2293. </contents>
  2294. </logical_group>
  2295. <logical_group id="lg-14" display="no" color="cyan">
  2296. <name>MemoryFile</name>
  2297. <run_address>0x400</run_address>
  2298. <size>0x400</size>
  2299. <contents>
  2300. <object_component_ref idref="oc-9e"/>
  2301. </contents>
  2302. </logical_group>
  2303. <logical_group id="lg-15" display="no" color="cyan">
  2304. <name>Net_terminals</name>
  2305. <run_address>0x0</run_address>
  2306. <size>0x0</size>
  2307. <contents>
  2308. </contents>
  2309. </logical_group>
  2310. <logical_group id="lg-16" display="no" color="cyan">
  2311. <name>DLOG</name>
  2312. <run_address>0x9000</run_address>
  2313. <size>0x640</size>
  2314. <contents>
  2315. <object_component_ref idref="oc-4a"/>
  2316. </contents>
  2317. </logical_group>
  2318. <logical_group id="lg-18" display="no" color="cyan">
  2319. <name>PieVectTableFile</name>
  2320. <run_address>0xd00</run_address>
  2321. <size>0x100</size>
  2322. <contents>
  2323. <object_component_ref idref="oc-85"/>
  2324. </contents>
  2325. </logical_group>
  2326. <logical_group id="lg-1a" display="no" color="cyan">
  2327. <name>EmuKeyVar</name>
  2328. <run_address>0xd00</run_address>
  2329. <size>0x1</size>
  2330. <contents>
  2331. <object_component_ref idref="oc-57"/>
  2332. </contents>
  2333. </logical_group>
  2334. <logical_group id="lg-1b" display="no" color="cyan">
  2335. <name>EmuBModeVar</name>
  2336. <run_address>0xd01</run_address>
  2337. <size>0x1</size>
  2338. <contents>
  2339. <object_component_ref idref="oc-58"/>
  2340. </contents>
  2341. </logical_group>
  2342. <logical_group id="lg-1c" display="no" color="cyan">
  2343. <name>FlashCallbackVar</name>
  2344. <run_address>0xd02</run_address>
  2345. <size>0x2</size>
  2346. <contents>
  2347. <object_component_ref idref="oc-5a"/>
  2348. </contents>
  2349. </logical_group>
  2350. <logical_group id="lg-1d" display="no" color="cyan">
  2351. <name>FlashScalingVar</name>
  2352. <run_address>0xd04</run_address>
  2353. <size>0x2</size>
  2354. <contents>
  2355. <object_component_ref idref="oc-59"/>
  2356. </contents>
  2357. </logical_group>
  2358. <logical_group id="lg-19" display="no" color="cyan">
  2359. <name>GROUP_2</name>
  2360. <run_address>0xd00</run_address>
  2361. <size>0x6</size>
  2362. <contents>
  2363. <logical_group_ref idref="lg-1a"/>
  2364. <logical_group_ref idref="lg-1b"/>
  2365. <logical_group_ref idref="lg-1c"/>
  2366. <logical_group_ref idref="lg-1d"/>
  2367. </contents>
  2368. </logical_group>
  2369. <overlay id="lg-17" display="no" color="cyan">
  2370. <name>UNION_1</name>
  2371. <run_address>0xd00</run_address>
  2372. <size>0x100</size>
  2373. <contents>
  2374. <logical_group_ref idref="lg-18"/>
  2375. <logical_group_ref idref="lg-19"/>
  2376. </contents>
  2377. </overlay>
  2378. <logical_group id="lg-1e" display="no" color="cyan">
  2379. <name>DevEmuRegsFile</name>
  2380. <run_address>0x880</run_address>
  2381. <size>0x4</size>
  2382. <contents>
  2383. <object_component_ref idref="oc-5b"/>
  2384. </contents>
  2385. </logical_group>
  2386. <logical_group id="lg-1f" display="no" color="cyan">
  2387. <name>SysPwrCtrlRegsFile</name>
  2388. <run_address>0x0</run_address>
  2389. <size>0x0</size>
  2390. <contents>
  2391. </contents>
  2392. </logical_group>
  2393. <logical_group id="lg-20" display="no" color="cyan">
  2394. <name>FlashRegsFile</name>
  2395. <run_address>0xa80</run_address>
  2396. <size>0x8</size>
  2397. <contents>
  2398. <object_component_ref idref="oc-60"/>
  2399. </contents>
  2400. </logical_group>
  2401. <logical_group id="lg-21" display="no" color="cyan">
  2402. <name>CsmRegsFile</name>
  2403. <run_address>0xae0</run_address>
  2404. <size>0x10</size>
  2405. <contents>
  2406. <object_component_ref idref="oc-62"/>
  2407. </contents>
  2408. </logical_group>
  2409. <logical_group id="lg-22" display="no" color="cyan">
  2410. <name>AdcResultFile</name>
  2411. <run_address>0xb00</run_address>
  2412. <size>0x20</size>
  2413. <contents>
  2414. <object_component_ref idref="oc-6c"/>
  2415. </contents>
  2416. </logical_group>
  2417. <logical_group id="lg-23" display="no" color="cyan">
  2418. <name>CpuTimer0RegsFile</name>
  2419. <run_address>0xc00</run_address>
  2420. <size>0x8</size>
  2421. <contents>
  2422. <object_component_ref idref="oc-5c"/>
  2423. </contents>
  2424. </logical_group>
  2425. <logical_group id="lg-24" display="no" color="cyan">
  2426. <name>CpuTimer1RegsFile</name>
  2427. <run_address>0xc08</run_address>
  2428. <size>0x8</size>
  2429. <contents>
  2430. <object_component_ref idref="oc-5d"/>
  2431. </contents>
  2432. </logical_group>
  2433. <logical_group id="lg-25" display="no" color="cyan">
  2434. <name>CpuTimer2RegsFile</name>
  2435. <run_address>0xc10</run_address>
  2436. <size>0x8</size>
  2437. <contents>
  2438. <object_component_ref idref="oc-5e"/>
  2439. </contents>
  2440. </logical_group>
  2441. <logical_group id="lg-26" display="no" color="cyan">
  2442. <name>PieCtrlRegsFile</name>
  2443. <run_address>0xce0</run_address>
  2444. <size>0x1a</size>
  2445. <contents>
  2446. <object_component_ref idref="oc-6b"/>
  2447. </contents>
  2448. </logical_group>
  2449. <logical_group id="lg-27" display="no" color="cyan">
  2450. <name>Cla1RegsFile</name>
  2451. <run_address>0x1400</run_address>
  2452. <size>0x40</size>
  2453. <contents>
  2454. <object_component_ref idref="oc-76"/>
  2455. </contents>
  2456. </logical_group>
  2457. <logical_group id="lg-28" display="no" color="cyan">
  2458. <name>ECanaRegsFile</name>
  2459. <run_address>0x6000</run_address>
  2460. <size>0x34</size>
  2461. <contents>
  2462. <object_component_ref idref="oc-72"/>
  2463. </contents>
  2464. </logical_group>
  2465. <logical_group id="lg-29" display="no" color="cyan">
  2466. <name>ECanaLAMRegsFile</name>
  2467. <run_address>0x6040</run_address>
  2468. <size>0x40</size>
  2469. <contents>
  2470. <object_component_ref idref="oc-73"/>
  2471. </contents>
  2472. </logical_group>
  2473. <logical_group id="lg-2a" display="no" color="cyan">
  2474. <name>ECanaMboxesFile</name>
  2475. <run_address>0x6100</run_address>
  2476. <size>0x100</size>
  2477. <contents>
  2478. <object_component_ref idref="oc-84"/>
  2479. </contents>
  2480. </logical_group>
  2481. <logical_group id="lg-2b" display="no" color="cyan">
  2482. <name>ECanaMOTSRegsFile</name>
  2483. <run_address>0x6080</run_address>
  2484. <size>0x40</size>
  2485. <contents>
  2486. <object_component_ref idref="oc-74"/>
  2487. </contents>
  2488. </logical_group>
  2489. <logical_group id="lg-2c" display="no" color="cyan">
  2490. <name>ECanaMOTORegsFile</name>
  2491. <run_address>0x60c0</run_address>
  2492. <size>0x40</size>
  2493. <contents>
  2494. <object_component_ref idref="oc-75"/>
  2495. </contents>
  2496. </logical_group>
  2497. <logical_group id="lg-2d" display="no" color="cyan">
  2498. <name>ECap1RegsFile</name>
  2499. <run_address>0x6a00</run_address>
  2500. <size>0x20</size>
  2501. <contents>
  2502. <object_component_ref idref="oc-6d"/>
  2503. </contents>
  2504. </logical_group>
  2505. <logical_group id="lg-2e" display="no" color="cyan">
  2506. <name>EQep1RegsFile</name>
  2507. <run_address>0x6b00</run_address>
  2508. <size>0x40</size>
  2509. <contents>
  2510. <object_component_ref idref="oc-7f"/>
  2511. </contents>
  2512. </logical_group>
  2513. <logical_group id="lg-2f" display="no" color="cyan">
  2514. <name>LinaRegsFile</name>
  2515. <run_address>0x6c00</run_address>
  2516. <size>0x4a</size>
  2517. <contents>
  2518. <object_component_ref idref="oc-82"/>
  2519. </contents>
  2520. </logical_group>
  2521. <logical_group id="lg-30" display="no" color="cyan">
  2522. <name>GpioCtrlRegsFile</name>
  2523. <run_address>0x6f80</run_address>
  2524. <size>0x40</size>
  2525. <contents>
  2526. <object_component_ref idref="oc-81"/>
  2527. </contents>
  2528. </logical_group>
  2529. <logical_group id="lg-31" display="no" color="cyan">
  2530. <name>GpioDataRegsFile</name>
  2531. <run_address>0x6fc0</run_address>
  2532. <size>0x20</size>
  2533. <contents>
  2534. <object_component_ref idref="oc-6f"/>
  2535. </contents>
  2536. </logical_group>
  2537. <logical_group id="lg-32" display="no" color="cyan">
  2538. <name>GpioIntRegsFile</name>
  2539. <run_address>0x6fe0</run_address>
  2540. <size>0xc</size>
  2541. <contents>
  2542. <object_component_ref idref="oc-61"/>
  2543. </contents>
  2544. </logical_group>
  2545. <logical_group id="lg-33" display="no" color="cyan">
  2546. <name>SysCtrlRegsFile</name>
  2547. <run_address>0x7010</run_address>
  2548. <size>0x20</size>
  2549. <contents>
  2550. <object_component_ref idref="oc-70"/>
  2551. </contents>
  2552. </logical_group>
  2553. <logical_group id="lg-34" display="no" color="cyan">
  2554. <name>SpiaRegsFile</name>
  2555. <run_address>0x7040</run_address>
  2556. <size>0x10</size>
  2557. <contents>
  2558. <object_component_ref idref="oc-65"/>
  2559. </contents>
  2560. </logical_group>
  2561. <logical_group id="lg-35" display="no" color="cyan">
  2562. <name>SpibRegsFile</name>
  2563. <run_address>0x7740</run_address>
  2564. <size>0x10</size>
  2565. <contents>
  2566. <object_component_ref idref="oc-66"/>
  2567. </contents>
  2568. </logical_group>
  2569. <logical_group id="lg-36" display="no" color="cyan">
  2570. <name>SciaRegsFile</name>
  2571. <run_address>0x7050</run_address>
  2572. <size>0x10</size>
  2573. <contents>
  2574. <object_component_ref idref="oc-64"/>
  2575. </contents>
  2576. </logical_group>
  2577. <logical_group id="lg-37" display="no" color="cyan">
  2578. <name>NmiIntruptRegsFile</name>
  2579. <run_address>0x7060</run_address>
  2580. <size>0x10</size>
  2581. <contents>
  2582. <object_component_ref idref="oc-63"/>
  2583. </contents>
  2584. </logical_group>
  2585. <logical_group id="lg-38" display="no" color="cyan">
  2586. <name>XIntruptRegsFile</name>
  2587. <run_address>0x7070</run_address>
  2588. <size>0x10</size>
  2589. <contents>
  2590. <object_component_ref idref="oc-67"/>
  2591. </contents>
  2592. </logical_group>
  2593. <logical_group id="lg-39" display="no" color="cyan">
  2594. <name>AdcRegsFile</name>
  2595. <run_address>0x7100</run_address>
  2596. <size>0x50</size>
  2597. <contents>
  2598. <object_component_ref idref="oc-83"/>
  2599. </contents>
  2600. </logical_group>
  2601. <logical_group id="lg-3a" display="no" color="cyan">
  2602. <name>I2caRegsFile</name>
  2603. <run_address>0x7900</run_address>
  2604. <size>0x22</size>
  2605. <contents>
  2606. <object_component_ref idref="oc-71"/>
  2607. </contents>
  2608. </logical_group>
  2609. <logical_group id="lg-3b" display="no" color="cyan">
  2610. <name>Comp1RegsFile</name>
  2611. <run_address>0x6400</run_address>
  2612. <size>0x14</size>
  2613. <contents>
  2614. <object_component_ref idref="oc-68"/>
  2615. </contents>
  2616. </logical_group>
  2617. <logical_group id="lg-3c" display="no" color="cyan">
  2618. <name>Comp2RegsFile</name>
  2619. <run_address>0x6420</run_address>
  2620. <size>0x14</size>
  2621. <contents>
  2622. <object_component_ref idref="oc-69"/>
  2623. </contents>
  2624. </logical_group>
  2625. <logical_group id="lg-3d" display="no" color="cyan">
  2626. <name>Comp3RegsFile</name>
  2627. <run_address>0x6440</run_address>
  2628. <size>0x14</size>
  2629. <contents>
  2630. <object_component_ref idref="oc-6a"/>
  2631. </contents>
  2632. </logical_group>
  2633. <logical_group id="lg-3e" display="no" color="cyan">
  2634. <name>EPwm1RegsFile</name>
  2635. <run_address>0x6800</run_address>
  2636. <size>0x40</size>
  2637. <contents>
  2638. <object_component_ref idref="oc-77"/>
  2639. </contents>
  2640. </logical_group>
  2641. <logical_group id="lg-3f" display="no" color="cyan">
  2642. <name>EPwm2RegsFile</name>
  2643. <run_address>0x6840</run_address>
  2644. <size>0x40</size>
  2645. <contents>
  2646. <object_component_ref idref="oc-79"/>
  2647. </contents>
  2648. </logical_group>
  2649. <logical_group id="lg-40" display="no" color="cyan">
  2650. <name>EPwm3RegsFile</name>
  2651. <run_address>0x6880</run_address>
  2652. <size>0x40</size>
  2653. <contents>
  2654. <object_component_ref idref="oc-7a"/>
  2655. </contents>
  2656. </logical_group>
  2657. <logical_group id="lg-41" display="no" color="cyan">
  2658. <name>EPwm4RegsFile</name>
  2659. <run_address>0x68c0</run_address>
  2660. <size>0x40</size>
  2661. <contents>
  2662. <object_component_ref idref="oc-7b"/>
  2663. </contents>
  2664. </logical_group>
  2665. <logical_group id="lg-42" display="no" color="cyan">
  2666. <name>EPwm5RegsFile</name>
  2667. <run_address>0x6900</run_address>
  2668. <size>0x40</size>
  2669. <contents>
  2670. <object_component_ref idref="oc-7c"/>
  2671. </contents>
  2672. </logical_group>
  2673. <logical_group id="lg-43" display="no" color="cyan">
  2674. <name>EPwm6RegsFile</name>
  2675. <run_address>0x6940</run_address>
  2676. <size>0x40</size>
  2677. <contents>
  2678. <object_component_ref idref="oc-7d"/>
  2679. </contents>
  2680. </logical_group>
  2681. <logical_group id="lg-44" display="no" color="cyan">
  2682. <name>EPwm7RegsFile</name>
  2683. <run_address>0x6980</run_address>
  2684. <size>0x40</size>
  2685. <contents>
  2686. <object_component_ref idref="oc-7e"/>
  2687. </contents>
  2688. </logical_group>
  2689. <logical_group id="lg-45" display="no" color="cyan">
  2690. <name>CsmPwlFile</name>
  2691. <run_address>0x3f7ff8</run_address>
  2692. <size>0x8</size>
  2693. <contents>
  2694. <object_component_ref idref="oc-5f"/>
  2695. </contents>
  2696. </logical_group>
  2697. <logical_group id="lg-46" display="no" color="cyan">
  2698. <name>PartIdRegsFile</name>
  2699. <run_address>0x3d7e80</run_address>
  2700. <size>0x1</size>
  2701. <contents>
  2702. <object_component_ref idref="oc-56"/>
  2703. </contents>
  2704. </logical_group>
  2705. <logical_group id="lg-192" display="never" color="cyan">
  2706. <name>.debug_line</name>
  2707. <load_address>0x0</load_address>
  2708. <run_address>0x0</run_address>
  2709. <size>0x1b9d</size>
  2710. <contents>
  2711. <object_component_ref idref="oc-4b"/>
  2712. <object_component_ref idref="oc-52"/>
  2713. <object_component_ref idref="oc-88"/>
  2714. <object_component_ref idref="oc-8f"/>
  2715. <object_component_ref idref="oc-98"/>
  2716. <object_component_ref idref="oc-a0"/>
  2717. <object_component_ref idref="oc-a5"/>
  2718. <object_component_ref idref="oc-ad"/>
  2719. <object_component_ref idref="oc-b2"/>
  2720. <object_component_ref idref="oc-b8"/>
  2721. <object_component_ref idref="oc-bd"/>
  2722. <object_component_ref idref="oc-c2"/>
  2723. <object_component_ref idref="oc-c9"/>
  2724. <object_component_ref idref="oc-d2"/>
  2725. <object_component_ref idref="oc-d7"/>
  2726. <object_component_ref idref="oc-dc"/>
  2727. <object_component_ref idref="oc-e1"/>
  2728. <object_component_ref idref="oc-e6"/>
  2729. <object_component_ref idref="oc-eb"/>
  2730. <object_component_ref idref="oc-f0"/>
  2731. <object_component_ref idref="oc-f5"/>
  2732. <object_component_ref idref="oc-fa"/>
  2733. <object_component_ref idref="oc-ff"/>
  2734. <object_component_ref idref="oc-104"/>
  2735. <object_component_ref idref="oc-109"/>
  2736. <object_component_ref idref="oc-10e"/>
  2737. <object_component_ref idref="oc-115"/>
  2738. <object_component_ref idref="oc-11a"/>
  2739. <object_component_ref idref="oc-11f"/>
  2740. </contents>
  2741. </logical_group>
  2742. <logical_group id="lg-194" display="never" color="cyan">
  2743. <name>.debug_info</name>
  2744. <load_address>0x0</load_address>
  2745. <run_address>0x0</run_address>
  2746. <size>0x35cbf</size>
  2747. <contents>
  2748. <object_component_ref idref="oc-4c"/>
  2749. <object_component_ref idref="oc-4f"/>
  2750. <object_component_ref idref="oc-55"/>
  2751. <object_component_ref idref="oc-89"/>
  2752. <object_component_ref idref="oc-8c"/>
  2753. <object_component_ref idref="oc-92"/>
  2754. <object_component_ref idref="oc-9b"/>
  2755. <object_component_ref idref="oc-a3"/>
  2756. <object_component_ref idref="oc-a8"/>
  2757. <object_component_ref idref="oc-b3"/>
  2758. <object_component_ref idref="oc-b6"/>
  2759. <object_component_ref idref="oc-bb"/>
  2760. <object_component_ref idref="oc-c0"/>
  2761. <object_component_ref idref="oc-c5"/>
  2762. <object_component_ref idref="oc-d1"/>
  2763. <object_component_ref idref="oc-d6"/>
  2764. <object_component_ref idref="oc-db"/>
  2765. <object_component_ref idref="oc-e0"/>
  2766. <object_component_ref idref="oc-e5"/>
  2767. <object_component_ref idref="oc-ea"/>
  2768. <object_component_ref idref="oc-ef"/>
  2769. <object_component_ref idref="oc-f4"/>
  2770. <object_component_ref idref="oc-f9"/>
  2771. <object_component_ref idref="oc-fd"/>
  2772. <object_component_ref idref="oc-102"/>
  2773. <object_component_ref idref="oc-107"/>
  2774. <object_component_ref idref="oc-10c"/>
  2775. <object_component_ref idref="oc-111"/>
  2776. <object_component_ref idref="oc-118"/>
  2777. <object_component_ref idref="oc-11d"/>
  2778. <object_component_ref idref="oc-19f"/>
  2779. </contents>
  2780. </logical_group>
  2781. <logical_group id="lg-196" display="never" color="cyan">
  2782. <name>.debug_abbrev</name>
  2783. <load_address>0x0</load_address>
  2784. <run_address>0x0</run_address>
  2785. <size>0x1466</size>
  2786. <contents>
  2787. <object_component_ref idref="oc-4d"/>
  2788. <object_component_ref idref="oc-53"/>
  2789. <object_component_ref idref="oc-86"/>
  2790. <object_component_ref idref="oc-8a"/>
  2791. <object_component_ref idref="oc-90"/>
  2792. <object_component_ref idref="oc-99"/>
  2793. <object_component_ref idref="oc-a1"/>
  2794. <object_component_ref idref="oc-a6"/>
  2795. <object_component_ref idref="oc-ae"/>
  2796. <object_component_ref idref="oc-b4"/>
  2797. <object_component_ref idref="oc-b9"/>
  2798. <object_component_ref idref="oc-be"/>
  2799. <object_component_ref idref="oc-c3"/>
  2800. <object_component_ref idref="oc-ca"/>
  2801. <object_component_ref idref="oc-d3"/>
  2802. <object_component_ref idref="oc-d8"/>
  2803. <object_component_ref idref="oc-dd"/>
  2804. <object_component_ref idref="oc-e2"/>
  2805. <object_component_ref idref="oc-e7"/>
  2806. <object_component_ref idref="oc-ec"/>
  2807. <object_component_ref idref="oc-f1"/>
  2808. <object_component_ref idref="oc-f6"/>
  2809. <object_component_ref idref="oc-fb"/>
  2810. <object_component_ref idref="oc-100"/>
  2811. <object_component_ref idref="oc-105"/>
  2812. <object_component_ref idref="oc-10a"/>
  2813. <object_component_ref idref="oc-10f"/>
  2814. <object_component_ref idref="oc-116"/>
  2815. <object_component_ref idref="oc-11b"/>
  2816. <object_component_ref idref="oc-120"/>
  2817. <object_component_ref idref="oc-1a0"/>
  2818. </contents>
  2819. </logical_group>
  2820. <logical_group id="lg-198" display="never" color="cyan">
  2821. <name>.debug_aranges</name>
  2822. <load_address>0x0</load_address>
  2823. <run_address>0x0</run_address>
  2824. <size>0x590</size>
  2825. <contents>
  2826. <object_component_ref idref="oc-4e"/>
  2827. <object_component_ref idref="oc-54"/>
  2828. <object_component_ref idref="oc-8b"/>
  2829. <object_component_ref idref="oc-91"/>
  2830. <object_component_ref idref="oc-9a"/>
  2831. <object_component_ref idref="oc-a2"/>
  2832. <object_component_ref idref="oc-a7"/>
  2833. <object_component_ref idref="oc-af"/>
  2834. <object_component_ref idref="oc-b5"/>
  2835. <object_component_ref idref="oc-ba"/>
  2836. <object_component_ref idref="oc-bf"/>
  2837. <object_component_ref idref="oc-c4"/>
  2838. <object_component_ref idref="oc-cb"/>
  2839. <object_component_ref idref="oc-d4"/>
  2840. <object_component_ref idref="oc-d9"/>
  2841. <object_component_ref idref="oc-de"/>
  2842. <object_component_ref idref="oc-e3"/>
  2843. <object_component_ref idref="oc-e8"/>
  2844. <object_component_ref idref="oc-ed"/>
  2845. <object_component_ref idref="oc-f2"/>
  2846. <object_component_ref idref="oc-f7"/>
  2847. <object_component_ref idref="oc-fc"/>
  2848. <object_component_ref idref="oc-101"/>
  2849. <object_component_ref idref="oc-106"/>
  2850. <object_component_ref idref="oc-10b"/>
  2851. <object_component_ref idref="oc-110"/>
  2852. <object_component_ref idref="oc-117"/>
  2853. <object_component_ref idref="oc-11c"/>
  2854. <object_component_ref idref="oc-121"/>
  2855. </contents>
  2856. </logical_group>
  2857. <logical_group id="lg-19a" display="never" color="cyan">
  2858. <name>.debug_frame</name>
  2859. <load_address>0x0</load_address>
  2860. <run_address>0x0</run_address>
  2861. <size>0xa4c</size>
  2862. <contents>
  2863. <object_component_ref idref="oc-51"/>
  2864. <object_component_ref idref="oc-8e"/>
  2865. <object_component_ref idref="oc-97"/>
  2866. <object_component_ref idref="oc-9f"/>
  2867. <object_component_ref idref="oc-a4"/>
  2868. <object_component_ref idref="oc-ac"/>
  2869. <object_component_ref idref="oc-b7"/>
  2870. <object_component_ref idref="oc-bc"/>
  2871. <object_component_ref idref="oc-c1"/>
  2872. <object_component_ref idref="oc-c8"/>
  2873. <object_component_ref idref="oc-fe"/>
  2874. <object_component_ref idref="oc-103"/>
  2875. <object_component_ref idref="oc-108"/>
  2876. <object_component_ref idref="oc-10d"/>
  2877. <object_component_ref idref="oc-114"/>
  2878. <object_component_ref idref="oc-119"/>
  2879. <object_component_ref idref="oc-11e"/>
  2880. </contents>
  2881. </logical_group>
  2882. </logical_group_list>
  2883. <placement_map>
  2884. <memory_area display="yes" color="green">
  2885. <name>progRAM</name>
  2886. <page_id>0x0</page_id>
  2887. <origin>0x8000</origin>
  2888. <length>0x1000</length>
  2889. <used_space>0xb8</used_space>
  2890. <unused_space>0xf48</unused_space>
  2891. <attributes>RWIX</attributes>
  2892. <usage_details>
  2893. <allocated_space>
  2894. <start_address>0x8000</start_address>
  2895. <size>0xb8</size>
  2896. <logical_group_ref idref="lg-6"/>
  2897. </allocated_space>
  2898. <available_space>
  2899. <start_address>0x80b8</start_address>
  2900. <size>0xf48</size>
  2901. </available_space>
  2902. </usage_details>
  2903. </memory_area>
  2904. <memory_area display="yes" color="green">
  2905. <name>OTP</name>
  2906. <page_id>0x0</page_id>
  2907. <origin>0x3d7800</origin>
  2908. <length>0x400</length>
  2909. <used_space>0x0</used_space>
  2910. <unused_space>0x400</unused_space>
  2911. <attributes>RWIX</attributes>
  2912. <usage_details>
  2913. </usage_details>
  2914. </memory_area>
  2915. <memory_area display="yes" color="green">
  2916. <name>FLASHD</name>
  2917. <page_id>0x0</page_id>
  2918. <origin>0x3e8000</origin>
  2919. <length>0x4000</length>
  2920. <used_space>0x1fd3</used_space>
  2921. <unused_space>0x202d</unused_space>
  2922. <attributes>RWIX</attributes>
  2923. <usage_details>
  2924. <allocated_space>
  2925. <start_address>0x3e8000</start_address>
  2926. <size>0x1c04</size>
  2927. <logical_group_ref idref="lg-4"/>
  2928. </allocated_space>
  2929. <allocated_space>
  2930. <start_address>0x3e9c04</start_address>
  2931. <size>0x33d</size>
  2932. <logical_group_ref idref="lg-2"/>
  2933. </allocated_space>
  2934. <allocated_space>
  2935. <start_address>0x3e9f41</start_address>
  2936. <size>0x8e</size>
  2937. <logical_group_ref idref="lg-e"/>
  2938. </allocated_space>
  2939. <available_space>
  2940. <start_address>0x3e9fcf</start_address>
  2941. <size>0x1</size>
  2942. </available_space>
  2943. <allocated_space>
  2944. <start_address>0x3e9fd0</start_address>
  2945. <size>0x4</size>
  2946. <logical_group_ref idref="lg-c"/>
  2947. </allocated_space>
  2948. <available_space>
  2949. <start_address>0x3e9fd4</start_address>
  2950. <size>0x202c</size>
  2951. </available_space>
  2952. </usage_details>
  2953. </memory_area>
  2954. <memory_area display="yes" color="green">
  2955. <name>FLASHC</name>
  2956. <page_id>0x0</page_id>
  2957. <origin>0x3ec000</origin>
  2958. <length>0x4000</length>
  2959. <used_space>0xb8</used_space>
  2960. <unused_space>0x3f48</unused_space>
  2961. <attributes>RWIX</attributes>
  2962. <usage_details>
  2963. <allocated_space>
  2964. <start_address>0x3ec000</start_address>
  2965. <size>0xb8</size>
  2966. <logical_group_ref idref="lg-6"/>
  2967. </allocated_space>
  2968. <available_space>
  2969. <start_address>0x3ec0b8</start_address>
  2970. <size>0x3f48</size>
  2971. </available_space>
  2972. </usage_details>
  2973. </memory_area>
  2974. <memory_area display="yes" color="green">
  2975. <name>FLASHA</name>
  2976. <page_id>0x0</page_id>
  2977. <origin>0x3f4000</origin>
  2978. <length>0x3f80</length>
  2979. <used_space>0x0</used_space>
  2980. <unused_space>0x3f80</unused_space>
  2981. <attributes>RWIX</attributes>
  2982. <usage_details>
  2983. </usage_details>
  2984. </memory_area>
  2985. <memory_area display="yes" color="green">
  2986. <name>CSM_RSVD</name>
  2987. <page_id>0x0</page_id>
  2988. <origin>0x3f7f80</origin>
  2989. <length>0x76</length>
  2990. <used_space>0x0</used_space>
  2991. <unused_space>0x76</unused_space>
  2992. <attributes>RWIX</attributes>
  2993. <usage_details>
  2994. </usage_details>
  2995. </memory_area>
  2996. <memory_area display="no" color="green">
  2997. <name>BEGIN</name>
  2998. <page_id>0x0</page_id>
  2999. <origin>0x3f7ff6</origin>
  3000. <length>0x2</length>
  3001. <used_space>0x2</used_space>
  3002. <unused_space>0x0</unused_space>
  3003. <attributes>RWIX</attributes>
  3004. <usage_details>
  3005. <allocated_space>
  3006. <start_address>0x3f7ff6</start_address>
  3007. <size>0x2</size>
  3008. <logical_group_ref idref="lg-5"/>
  3009. </allocated_space>
  3010. </usage_details>
  3011. </memory_area>
  3012. <memory_area display="no" color="green">
  3013. <name>CSM_PWL</name>
  3014. <page_id>0x0</page_id>
  3015. <origin>0x3f7ff8</origin>
  3016. <length>0x8</length>
  3017. <used_space>0x0</used_space>
  3018. <unused_space>0x8</unused_space>
  3019. <attributes>RWIX</attributes>
  3020. <usage_details>
  3021. </usage_details>
  3022. </memory_area>
  3023. <memory_area display="yes" color="green">
  3024. <name>IQTABLES</name>
  3025. <page_id>0x0</page_id>
  3026. <origin>0x3fe000</origin>
  3027. <length>0xb50</length>
  3028. <used_space>0xb50</used_space>
  3029. <unused_space>0x0</unused_space>
  3030. <attributes>RWIX</attributes>
  3031. <usage_details>
  3032. <allocated_space>
  3033. <start_address>0x3fe000</start_address>
  3034. <size>0xb50</size>
  3035. <logical_group_ref idref="lg-f"/>
  3036. </allocated_space>
  3037. </usage_details>
  3038. </memory_area>
  3039. <memory_area display="yes" color="green">
  3040. <name>IQTABLES2</name>
  3041. <page_id>0x0</page_id>
  3042. <origin>0x3feb50</origin>
  3043. <length>0x8c</length>
  3044. <used_space>0x0</used_space>
  3045. <unused_space>0x8c</unused_space>
  3046. <attributes>RWIX</attributes>
  3047. <usage_details>
  3048. </usage_details>
  3049. </memory_area>
  3050. <memory_area display="yes" color="green">
  3051. <name>IQTABLES3</name>
  3052. <page_id>0x0</page_id>
  3053. <origin>0x3febdc</origin>
  3054. <length>0xaa</length>
  3055. <used_space>0x0</used_space>
  3056. <unused_space>0xaa</unused_space>
  3057. <attributes>RWIX</attributes>
  3058. <usage_details>
  3059. </usage_details>
  3060. </memory_area>
  3061. <memory_area display="yes" color="green">
  3062. <name>BOOTROM</name>
  3063. <page_id>0x0</page_id>
  3064. <origin>0x3ff27c</origin>
  3065. <length>0xd44</length>
  3066. <used_space>0x0</used_space>
  3067. <unused_space>0xd44</unused_space>
  3068. <attributes>RWIX</attributes>
  3069. <usage_details>
  3070. </usage_details>
  3071. </memory_area>
  3072. <memory_area display="no" color="green">
  3073. <name>RESET</name>
  3074. <page_id>0x0</page_id>
  3075. <origin>0x3fffc0</origin>
  3076. <length>0x2</length>
  3077. <used_space>0x0</used_space>
  3078. <unused_space>0x2</unused_space>
  3079. <attributes>RWIX</attributes>
  3080. <usage_details>
  3081. </usage_details>
  3082. </memory_area>
  3083. <memory_area display="no" color="green">
  3084. <name>VECTORS</name>
  3085. <page_id>0x0</page_id>
  3086. <origin>0x3fffc2</origin>
  3087. <length>0x3e</length>
  3088. <used_space>0x0</used_space>
  3089. <unused_space>0x3e</unused_space>
  3090. <attributes>RWIX</attributes>
  3091. <usage_details>
  3092. </usage_details>
  3093. </memory_area>
  3094. <memory_area display="no" color="green">
  3095. <name>BOOT_RSVD</name>
  3096. <page_id>0x1</page_id>
  3097. <origin>0x0</origin>
  3098. <length>0x50</length>
  3099. <used_space>0x0</used_space>
  3100. <unused_space>0x50</unused_space>
  3101. <attributes>RWIX</attributes>
  3102. <usage_details>
  3103. </usage_details>
  3104. </memory_area>
  3105. <memory_area display="yes" color="green">
  3106. <name>RAMM0</name>
  3107. <page_id>0x1</page_id>
  3108. <origin>0x50</origin>
  3109. <length>0x3b0</length>
  3110. <used_space>0x380</used_space>
  3111. <unused_space>0x30</unused_space>
  3112. <attributes>RWIX</attributes>
  3113. <usage_details>
  3114. <allocated_space>
  3115. <start_address>0x50</start_address>
  3116. <size>0x380</size>
  3117. <logical_group_ref idref="lg-9"/>
  3118. </allocated_space>
  3119. <available_space>
  3120. <start_address>0x3d0</start_address>
  3121. <size>0x30</size>
  3122. </available_space>
  3123. </usage_details>
  3124. </memory_area>
  3125. <memory_area display="yes" color="green">
  3126. <name>RAMM1</name>
  3127. <page_id>0x1</page_id>
  3128. <origin>0x400</origin>
  3129. <length>0x400</length>
  3130. <used_space>0x400</used_space>
  3131. <unused_space>0x0</unused_space>
  3132. <attributes>RWIX</attributes>
  3133. <usage_details>
  3134. <allocated_space>
  3135. <start_address>0x400</start_address>
  3136. <size>0x400</size>
  3137. <logical_group_ref idref="lg-14"/>
  3138. </allocated_space>
  3139. </usage_details>
  3140. </memory_area>
  3141. <memory_area display="yes" color="green">
  3142. <name>DEV_EMU</name>
  3143. <page_id>0x1</page_id>
  3144. <origin>0x880</origin>
  3145. <length>0x105</length>
  3146. <used_space>0x4</used_space>
  3147. <unused_space>0x101</unused_space>
  3148. <attributes>RWIX</attributes>
  3149. <usage_details>
  3150. <allocated_space>
  3151. <start_address>0x880</start_address>
  3152. <size>0x4</size>
  3153. <logical_group_ref idref="lg-1e"/>
  3154. </allocated_space>
  3155. <available_space>
  3156. <start_address>0x884</start_address>
  3157. <size>0x101</size>
  3158. </available_space>
  3159. </usage_details>
  3160. </memory_area>
  3161. <memory_area display="no" color="green">
  3162. <name>SYS_PWR_CTL</name>
  3163. <page_id>0x1</page_id>
  3164. <origin>0x985</origin>
  3165. <length>0x3</length>
  3166. <used_space>0x0</used_space>
  3167. <unused_space>0x3</unused_space>
  3168. <attributes>RWIX</attributes>
  3169. <usage_details>
  3170. </usage_details>
  3171. </memory_area>
  3172. <memory_area display="no" color="green">
  3173. <name>FLASH_REGS</name>
  3174. <page_id>0x1</page_id>
  3175. <origin>0xa80</origin>
  3176. <length>0x60</length>
  3177. <used_space>0x8</used_space>
  3178. <unused_space>0x58</unused_space>
  3179. <attributes>RWIX</attributes>
  3180. <usage_details>
  3181. <allocated_space>
  3182. <start_address>0xa80</start_address>
  3183. <size>0x8</size>
  3184. <logical_group_ref idref="lg-20"/>
  3185. </allocated_space>
  3186. <available_space>
  3187. <start_address>0xa88</start_address>
  3188. <size>0x58</size>
  3189. </available_space>
  3190. </usage_details>
  3191. </memory_area>
  3192. <memory_area display="no" color="green">
  3193. <name>CSM</name>
  3194. <page_id>0x1</page_id>
  3195. <origin>0xae0</origin>
  3196. <length>0x10</length>
  3197. <used_space>0x10</used_space>
  3198. <unused_space>0x0</unused_space>
  3199. <attributes>RWIX</attributes>
  3200. <usage_details>
  3201. <allocated_space>
  3202. <start_address>0xae0</start_address>
  3203. <size>0x10</size>
  3204. <logical_group_ref idref="lg-21"/>
  3205. </allocated_space>
  3206. </usage_details>
  3207. </memory_area>
  3208. <memory_area display="no" color="green">
  3209. <name>ADC_RESULT</name>
  3210. <page_id>0x1</page_id>
  3211. <origin>0xb00</origin>
  3212. <length>0x20</length>
  3213. <used_space>0x20</used_space>
  3214. <unused_space>0x0</unused_space>
  3215. <attributes>RWIX</attributes>
  3216. <usage_details>
  3217. <allocated_space>
  3218. <start_address>0xb00</start_address>
  3219. <size>0x20</size>
  3220. <logical_group_ref idref="lg-22"/>
  3221. </allocated_space>
  3222. </usage_details>
  3223. </memory_area>
  3224. <memory_area display="no" color="green">
  3225. <name>CPU_TIMER0</name>
  3226. <page_id>0x1</page_id>
  3227. <origin>0xc00</origin>
  3228. <length>0x8</length>
  3229. <used_space>0x8</used_space>
  3230. <unused_space>0x0</unused_space>
  3231. <attributes>RWIX</attributes>
  3232. <usage_details>
  3233. <allocated_space>
  3234. <start_address>0xc00</start_address>
  3235. <size>0x8</size>
  3236. <logical_group_ref idref="lg-23"/>
  3237. </allocated_space>
  3238. </usage_details>
  3239. </memory_area>
  3240. <memory_area display="no" color="green">
  3241. <name>CPU_TIMER1</name>
  3242. <page_id>0x1</page_id>
  3243. <origin>0xc08</origin>
  3244. <length>0x8</length>
  3245. <used_space>0x8</used_space>
  3246. <unused_space>0x0</unused_space>
  3247. <attributes>RWIX</attributes>
  3248. <usage_details>
  3249. <allocated_space>
  3250. <start_address>0xc08</start_address>
  3251. <size>0x8</size>
  3252. <logical_group_ref idref="lg-24"/>
  3253. </allocated_space>
  3254. </usage_details>
  3255. </memory_area>
  3256. <memory_area display="no" color="green">
  3257. <name>CPU_TIMER2</name>
  3258. <page_id>0x1</page_id>
  3259. <origin>0xc10</origin>
  3260. <length>0x8</length>
  3261. <used_space>0x8</used_space>
  3262. <unused_space>0x0</unused_space>
  3263. <attributes>RWIX</attributes>
  3264. <usage_details>
  3265. <allocated_space>
  3266. <start_address>0xc10</start_address>
  3267. <size>0x8</size>
  3268. <logical_group_ref idref="lg-25"/>
  3269. </allocated_space>
  3270. </usage_details>
  3271. </memory_area>
  3272. <memory_area display="no" color="green">
  3273. <name>PIE_CTRL</name>
  3274. <page_id>0x1</page_id>
  3275. <origin>0xce0</origin>
  3276. <length>0x20</length>
  3277. <used_space>0x1a</used_space>
  3278. <unused_space>0x6</unused_space>
  3279. <attributes>RWIX</attributes>
  3280. <usage_details>
  3281. <allocated_space>
  3282. <start_address>0xce0</start_address>
  3283. <size>0x1a</size>
  3284. <logical_group_ref idref="lg-26"/>
  3285. </allocated_space>
  3286. <available_space>
  3287. <start_address>0xcfa</start_address>
  3288. <size>0x6</size>
  3289. </available_space>
  3290. </usage_details>
  3291. </memory_area>
  3292. <memory_area display="yes" color="green">
  3293. <name>PIE_VECT</name>
  3294. <page_id>0x1</page_id>
  3295. <origin>0xd00</origin>
  3296. <length>0x100</length>
  3297. <used_space>0x100</used_space>
  3298. <unused_space>0x0</unused_space>
  3299. <attributes>RWIX</attributes>
  3300. <usage_details>
  3301. <allocated_space>
  3302. <start_address>0xd00</start_address>
  3303. <size>0x100</size>
  3304. <logical_group_ref idref="lg-17"/>
  3305. </allocated_space>
  3306. </usage_details>
  3307. </memory_area>
  3308. <memory_area display="yes" color="green">
  3309. <name>CLA1</name>
  3310. <page_id>0x1</page_id>
  3311. <origin>0x1400</origin>
  3312. <length>0x80</length>
  3313. <used_space>0x40</used_space>
  3314. <unused_space>0x40</unused_space>
  3315. <attributes>RWIX</attributes>
  3316. <usage_details>
  3317. <allocated_space>
  3318. <start_address>0x1400</start_address>
  3319. <size>0x40</size>
  3320. <logical_group_ref idref="lg-27"/>
  3321. </allocated_space>
  3322. <available_space>
  3323. <start_address>0x1440</start_address>
  3324. <size>0x40</size>
  3325. </available_space>
  3326. </usage_details>
  3327. </memory_area>
  3328. <memory_area display="yes" color="green">
  3329. <name>CLA_CPU_MSGRAM</name>
  3330. <page_id>0x1</page_id>
  3331. <origin>0x1480</origin>
  3332. <length>0x80</length>
  3333. <used_space>0x0</used_space>
  3334. <unused_space>0x80</unused_space>
  3335. <attributes>RWIX</attributes>
  3336. <usage_details>
  3337. </usage_details>
  3338. </memory_area>
  3339. <memory_area display="yes" color="green">
  3340. <name>CPU_CLA_MSGRAM</name>
  3341. <page_id>0x1</page_id>
  3342. <origin>0x1500</origin>
  3343. <length>0x80</length>
  3344. <used_space>0x0</used_space>
  3345. <unused_space>0x80</unused_space>
  3346. <attributes>RWIX</attributes>
  3347. <usage_details>
  3348. </usage_details>
  3349. </memory_area>
  3350. <memory_area display="no" color="green">
  3351. <name>ECANA</name>
  3352. <page_id>0x1</page_id>
  3353. <origin>0x6000</origin>
  3354. <length>0x40</length>
  3355. <used_space>0x34</used_space>
  3356. <unused_space>0xc</unused_space>
  3357. <attributes>RWIX</attributes>
  3358. <usage_details>
  3359. <allocated_space>
  3360. <start_address>0x6000</start_address>
  3361. <size>0x34</size>
  3362. <logical_group_ref idref="lg-28"/>
  3363. </allocated_space>
  3364. <available_space>
  3365. <start_address>0x6034</start_address>
  3366. <size>0xc</size>
  3367. </available_space>
  3368. </usage_details>
  3369. </memory_area>
  3370. <memory_area display="no" color="green">
  3371. <name>ECANA_LAM</name>
  3372. <page_id>0x1</page_id>
  3373. <origin>0x6040</origin>
  3374. <length>0x40</length>
  3375. <used_space>0x40</used_space>
  3376. <unused_space>0x0</unused_space>
  3377. <attributes>RWIX</attributes>
  3378. <usage_details>
  3379. <allocated_space>
  3380. <start_address>0x6040</start_address>
  3381. <size>0x40</size>
  3382. <logical_group_ref idref="lg-29"/>
  3383. </allocated_space>
  3384. </usage_details>
  3385. </memory_area>
  3386. <memory_area display="no" color="green">
  3387. <name>ECANA_MOTS</name>
  3388. <page_id>0x1</page_id>
  3389. <origin>0x6080</origin>
  3390. <length>0x40</length>
  3391. <used_space>0x40</used_space>
  3392. <unused_space>0x0</unused_space>
  3393. <attributes>RWIX</attributes>
  3394. <usage_details>
  3395. <allocated_space>
  3396. <start_address>0x6080</start_address>
  3397. <size>0x40</size>
  3398. <logical_group_ref idref="lg-2b"/>
  3399. </allocated_space>
  3400. </usage_details>
  3401. </memory_area>
  3402. <memory_area display="no" color="green">
  3403. <name>ECANA_MOTO</name>
  3404. <page_id>0x1</page_id>
  3405. <origin>0x60c0</origin>
  3406. <length>0x40</length>
  3407. <used_space>0x40</used_space>
  3408. <unused_space>0x0</unused_space>
  3409. <attributes>RWIX</attributes>
  3410. <usage_details>
  3411. <allocated_space>
  3412. <start_address>0x60c0</start_address>
  3413. <size>0x40</size>
  3414. <logical_group_ref idref="lg-2c"/>
  3415. </allocated_space>
  3416. </usage_details>
  3417. </memory_area>
  3418. <memory_area display="yes" color="green">
  3419. <name>ECANA_MBOX</name>
  3420. <page_id>0x1</page_id>
  3421. <origin>0x6100</origin>
  3422. <length>0x100</length>
  3423. <used_space>0x100</used_space>
  3424. <unused_space>0x0</unused_space>
  3425. <attributes>RWIX</attributes>
  3426. <usage_details>
  3427. <allocated_space>
  3428. <start_address>0x6100</start_address>
  3429. <size>0x100</size>
  3430. <logical_group_ref idref="lg-2a"/>
  3431. </allocated_space>
  3432. </usage_details>
  3433. </memory_area>
  3434. <memory_area display="no" color="green">
  3435. <name>COMP1</name>
  3436. <page_id>0x1</page_id>
  3437. <origin>0x6400</origin>
  3438. <length>0x20</length>
  3439. <used_space>0x14</used_space>
  3440. <unused_space>0xc</unused_space>
  3441. <attributes>RWIX</attributes>
  3442. <usage_details>
  3443. <allocated_space>
  3444. <start_address>0x6400</start_address>
  3445. <size>0x14</size>
  3446. <logical_group_ref idref="lg-3b"/>
  3447. </allocated_space>
  3448. <available_space>
  3449. <start_address>0x6414</start_address>
  3450. <size>0xc</size>
  3451. </available_space>
  3452. </usage_details>
  3453. </memory_area>
  3454. <memory_area display="no" color="green">
  3455. <name>COMP2</name>
  3456. <page_id>0x1</page_id>
  3457. <origin>0x6420</origin>
  3458. <length>0x20</length>
  3459. <used_space>0x14</used_space>
  3460. <unused_space>0xc</unused_space>
  3461. <attributes>RWIX</attributes>
  3462. <usage_details>
  3463. <allocated_space>
  3464. <start_address>0x6420</start_address>
  3465. <size>0x14</size>
  3466. <logical_group_ref idref="lg-3c"/>
  3467. </allocated_space>
  3468. <available_space>
  3469. <start_address>0x6434</start_address>
  3470. <size>0xc</size>
  3471. </available_space>
  3472. </usage_details>
  3473. </memory_area>
  3474. <memory_area display="no" color="green">
  3475. <name>COMP3</name>
  3476. <page_id>0x1</page_id>
  3477. <origin>0x6440</origin>
  3478. <length>0x20</length>
  3479. <used_space>0x14</used_space>
  3480. <unused_space>0xc</unused_space>
  3481. <attributes>RWIX</attributes>
  3482. <usage_details>
  3483. <allocated_space>
  3484. <start_address>0x6440</start_address>
  3485. <size>0x14</size>
  3486. <logical_group_ref idref="lg-3d"/>
  3487. </allocated_space>
  3488. <available_space>
  3489. <start_address>0x6454</start_address>
  3490. <size>0xc</size>
  3491. </available_space>
  3492. </usage_details>
  3493. </memory_area>
  3494. <memory_area display="no" color="green">
  3495. <name>EPWM1</name>
  3496. <page_id>0x1</page_id>
  3497. <origin>0x6800</origin>
  3498. <length>0x40</length>
  3499. <used_space>0x40</used_space>
  3500. <unused_space>0x0</unused_space>
  3501. <attributes>RWIX</attributes>
  3502. <usage_details>
  3503. <allocated_space>
  3504. <start_address>0x6800</start_address>
  3505. <size>0x40</size>
  3506. <logical_group_ref idref="lg-3e"/>
  3507. </allocated_space>
  3508. </usage_details>
  3509. </memory_area>
  3510. <memory_area display="no" color="green">
  3511. <name>EPWM2</name>
  3512. <page_id>0x1</page_id>
  3513. <origin>0x6840</origin>
  3514. <length>0x40</length>
  3515. <used_space>0x40</used_space>
  3516. <unused_space>0x0</unused_space>
  3517. <attributes>RWIX</attributes>
  3518. <usage_details>
  3519. <allocated_space>
  3520. <start_address>0x6840</start_address>
  3521. <size>0x40</size>
  3522. <logical_group_ref idref="lg-3f"/>
  3523. </allocated_space>
  3524. </usage_details>
  3525. </memory_area>
  3526. <memory_area display="no" color="green">
  3527. <name>EPWM3</name>
  3528. <page_id>0x1</page_id>
  3529. <origin>0x6880</origin>
  3530. <length>0x40</length>
  3531. <used_space>0x40</used_space>
  3532. <unused_space>0x0</unused_space>
  3533. <attributes>RWIX</attributes>
  3534. <usage_details>
  3535. <allocated_space>
  3536. <start_address>0x6880</start_address>
  3537. <size>0x40</size>
  3538. <logical_group_ref idref="lg-40"/>
  3539. </allocated_space>
  3540. </usage_details>
  3541. </memory_area>
  3542. <memory_area display="no" color="green">
  3543. <name>EPWM4</name>
  3544. <page_id>0x1</page_id>
  3545. <origin>0x68c0</origin>
  3546. <length>0x40</length>
  3547. <used_space>0x40</used_space>
  3548. <unused_space>0x0</unused_space>
  3549. <attributes>RWIX</attributes>
  3550. <usage_details>
  3551. <allocated_space>
  3552. <start_address>0x68c0</start_address>
  3553. <size>0x40</size>
  3554. <logical_group_ref idref="lg-41"/>
  3555. </allocated_space>
  3556. </usage_details>
  3557. </memory_area>
  3558. <memory_area display="no" color="green">
  3559. <name>EPWM5</name>
  3560. <page_id>0x1</page_id>
  3561. <origin>0x6900</origin>
  3562. <length>0x40</length>
  3563. <used_space>0x40</used_space>
  3564. <unused_space>0x0</unused_space>
  3565. <attributes>RWIX</attributes>
  3566. <usage_details>
  3567. <allocated_space>
  3568. <start_address>0x6900</start_address>
  3569. <size>0x40</size>
  3570. <logical_group_ref idref="lg-42"/>
  3571. </allocated_space>
  3572. </usage_details>
  3573. </memory_area>
  3574. <memory_area display="no" color="green">
  3575. <name>EPWM6</name>
  3576. <page_id>0x1</page_id>
  3577. <origin>0x6940</origin>
  3578. <length>0x40</length>
  3579. <used_space>0x40</used_space>
  3580. <unused_space>0x0</unused_space>
  3581. <attributes>RWIX</attributes>
  3582. <usage_details>
  3583. <allocated_space>
  3584. <start_address>0x6940</start_address>
  3585. <size>0x40</size>
  3586. <logical_group_ref idref="lg-43"/>
  3587. </allocated_space>
  3588. </usage_details>
  3589. </memory_area>
  3590. <memory_area display="no" color="green">
  3591. <name>EPWM7</name>
  3592. <page_id>0x1</page_id>
  3593. <origin>0x6980</origin>
  3594. <length>0x40</length>
  3595. <used_space>0x40</used_space>
  3596. <unused_space>0x0</unused_space>
  3597. <attributes>RWIX</attributes>
  3598. <usage_details>
  3599. <allocated_space>
  3600. <start_address>0x6980</start_address>
  3601. <size>0x40</size>
  3602. <logical_group_ref idref="lg-44"/>
  3603. </allocated_space>
  3604. </usage_details>
  3605. </memory_area>
  3606. <memory_area display="no" color="green">
  3607. <name>ECAP1</name>
  3608. <page_id>0x1</page_id>
  3609. <origin>0x6a00</origin>
  3610. <length>0x20</length>
  3611. <used_space>0x20</used_space>
  3612. <unused_space>0x0</unused_space>
  3613. <attributes>RWIX</attributes>
  3614. <usage_details>
  3615. <allocated_space>
  3616. <start_address>0x6a00</start_address>
  3617. <size>0x20</size>
  3618. <logical_group_ref idref="lg-2d"/>
  3619. </allocated_space>
  3620. </usage_details>
  3621. </memory_area>
  3622. <memory_area display="no" color="green">
  3623. <name>EQEP1</name>
  3624. <page_id>0x1</page_id>
  3625. <origin>0x6b00</origin>
  3626. <length>0x40</length>
  3627. <used_space>0x40</used_space>
  3628. <unused_space>0x0</unused_space>
  3629. <attributes>RWIX</attributes>
  3630. <usage_details>
  3631. <allocated_space>
  3632. <start_address>0x6b00</start_address>
  3633. <size>0x40</size>
  3634. <logical_group_ref idref="lg-2e"/>
  3635. </allocated_space>
  3636. </usage_details>
  3637. </memory_area>
  3638. <memory_area display="yes" color="green">
  3639. <name>LINA</name>
  3640. <page_id>0x1</page_id>
  3641. <origin>0x6c00</origin>
  3642. <length>0x80</length>
  3643. <used_space>0x4a</used_space>
  3644. <unused_space>0x36</unused_space>
  3645. <attributes>RWIX</attributes>
  3646. <usage_details>
  3647. <allocated_space>
  3648. <start_address>0x6c00</start_address>
  3649. <size>0x4a</size>
  3650. <logical_group_ref idref="lg-2f"/>
  3651. </allocated_space>
  3652. <available_space>
  3653. <start_address>0x6c4a</start_address>
  3654. <size>0x36</size>
  3655. </available_space>
  3656. </usage_details>
  3657. </memory_area>
  3658. <memory_area display="no" color="green">
  3659. <name>GPIOCTRL</name>
  3660. <page_id>0x1</page_id>
  3661. <origin>0x6f80</origin>
  3662. <length>0x40</length>
  3663. <used_space>0x40</used_space>
  3664. <unused_space>0x0</unused_space>
  3665. <attributes>RWIX</attributes>
  3666. <usage_details>
  3667. <allocated_space>
  3668. <start_address>0x6f80</start_address>
  3669. <size>0x40</size>
  3670. <logical_group_ref idref="lg-30"/>
  3671. </allocated_space>
  3672. </usage_details>
  3673. </memory_area>
  3674. <memory_area display="no" color="green">
  3675. <name>GPIODAT</name>
  3676. <page_id>0x1</page_id>
  3677. <origin>0x6fc0</origin>
  3678. <length>0x20</length>
  3679. <used_space>0x20</used_space>
  3680. <unused_space>0x0</unused_space>
  3681. <attributes>RWIX</attributes>
  3682. <usage_details>
  3683. <allocated_space>
  3684. <start_address>0x6fc0</start_address>
  3685. <size>0x20</size>
  3686. <logical_group_ref idref="lg-31"/>
  3687. </allocated_space>
  3688. </usage_details>
  3689. </memory_area>
  3690. <memory_area display="no" color="green">
  3691. <name>GPIOINT</name>
  3692. <page_id>0x1</page_id>
  3693. <origin>0x6fe0</origin>
  3694. <length>0x20</length>
  3695. <used_space>0xc</used_space>
  3696. <unused_space>0x14</unused_space>
  3697. <attributes>RWIX</attributes>
  3698. <usage_details>
  3699. <allocated_space>
  3700. <start_address>0x6fe0</start_address>
  3701. <size>0xc</size>
  3702. <logical_group_ref idref="lg-32"/>
  3703. </allocated_space>
  3704. <available_space>
  3705. <start_address>0x6fec</start_address>
  3706. <size>0x14</size>
  3707. </available_space>
  3708. </usage_details>
  3709. </memory_area>
  3710. <memory_area display="no" color="green">
  3711. <name>SYSTEM</name>
  3712. <page_id>0x1</page_id>
  3713. <origin>0x7010</origin>
  3714. <length>0x20</length>
  3715. <used_space>0x20</used_space>
  3716. <unused_space>0x0</unused_space>
  3717. <attributes>RWIX</attributes>
  3718. <usage_details>
  3719. <allocated_space>
  3720. <start_address>0x7010</start_address>
  3721. <size>0x20</size>
  3722. <logical_group_ref idref="lg-33"/>
  3723. </allocated_space>
  3724. </usage_details>
  3725. </memory_area>
  3726. <memory_area display="no" color="green">
  3727. <name>SPIA</name>
  3728. <page_id>0x1</page_id>
  3729. <origin>0x7040</origin>
  3730. <length>0x10</length>
  3731. <used_space>0x10</used_space>
  3732. <unused_space>0x0</unused_space>
  3733. <attributes>RWIX</attributes>
  3734. <usage_details>
  3735. <allocated_space>
  3736. <start_address>0x7040</start_address>
  3737. <size>0x10</size>
  3738. <logical_group_ref idref="lg-34"/>
  3739. </allocated_space>
  3740. </usage_details>
  3741. </memory_area>
  3742. <memory_area display="no" color="green">
  3743. <name>SCIA</name>
  3744. <page_id>0x1</page_id>
  3745. <origin>0x7050</origin>
  3746. <length>0x10</length>
  3747. <used_space>0x10</used_space>
  3748. <unused_space>0x0</unused_space>
  3749. <attributes>RWIX</attributes>
  3750. <usage_details>
  3751. <allocated_space>
  3752. <start_address>0x7050</start_address>
  3753. <size>0x10</size>
  3754. <logical_group_ref idref="lg-36"/>
  3755. </allocated_space>
  3756. </usage_details>
  3757. </memory_area>
  3758. <memory_area display="no" color="green">
  3759. <name>NMIINTRUPT</name>
  3760. <page_id>0x1</page_id>
  3761. <origin>0x7060</origin>
  3762. <length>0x10</length>
  3763. <used_space>0x10</used_space>
  3764. <unused_space>0x0</unused_space>
  3765. <attributes>RWIX</attributes>
  3766. <usage_details>
  3767. <allocated_space>
  3768. <start_address>0x7060</start_address>
  3769. <size>0x10</size>
  3770. <logical_group_ref idref="lg-37"/>
  3771. </allocated_space>
  3772. </usage_details>
  3773. </memory_area>
  3774. <memory_area display="no" color="green">
  3775. <name>XINTRUPT</name>
  3776. <page_id>0x1</page_id>
  3777. <origin>0x7070</origin>
  3778. <length>0x10</length>
  3779. <used_space>0x10</used_space>
  3780. <unused_space>0x0</unused_space>
  3781. <attributes>RWIX</attributes>
  3782. <usage_details>
  3783. <allocated_space>
  3784. <start_address>0x7070</start_address>
  3785. <size>0x10</size>
  3786. <logical_group_ref idref="lg-38"/>
  3787. </allocated_space>
  3788. </usage_details>
  3789. </memory_area>
  3790. <memory_area display="yes" color="green">
  3791. <name>ADC</name>
  3792. <page_id>0x1</page_id>
  3793. <origin>0x7100</origin>
  3794. <length>0x80</length>
  3795. <used_space>0x50</used_space>
  3796. <unused_space>0x30</unused_space>
  3797. <attributes>RWIX</attributes>
  3798. <usage_details>
  3799. <allocated_space>
  3800. <start_address>0x7100</start_address>
  3801. <size>0x50</size>
  3802. <logical_group_ref idref="lg-39"/>
  3803. </allocated_space>
  3804. <available_space>
  3805. <start_address>0x7150</start_address>
  3806. <size>0x30</size>
  3807. </available_space>
  3808. </usage_details>
  3809. </memory_area>
  3810. <memory_area display="no" color="green">
  3811. <name>SPIB</name>
  3812. <page_id>0x1</page_id>
  3813. <origin>0x7740</origin>
  3814. <length>0x10</length>
  3815. <used_space>0x10</used_space>
  3816. <unused_space>0x0</unused_space>
  3817. <attributes>RWIX</attributes>
  3818. <usage_details>
  3819. <allocated_space>
  3820. <start_address>0x7740</start_address>
  3821. <size>0x10</size>
  3822. <logical_group_ref idref="lg-35"/>
  3823. </allocated_space>
  3824. </usage_details>
  3825. </memory_area>
  3826. <memory_area display="no" color="green">
  3827. <name>I2CA</name>
  3828. <page_id>0x1</page_id>
  3829. <origin>0x7900</origin>
  3830. <length>0x40</length>
  3831. <used_space>0x22</used_space>
  3832. <unused_space>0x1e</unused_space>
  3833. <attributes>RWIX</attributes>
  3834. <usage_details>
  3835. <allocated_space>
  3836. <start_address>0x7900</start_address>
  3837. <size>0x22</size>
  3838. <logical_group_ref idref="lg-3a"/>
  3839. </allocated_space>
  3840. <available_space>
  3841. <start_address>0x7922</start_address>
  3842. <size>0x1e</size>
  3843. </available_space>
  3844. </usage_details>
  3845. </memory_area>
  3846. <memory_area display="yes" color="green">
  3847. <name>dataRAM</name>
  3848. <page_id>0x1</page_id>
  3849. <origin>0x9000</origin>
  3850. <length>0x1000</length>
  3851. <used_space>0x890</used_space>
  3852. <unused_space>0x770</unused_space>
  3853. <attributes>RWIX</attributes>
  3854. <usage_details>
  3855. <allocated_space>
  3856. <start_address>0x9000</start_address>
  3857. <size>0x640</size>
  3858. <logical_group_ref idref="lg-16"/>
  3859. </allocated_space>
  3860. <allocated_space>
  3861. <start_address>0x9640</start_address>
  3862. <size>0x250</size>
  3863. <logical_group_ref idref="lg-a"/>
  3864. </allocated_space>
  3865. <available_space>
  3866. <start_address>0x9890</start_address>
  3867. <size>0x770</size>
  3868. </available_space>
  3869. </usage_details>
  3870. </memory_area>
  3871. <memory_area display="no" color="green">
  3872. <name>PARTID</name>
  3873. <page_id>0x1</page_id>
  3874. <origin>0x3d7e80</origin>
  3875. <length>0x1</length>
  3876. <used_space>0x1</used_space>
  3877. <unused_space>0x0</unused_space>
  3878. <attributes>RWIX</attributes>
  3879. <usage_details>
  3880. <allocated_space>
  3881. <start_address>0x3d7e80</start_address>
  3882. <size>0x1</size>
  3883. <logical_group_ref idref="lg-46"/>
  3884. </allocated_space>
  3885. </usage_details>
  3886. </memory_area>
  3887. <memory_area display="yes" color="green">
  3888. <name>FLASHB</name>
  3889. <page_id>0x1</page_id>
  3890. <origin>0x3f0000</origin>
  3891. <length>0x4000</length>
  3892. <used_space>0x0</used_space>
  3893. <unused_space>0x4000</unused_space>
  3894. <attributes>RWIX</attributes>
  3895. <usage_details>
  3896. </usage_details>
  3897. </memory_area>
  3898. <memory_area display="no" color="green">
  3899. <name>CSM_PWL</name>
  3900. <page_id>0x1</page_id>
  3901. <origin>0x3f7ff8</origin>
  3902. <length>0x8</length>
  3903. <used_space>0x8</used_space>
  3904. <unused_space>0x0</unused_space>
  3905. <attributes>RWIX</attributes>
  3906. <usage_details>
  3907. <allocated_space>
  3908. <start_address>0x3f7ff8</start_address>
  3909. <size>0x8</size>
  3910. <logical_group_ref idref="lg-45"/>
  3911. </allocated_space>
  3912. </usage_details>
  3913. </memory_area>
  3914. </placement_map>
  3915. <symbol_table>
  3916. <symbol id="sm-0">
  3917. <name>_RamfuncsLoadStart</name>
  3918. <value>0x3ec000</value>
  3919. </symbol>
  3920. <symbol id="sm-1">
  3921. <name>_RamfuncsLoadEnd</name>
  3922. <value>0x3ec0b8</value>
  3923. </symbol>
  3924. <symbol id="sm-2">
  3925. <name>_RamfuncsRunStart</name>
  3926. <value>0x8000</value>
  3927. </symbol>
  3928. <symbol id="sm-3">
  3929. <name>cinit</name>
  3930. <value>0x3e9c04</value>
  3931. </symbol>
  3932. <symbol id="sm-4">
  3933. <name>___cinit__</name>
  3934. <value>0x3e9c04</value>
  3935. </symbol>
  3936. <symbol id="sm-5">
  3937. <name>pinit</name>
  3938. <value>0xffffffff</value>
  3939. </symbol>
  3940. <symbol id="sm-6">
  3941. <name>___pinit__</name>
  3942. <value>0xffffffff</value>
  3943. </symbol>
  3944. <symbol id="sm-7">
  3945. <name>binit</name>
  3946. <value>0xffffffff</value>
  3947. </symbol>
  3948. <symbol id="sm-8">
  3949. <name>___binit__</name>
  3950. <value>0xffffffff</value>
  3951. </symbol>
  3952. <symbol id="sm-9">
  3953. <name>__STACK_SIZE</name>
  3954. <value>0x380</value>
  3955. </symbol>
  3956. <symbol id="sm-a">
  3957. <name>__STACK_END</name>
  3958. <value>0x3d0</value>
  3959. </symbol>
  3960. <symbol id="sm-b">
  3961. <name>___c_args__</name>
  3962. <value>0xffffffff</value>
  3963. </symbol>
  3964. <symbol id="sm-c">
  3965. <name>.text</name>
  3966. <value>0x3e8000</value>
  3967. </symbol>
  3968. <symbol id="sm-d">
  3969. <name>___text__</name>
  3970. <value>0x3e8000</value>
  3971. </symbol>
  3972. <symbol id="sm-e">
  3973. <name>etext</name>
  3974. <value>0x3e9c04</value>
  3975. </symbol>
  3976. <symbol id="sm-f">
  3977. <name>___etext__</name>
  3978. <value>0x3e9c04</value>
  3979. </symbol>
  3980. <symbol id="sm-10">
  3981. <name>___TI_pprof_out_hndl</name>
  3982. <value>0xffffffff</value>
  3983. </symbol>
  3984. <symbol id="sm-11">
  3985. <name>___TI_prof_data_start</name>
  3986. <value>0xffffffff</value>
  3987. </symbol>
  3988. <symbol id="sm-12">
  3989. <name>___TI_prof_data_size</name>
  3990. <value>0xffffffff</value>
  3991. </symbol>
  3992. <symbol id="sm-ba">
  3993. <name>_DLOG_4CH_init</name>
  3994. <value>0x3e9a50</value>
  3995. <object_component_ref idref="oc-49"/>
  3996. </symbol>
  3997. <symbol id="sm-bb">
  3998. <name>_DLOG_4CH_update</name>
  3999. <value>0x3e9a5b</value>
  4000. <object_component_ref idref="oc-49"/>
  4001. </symbol>
  4002. <symbol id="sm-c9">
  4003. <name>_CpuTimer2</name>
  4004. <value>0x96f6</value>
  4005. <object_component_ref idref="oc-50"/>
  4006. </symbol>
  4007. <symbol id="sm-ca">
  4008. <name>_CpuTimer0</name>
  4009. <value>0x96e6</value>
  4010. <object_component_ref idref="oc-50"/>
  4011. </symbol>
  4012. <symbol id="sm-cb">
  4013. <name>_CpuTimer1</name>
  4014. <value>0x96ee</value>
  4015. <object_component_ref idref="oc-50"/>
  4016. </symbol>
  4017. <symbol id="sm-cc">
  4018. <name>_InitCpuTimers</name>
  4019. <value>0x3e9930</value>
  4020. <object_component_ref idref="oc-131"/>
  4021. </symbol>
  4022. <symbol id="sm-ce">
  4023. <name>_ConfigCpuTimer</name>
  4024. <value>0x3e9971</value>
  4025. <object_component_ref idref="oc-131"/>
  4026. </symbol>
  4027. <symbol id="sm-12f">
  4028. <name>_GpioCtrlRegs</name>
  4029. <value>0x6f80</value>
  4030. <object_component_ref idref="oc-81"/>
  4031. </symbol>
  4032. <symbol id="sm-130">
  4033. <name>_PieVectTable</name>
  4034. <value>0xd00</value>
  4035. <object_component_ref idref="oc-85"/>
  4036. </symbol>
  4037. <symbol id="sm-131">
  4038. <name>_EmuBMode</name>
  4039. <value>0xd01</value>
  4040. <object_component_ref idref="oc-58"/>
  4041. </symbol>
  4042. <symbol id="sm-132">
  4043. <name>_CsmRegs</name>
  4044. <value>0xae0</value>
  4045. <object_component_ref idref="oc-62"/>
  4046. </symbol>
  4047. <symbol id="sm-133">
  4048. <name>_ECanaLAMRegs</name>
  4049. <value>0x6040</value>
  4050. <object_component_ref idref="oc-73"/>
  4051. </symbol>
  4052. <symbol id="sm-134">
  4053. <name>_AdcResult</name>
  4054. <value>0xb00</value>
  4055. <object_component_ref idref="oc-6c"/>
  4056. </symbol>
  4057. <symbol id="sm-135">
  4058. <name>_EPwm4Regs</name>
  4059. <value>0x68c0</value>
  4060. <object_component_ref idref="oc-7b"/>
  4061. </symbol>
  4062. <symbol id="sm-136">
  4063. <name>_CpuTimer1Regs</name>
  4064. <value>0xc08</value>
  4065. <object_component_ref idref="oc-5d"/>
  4066. </symbol>
  4067. <symbol id="sm-137">
  4068. <name>_SysCtrlRegs</name>
  4069. <value>0x7010</value>
  4070. <object_component_ref idref="oc-70"/>
  4071. </symbol>
  4072. <symbol id="sm-138">
  4073. <name>_EPwm5Regs</name>
  4074. <value>0x6900</value>
  4075. <object_component_ref idref="oc-7c"/>
  4076. </symbol>
  4077. <symbol id="sm-139">
  4078. <name>_SpiaRegs</name>
  4079. <value>0x7040</value>
  4080. <object_component_ref idref="oc-65"/>
  4081. </symbol>
  4082. <symbol id="sm-13a">
  4083. <name>_ECanaMOTSRegs</name>
  4084. <value>0x6080</value>
  4085. <object_component_ref idref="oc-74"/>
  4086. </symbol>
  4087. <symbol id="sm-13b">
  4088. <name>_FlashRegs</name>
  4089. <value>0xa80</value>
  4090. <object_component_ref idref="oc-60"/>
  4091. </symbol>
  4092. <symbol id="sm-13c">
  4093. <name>_CpuTimer0Regs</name>
  4094. <value>0xc00</value>
  4095. <object_component_ref idref="oc-5c"/>
  4096. </symbol>
  4097. <symbol id="sm-13d">
  4098. <name>_DevEmuRegs</name>
  4099. <value>0x880</value>
  4100. <object_component_ref idref="oc-5b"/>
  4101. </symbol>
  4102. <symbol id="sm-13e">
  4103. <name>_EPwm6Regs</name>
  4104. <value>0x6940</value>
  4105. <object_component_ref idref="oc-7d"/>
  4106. </symbol>
  4107. <symbol id="sm-13f">
  4108. <name>_Comp1Regs</name>
  4109. <value>0x6400</value>
  4110. <object_component_ref idref="oc-68"/>
  4111. </symbol>
  4112. <symbol id="sm-140">
  4113. <name>_SciaRegs</name>
  4114. <value>0x7050</value>
  4115. <object_component_ref idref="oc-64"/>
  4116. </symbol>
  4117. <symbol id="sm-141">
  4118. <name>_GpioDataRegs</name>
  4119. <value>0x6fc0</value>
  4120. <object_component_ref idref="oc-6f"/>
  4121. </symbol>
  4122. <symbol id="sm-142">
  4123. <name>_CsmPwl</name>
  4124. <value>0x3f7ff8</value>
  4125. <object_component_ref idref="oc-5f"/>
  4126. </symbol>
  4127. <symbol id="sm-143">
  4128. <name>_AdcRegs</name>
  4129. <value>0x7100</value>
  4130. <object_component_ref idref="oc-83"/>
  4131. </symbol>
  4132. <symbol id="sm-144">
  4133. <name>_EPwm7Regs</name>
  4134. <value>0x6980</value>
  4135. <object_component_ref idref="oc-7e"/>
  4136. </symbol>
  4137. <symbol id="sm-145">
  4138. <name>_Comp2Regs</name>
  4139. <value>0x6420</value>
  4140. <object_component_ref idref="oc-69"/>
  4141. </symbol>
  4142. <symbol id="sm-146">
  4143. <name>_XIntruptRegs</name>
  4144. <value>0x7070</value>
  4145. <object_component_ref idref="oc-67"/>
  4146. </symbol>
  4147. <symbol id="sm-147">
  4148. <name>_CpuTimer2Regs</name>
  4149. <value>0xc10</value>
  4150. <object_component_ref idref="oc-5e"/>
  4151. </symbol>
  4152. <symbol id="sm-148">
  4153. <name>_PieCtrlRegs</name>
  4154. <value>0xce0</value>
  4155. <object_component_ref idref="oc-6b"/>
  4156. </symbol>
  4157. <symbol id="sm-149">
  4158. <name>_SpibRegs</name>
  4159. <value>0x7740</value>
  4160. <object_component_ref idref="oc-66"/>
  4161. </symbol>
  4162. <symbol id="sm-14a">
  4163. <name>_ECanaRegs</name>
  4164. <value>0x6000</value>
  4165. <object_component_ref idref="oc-72"/>
  4166. </symbol>
  4167. <symbol id="sm-14b">
  4168. <name>_Comp3Regs</name>
  4169. <value>0x6440</value>
  4170. <object_component_ref idref="oc-6a"/>
  4171. </symbol>
  4172. <symbol id="sm-14c">
  4173. <name>_ECap1Regs</name>
  4174. <value>0x6a00</value>
  4175. <object_component_ref idref="oc-6d"/>
  4176. </symbol>
  4177. <symbol id="sm-14d">
  4178. <name>_EmuKey</name>
  4179. <value>0xd00</value>
  4180. <object_component_ref idref="oc-57"/>
  4181. </symbol>
  4182. <symbol id="sm-14e">
  4183. <name>_LinaRegs</name>
  4184. <value>0x6c00</value>
  4185. <object_component_ref idref="oc-82"/>
  4186. </symbol>
  4187. <symbol id="sm-14f">
  4188. <name>_Cla1Regs</name>
  4189. <value>0x1400</value>
  4190. <object_component_ref idref="oc-76"/>
  4191. </symbol>
  4192. <symbol id="sm-150">
  4193. <name>_EQep1Regs</name>
  4194. <value>0x6b00</value>
  4195. <object_component_ref idref="oc-7f"/>
  4196. </symbol>
  4197. <symbol id="sm-151">
  4198. <name>_EPwm1Regs</name>
  4199. <value>0x6800</value>
  4200. <object_component_ref idref="oc-77"/>
  4201. </symbol>
  4202. <symbol id="sm-152">
  4203. <name>_GpioIntRegs</name>
  4204. <value>0x6fe0</value>
  4205. <object_component_ref idref="oc-61"/>
  4206. </symbol>
  4207. <symbol id="sm-153">
  4208. <name>_PartIdRegs</name>
  4209. <value>0x3d7e80</value>
  4210. <object_component_ref idref="oc-56"/>
  4211. </symbol>
  4212. <symbol id="sm-154">
  4213. <name>_Flash_CPUScaleFactor</name>
  4214. <value>0xd04</value>
  4215. <object_component_ref idref="oc-59"/>
  4216. </symbol>
  4217. <symbol id="sm-155">
  4218. <name>_EPwm2Regs</name>
  4219. <value>0x6840</value>
  4220. <object_component_ref idref="oc-79"/>
  4221. </symbol>
  4222. <symbol id="sm-156">
  4223. <name>_ECanaMboxes</name>
  4224. <value>0x6100</value>
  4225. <object_component_ref idref="oc-84"/>
  4226. </symbol>
  4227. <symbol id="sm-157">
  4228. <name>_NmiIntruptRegs</name>
  4229. <value>0x7060</value>
  4230. <object_component_ref idref="oc-63"/>
  4231. </symbol>
  4232. <symbol id="sm-158">
  4233. <name>_ECanaMOTORegs</name>
  4234. <value>0x60c0</value>
  4235. <object_component_ref idref="oc-75"/>
  4236. </symbol>
  4237. <symbol id="sm-159">
  4238. <name>_Flash_CallbackPtr</name>
  4239. <value>0xd02</value>
  4240. <object_component_ref idref="oc-5a"/>
  4241. </symbol>
  4242. <symbol id="sm-15a">
  4243. <name>_EPwm3Regs</name>
  4244. <value>0x6880</value>
  4245. <object_component_ref idref="oc-7a"/>
  4246. </symbol>
  4247. <symbol id="sm-15b">
  4248. <name>_I2caRegs</name>
  4249. <value>0x7900</value>
  4250. <object_component_ref idref="oc-71"/>
  4251. </symbol>
  4252. <symbol id="sm-167">
  4253. <name>_DSP28x_usDelay</name>
  4254. <value>0x80b4</value>
  4255. <object_component_ref idref="oc-87"/>
  4256. </symbol>
  4257. <symbol id="sm-180">
  4258. <name>_DeviceInit</name>
  4259. <value>0x3e9339</value>
  4260. <object_component_ref idref="oc-12e"/>
  4261. </symbol>
  4262. <symbol id="sm-182">
  4263. <name>_MemCopy</name>
  4264. <value>0x3e94ed</value>
  4265. <object_component_ref idref="oc-12e"/>
  4266. </symbol>
  4267. <symbol id="sm-184">
  4268. <name>_PieCntlInit</name>
  4269. <value>0x3e94b2</value>
  4270. <object_component_ref idref="oc-12e"/>
  4271. </symbol>
  4272. <symbol id="sm-186">
  4273. <name>_WDogDisable</name>
  4274. <value>0x3e9470</value>
  4275. <object_component_ref idref="oc-12e"/>
  4276. </symbol>
  4277. <symbol id="sm-188">
  4278. <name>_PieVectTableInit</name>
  4279. <value>0x3e94d1</value>
  4280. <object_component_ref idref="oc-12e"/>
  4281. </symbol>
  4282. <symbol id="sm-18a">
  4283. <name>_InitFlash</name>
  4284. <value>0x8099</value>
  4285. <object_component_ref idref="oc-130"/>
  4286. </symbol>
  4287. <symbol id="sm-18c">
  4288. <name>_PLLset</name>
  4289. <value>0x3e9478</value>
  4290. <object_component_ref idref="oc-12e"/>
  4291. </symbol>
  4292. <symbol id="sm-18e">
  4293. <name>_ISR_ILLEGAL</name>
  4294. <value>0x3e9bfc</value>
  4295. <object_component_ref idref="oc-8d"/>
  4296. </symbol>
  4297. <symbol id="sm-27b">
  4298. <name>_MainISR</name>
  4299. <value>0x8000</value>
  4300. <object_component_ref idref="oc-95"/>
  4301. </symbol>
  4302. <symbol id="sm-27d">
  4303. <name>_SpeedLoopFlag</name>
  4304. <value>0x964f</value>
  4305. <object_component_ref idref="oc-94"/>
  4306. </symbol>
  4307. <symbol id="sm-27e">
  4308. <name>_main</name>
  4309. <value>0x3e8710</value>
  4310. <object_component_ref idref="oc-12a"/>
  4311. </symbol>
  4312. <symbol id="sm-280">
  4313. <name>_ACQPS</name>
  4314. <value>0x97e5</value>
  4315. <object_component_ref idref="oc-136"/>
  4316. </symbol>
  4317. <symbol id="sm-281">
  4318. <name>_GPR0_BLDC_PWM</name>
  4319. <value>0x9641</value>
  4320. <object_component_ref idref="oc-94"/>
  4321. </symbol>
  4322. <symbol id="sm-282">
  4323. <name>_pwmlimitrate</name>
  4324. <value>0x9678</value>
  4325. <object_component_ref idref="oc-94"/>
  4326. </symbol>
  4327. <symbol id="sm-283">
  4328. <name>_BLDCPWM_MACRO</name>
  4329. <value>0x3e8194</value>
  4330. <object_component_ref idref="oc-12a"/>
  4331. </symbol>
  4332. <symbol id="sm-285">
  4333. <name>_IMPULSE_MACRO</name>
  4334. <value>0x3e806c</value>
  4335. <object_component_ref idref="oc-12a"/>
  4336. </symbol>
  4337. <symbol id="sm-287">
  4338. <name>_HALL3_DEBOUNCE_MACRO</name>
  4339. <value>0x3e8688</value>
  4340. <object_component_ref idref="oc-12a"/>
  4341. </symbol>
  4342. <symbol id="sm-289">
  4343. <name>_speed_direction</name>
  4344. <value>0x3e8b02</value>
  4345. <object_component_ref idref="oc-12a"/>
  4346. </symbol>
  4347. <symbol id="sm-28b">
  4348. <name>_Rt</name>
  4349. <value>0x9676</value>
  4350. <object_component_ref idref="oc-94"/>
  4351. </symbol>
  4352. <symbol id="sm-28c">
  4353. <name>_Xint2Cnt</name>
  4354. <value>0x9648</value>
  4355. <object_component_ref idref="oc-94"/>
  4356. </symbol>
  4357. <symbol id="sm-28d">
  4358. <name>_RC2_MACRO</name>
  4359. <value>0x3e8000</value>
  4360. <object_component_ref idref="oc-12a"/>
  4361. </symbol>
  4362. <symbol id="sm-28f">
  4363. <name>_CmtnPeriodTarget</name>
  4364. <value>0x966a</value>
  4365. <object_component_ref idref="oc-94"/>
  4366. </symbol>
  4367. <symbol id="sm-290">
  4368. <name>_tempIdc</name>
  4369. <value>0x9674</value>
  4370. <object_component_ref idref="oc-94"/>
  4371. </symbol>
  4372. <symbol id="sm-291">
  4373. <name>_speed1</name>
  4374. <value>0x96c0</value>
  4375. <object_component_ref idref="oc-94"/>
  4376. </symbol>
  4377. <symbol id="sm-292">
  4378. <name>_HallGpioBitC</name>
  4379. <value>0x9644</value>
  4380. <object_component_ref idref="oc-94"/>
  4381. </symbol>
  4382. <symbol id="sm-293">
  4383. <name>_HallGpioBitB</name>
  4384. <value>0x9643</value>
  4385. <object_component_ref idref="oc-94"/>
  4386. </symbol>
  4387. <symbol id="sm-294">
  4388. <name>_HallGpioBitA</name>
  4389. <value>0x9642</value>
  4390. <object_component_ref idref="oc-94"/>
  4391. </symbol>
  4392. <symbol id="sm-295">
  4393. <name>_IsrTicker</name>
  4394. <value>0x967c</value>
  4395. <object_component_ref idref="oc-94"/>
  4396. </symbol>
  4397. <symbol id="sm-296">
  4398. <name>_speed_cal</name>
  4399. <value>0x3e8c9e</value>
  4400. <object_component_ref idref="oc-12a"/>
  4401. </symbol>
  4402. <symbol id="sm-298">
  4403. <name>_ILoopFlag</name>
  4404. <value>0x964e</value>
  4405. <object_component_ref idref="oc-94"/>
  4406. </symbol>
  4407. <symbol id="sm-299">
  4408. <name>_HALL3_CREATE_MAP</name>
  4409. <value>0x3e8701</value>
  4410. <object_component_ref idref="oc-12a"/>
  4411. </symbol>
  4412. <symbol id="sm-29b">
  4413. <name>_t4</name>
  4414. <value>0x9647</value>
  4415. <object_component_ref idref="oc-94"/>
  4416. </symbol>
  4417. <symbol id="sm-29c">
  4418. <name>_DCbus_current</name>
  4419. <value>0x9670</value>
  4420. <object_component_ref idref="oc-94"/>
  4421. </symbol>
  4422. <symbol id="sm-29d">
  4423. <name>_HALL3_DETERMINE_STATE_MACRO</name>
  4424. <value>0x3e864f</value>
  4425. <object_component_ref idref="oc-12a"/>
  4426. </symbol>
  4427. <symbol id="sm-29f">
  4428. <name>_impl1</name>
  4429. <value>0x969c</value>
  4430. <object_component_ref idref="oc-94"/>
  4431. </symbol>
  4432. <symbol id="sm-2a0">
  4433. <name>_PreviousState</name>
  4434. <value>0x964c</value>
  4435. <object_component_ref idref="oc-94"/>
  4436. </symbol>
  4437. <symbol id="sm-2a1">
  4438. <name>_HALL3_NEXT_STATE_MACRO</name>
  4439. <value>0x3e86dd</value>
  4440. <object_component_ref idref="oc-12a"/>
  4441. </symbol>
  4442. <symbol id="sm-2a3">
  4443. <name>_mod1</name>
  4444. <value>0x9692</value>
  4445. <object_component_ref idref="oc-94"/>
  4446. </symbol>
  4447. <symbol id="sm-2a4">
  4448. <name>_Period</name>
  4449. <value>0x9640</value>
  4450. <object_component_ref idref="oc-94"/>
  4451. </symbol>
  4452. <symbol id="sm-2a5">
  4453. <name>_DFuncDesired</name>
  4454. <value>0x9650</value>
  4455. <object_component_ref idref="oc-94"/>
  4456. </symbol>
  4457. <symbol id="sm-2a6">
  4458. <name>_kscaler</name>
  4459. <value>0x9664</value>
  4460. <object_component_ref idref="oc-94"/>
  4461. </symbol>
  4462. <symbol id="sm-2a7">
  4463. <name>_pwm_limit_table1_NEG</name>
  4464. <value>0x97fa</value>
  4465. <object_component_ref idref="oc-13e"/>
  4466. </symbol>
  4467. <symbol id="sm-2a8">
  4468. <name>_HALL3_READ_MACRO</name>
  4469. <value>0x3e8676</value>
  4470. <object_component_ref idref="oc-12a"/>
  4471. </symbol>
  4472. <symbol id="sm-2aa">
  4473. <name>_pwm1</name>
  4474. <value>0x96a2</value>
  4475. <object_component_ref idref="oc-94"/>
  4476. </symbol>
  4477. <symbol id="sm-2ab">
  4478. <name>_DelayFlag</name>
  4479. <value>0x9653</value>
  4480. <object_component_ref idref="oc-94"/>
  4481. </symbol>
  4482. <symbol id="sm-2ac">
  4483. <name>_xint2_isr</name>
  4484. <value>0x3e9704</value>
  4485. <object_component_ref idref="oc-96"/>
  4486. </symbol>
  4487. <symbol id="sm-2ae">
  4488. <name>_CmtnPeriodSetpt</name>
  4489. <value>0x966c</value>
  4490. <object_component_ref idref="oc-94"/>
  4491. </symbol>
  4492. <symbol id="sm-2af">
  4493. <name>_ClosedFlag</name>
  4494. <value>0x964d</value>
  4495. <object_component_ref idref="oc-94"/>
  4496. </symbol>
  4497. <symbol id="sm-2b0">
  4498. <name>_TrigSel</name>
  4499. <value>0x9850</value>
  4500. <object_component_ref idref="oc-134"/>
  4501. </symbol>
  4502. <symbol id="sm-2b1">
  4503. <name>_RampDelay</name>
  4504. <value>0x966e</value>
  4505. <object_component_ref idref="oc-94"/>
  4506. </symbol>
  4507. <symbol id="sm-2b2">
  4508. <name>_OpenPwm</name>
  4509. <value>0x3e8ade</value>
  4510. <object_component_ref idref="oc-12a"/>
  4511. </symbol>
  4512. <symbol id="sm-2b4">
  4513. <name>_HallPointer</name>
  4514. <value>0x9646</value>
  4515. <object_component_ref idref="oc-94"/>
  4516. </symbol>
  4517. <symbol id="sm-2b5">
  4518. <name>_DfuncTesting</name>
  4519. <value>0x9651</value>
  4520. <object_component_ref idref="oc-94"/>
  4521. </symbol>
  4522. <symbol id="sm-2b6">
  4523. <name>_pwm_limit_table1</name>
  4524. <value>0x97f5</value>
  4525. <object_component_ref idref="oc-13c"/>
  4526. </symbol>
  4527. <symbol id="sm-2b7">
  4528. <name>_pwm_limit_table2</name>
  4529. <value>0x97c0</value>
  4530. <object_component_ref idref="oc-140"/>
  4531. </symbol>
  4532. <symbol id="sm-2b8">
  4533. <name>_hall1</name>
  4534. <value>0x96d2</value>
  4535. <object_component_ref idref="oc-94"/>
  4536. </symbol>
  4537. <symbol id="sm-2b9">
  4538. <name>_xint1_isr</name>
  4539. <value>0x3e977f</value>
  4540. <object_component_ref idref="oc-96"/>
  4541. </symbol>
  4542. <symbol id="sm-2bb">
  4543. <name>_Tmp</name>
  4544. <value>0x9660</value>
  4545. <object_component_ref idref="oc-94"/>
  4546. </symbol>
  4547. <symbol id="sm-2bc">
  4548. <name>_EPWM1TZint_isr</name>
  4549. <value>0x3e978c</value>
  4550. <object_component_ref idref="oc-96"/>
  4551. </symbol>
  4552. <symbol id="sm-2be">
  4553. <name>_ch3</name>
  4554. <value>0x9659</value>
  4555. <object_component_ref idref="oc-94"/>
  4556. </symbol>
  4557. <symbol id="sm-2bf">
  4558. <name>_ch2</name>
  4559. <value>0x9658</value>
  4560. <object_component_ref idref="oc-94"/>
  4561. </symbol>
  4562. <symbol id="sm-2c0">
  4563. <name>_ch1</name>
  4564. <value>0x9657</value>
  4565. <object_component_ref idref="oc-94"/>
  4566. </symbol>
  4567. <symbol id="sm-2c1">
  4568. <name>_BLDCPWM_INIT_MACRO</name>
  4569. <value>0x3e8090</value>
  4570. <object_component_ref idref="oc-12a"/>
  4571. </symbol>
  4572. <symbol id="sm-2c3">
  4573. <name>_taskfree</name>
  4574. <value>0x3e8df9</value>
  4575. <object_component_ref idref="oc-12a"/>
  4576. </symbol>
  4577. <symbol id="sm-2c5">
  4578. <name>_kb</name>
  4579. <value>0x967a</value>
  4580. <object_component_ref idref="oc-94"/>
  4581. </symbol>
  4582. <symbol id="sm-2c6">
  4583. <name>_pwmdac1</name>
  4584. <value>0x9696</value>
  4585. <object_component_ref idref="oc-94"/>
  4586. </symbol>
  4587. <symbol id="sm-2c7">
  4588. <name>_pwm_limit_table_neg</name>
  4589. <value>0x9800</value>
  4590. <object_component_ref idref="oc-142"/>
  4591. </symbol>
  4592. <symbol id="sm-2c8">
  4593. <name>_temp</name>
  4594. <value>0x9662</value>
  4595. <object_component_ref idref="oc-94"/>
  4596. </symbol>
  4597. <symbol id="sm-2c9">
  4598. <name>_bldcpwm_close</name>
  4599. <value>0x3e9003</value>
  4600. <object_component_ref idref="oc-12a"/>
  4601. </symbol>
  4602. <symbol id="sm-2cb">
  4603. <name>_ePWM</name>
  4604. <value>0x9860</value>
  4605. <object_component_ref idref="oc-128"/>
  4606. </symbol>
  4607. <symbol id="sm-2cc">
  4608. <name>_ServiceDog</name>
  4609. <value>0x3e8acc</value>
  4610. <object_component_ref idref="oc-12a"/>
  4611. </symbol>
  4612. <symbol id="sm-2ce">
  4613. <name>_MOD6CNT_MACRO</name>
  4614. <value>0x3e8081</value>
  4615. <object_component_ref idref="oc-12a"/>
  4616. </symbol>
  4617. <symbol id="sm-2d0">
  4618. <name>_pwmlimit_speed</name>
  4619. <value>0x3e8d17</value>
  4620. <object_component_ref idref="oc-12a"/>
  4621. </symbol>
  4622. <symbol id="sm-2d2">
  4623. <name>_ClosePwm</name>
  4624. <value>0x3e8af2</value>
  4625. <object_component_ref idref="oc-12a"/>
  4626. </symbol>
  4627. <symbol id="sm-2d4">
  4628. <name>_btable</name>
  4629. <value>0x9870</value>
  4630. <object_component_ref idref="oc-146"/>
  4631. </symbol>
  4632. <symbol id="sm-2d5">
  4633. <name>_BackTicker</name>
  4634. <value>0x964b</value>
  4635. <object_component_ref idref="oc-94"/>
  4636. </symbol>
  4637. <symbol id="sm-2d6">
  4638. <name>_ktable</name>
  4639. <value>0x9880</value>
  4640. <object_component_ref idref="oc-144"/>
  4641. </symbol>
  4642. <symbol id="sm-2d7">
  4643. <name>_hallCmtnTrig</name>
  4644. <value>0x9649</value>
  4645. <object_component_ref idref="oc-94"/>
  4646. </symbol>
  4647. <symbol id="sm-2d8">
  4648. <name>_rmp2</name>
  4649. <value>0x96aa</value>
  4650. <object_component_ref idref="oc-94"/>
  4651. </symbol>
  4652. <symbol id="sm-2d9">
  4653. <name>_rmp3</name>
  4654. <value>0x96b4</value>
  4655. <object_component_ref idref="oc-94"/>
  4656. </symbol>
  4657. <symbol id="sm-2da">
  4658. <name>_HALL3_INIT_MACRO</name>
  4659. <value>0x3e8632</value>
  4660. <object_component_ref idref="oc-12a"/>
  4661. </symbol>
  4662. <symbol id="sm-2dc">
  4663. <name>_EnableDog</name>
  4664. <value>0x3e8ad6</value>
  4665. <object_component_ref idref="oc-12a"/>
  4666. </symbol>
  4667. <symbol id="sm-2de">
  4668. <name>_AlignFlag</name>
  4669. <value>0x9654</value>
  4670. <object_component_ref idref="oc-94"/>
  4671. </symbol>
  4672. <symbol id="sm-2df">
  4673. <name>_eCAP</name>
  4674. <value>0x983a</value>
  4675. <object_component_ref idref="oc-127"/>
  4676. </symbol>
  4677. <symbol id="sm-2e0">
  4678. <name>_startuptimer</name>
  4679. <value>0x967e</value>
  4680. <object_component_ref idref="oc-94"/>
  4681. </symbol>
  4682. <symbol id="sm-2e1">
  4683. <name>_Speedgd</name>
  4684. <value>0x9672</value>
  4685. <object_component_ref idref="oc-94"/>
  4686. </symbol>
  4687. <symbol id="sm-2e2">
  4688. <name>_mainLoop</name>
  4689. <value>0x3e8ef3</value>
  4690. <object_component_ref idref="oc-12a"/>
  4691. </symbol>
  4692. <symbol id="sm-2e4">
  4693. <name>_eQEP</name>
  4694. <value>0x987c</value>
  4695. <object_component_ref idref="oc-129"/>
  4696. </symbol>
  4697. <symbol id="sm-2e5">
  4698. <name>_Delay30</name>
  4699. <value>0x9652</value>
  4700. <object_component_ref idref="oc-94"/>
  4701. </symbol>
  4702. <symbol id="sm-2e6">
  4703. <name>_speed_cal_filter</name>
  4704. <value>0x3e8b70</value>
  4705. <object_component_ref idref="oc-12a"/>
  4706. </symbol>
  4707. <symbol id="sm-2e8">
  4708. <name>_ChSel</name>
  4709. <value>0x9825</value>
  4710. <object_component_ref idref="oc-132"/>
  4711. </symbol>
  4712. <symbol id="sm-2e9">
  4713. <name>_LoopCount</name>
  4714. <value>0x9655</value>
  4715. <object_component_ref idref="oc-94"/>
  4716. </symbol>
  4717. <symbol id="sm-2ea">
  4718. <name>_MastIsrTimePercent</name>
  4719. <value>0x3e8ec5</value>
  4720. <object_component_ref idref="oc-12a"/>
  4721. </symbol>
  4722. <symbol id="sm-2ec">
  4723. <name>_HVDMC_Protection</name>
  4724. <value>0x3e8a90</value>
  4725. <object_component_ref idref="oc-12a"/>
  4726. </symbol>
  4727. <symbol id="sm-2ee">
  4728. <name>_SerialCommsTimer</name>
  4729. <value>0x964a</value>
  4730. <object_component_ref idref="oc-94"/>
  4731. </symbol>
  4732. <symbol id="sm-2ef">
  4733. <name>_VirtualTimer</name>
  4734. <value>0x9668</value>
  4735. <object_component_ref idref="oc-94"/>
  4736. </symbol>
  4737. <symbol id="sm-2f0">
  4738. <name>_i</name>
  4739. <value>0x9645</value>
  4740. <object_component_ref idref="oc-94"/>
  4741. </symbol>
  4742. <symbol id="sm-2f1">
  4743. <name>_T</name>
  4744. <value>0x9666</value>
  4745. <object_component_ref idref="oc-94"/>
  4746. </symbol>
  4747. <symbol id="sm-2f2">
  4748. <name>_RC3_MACRO</name>
  4749. <value>0x3e8042</value>
  4750. <object_component_ref idref="oc-12a"/>
  4751. </symbol>
  4752. <symbol id="sm-2f4">
  4753. <name>_TripFlagDMC</name>
  4754. <value>0x9656</value>
  4755. <object_component_ref idref="oc-94"/>
  4756. </symbol>
  4757. <symbol id="sm-326">
  4758. <name>_ECanMboxSend</name>
  4759. <value>0x3e9125</value>
  4760. <object_component_ref idref="oc-12f"/>
  4761. </symbol>
  4762. <symbol id="sm-328">
  4763. <name>_CanMaster</name>
  4764. <value>0x3e92ec</value>
  4765. <object_component_ref idref="oc-12f"/>
  4766. </symbol>
  4767. <symbol id="sm-32a">
  4768. <name>_CanVar</name>
  4769. <value>0x3e9022</value>
  4770. <object_component_ref idref="oc-12f"/>
  4771. </symbol>
  4772. <symbol id="sm-32c">
  4773. <name>_CanCurveData</name>
  4774. <value>0x400</value>
  4775. <object_component_ref idref="oc-9e"/>
  4776. </symbol>
  4777. <symbol id="sm-32d">
  4778. <name>_InitCan</name>
  4779. <value>0x3e9046</value>
  4780. <object_component_ref idref="oc-12f"/>
  4781. </symbol>
  4782. <symbol id="sm-32f">
  4783. <name>_UserCANprocess</name>
  4784. <value>0x3e92f1</value>
  4785. <object_component_ref idref="oc-12f"/>
  4786. </symbol>
  4787. <symbol id="sm-331">
  4788. <name>_CanMboxUserRegsR3</name>
  4789. <value>0x97ae</value>
  4790. <object_component_ref idref="oc-9d"/>
  4791. </symbol>
  4792. <symbol id="sm-332">
  4793. <name>_CanMboxUserRegsR2</name>
  4794. <value>0x97a4</value>
  4795. <object_component_ref idref="oc-9d"/>
  4796. </symbol>
  4797. <symbol id="sm-333">
  4798. <name>_CanMboxUserRegsR</name>
  4799. <value>0x979a</value>
  4800. <object_component_ref idref="oc-9d"/>
  4801. </symbol>
  4802. <symbol id="sm-334">
  4803. <name>_CanMboxUserRegsT</name>
  4804. <value>0x9786</value>
  4805. <object_component_ref idref="oc-9d"/>
  4806. </symbol>
  4807. <symbol id="sm-335">
  4808. <name>_CanMboxUserRegsT2</name>
  4809. <value>0x9790</value>
  4810. <object_component_ref idref="oc-9d"/>
  4811. </symbol>
  4812. <symbol id="sm-336">
  4813. <name>_DebugData1</name>
  4814. <value>0x3e928d</value>
  4815. <object_component_ref idref="oc-12f"/>
  4816. </symbol>
  4817. <symbol id="sm-338">
  4818. <name>_CanDebugFlag</name>
  4819. <value>0x9781</value>
  4820. <object_component_ref idref="oc-9d"/>
  4821. </symbol>
  4822. <symbol id="sm-339">
  4823. <name>_CanReceive</name>
  4824. <value>0x3e92bb</value>
  4825. <object_component_ref idref="oc-12f"/>
  4826. </symbol>
  4827. <symbol id="sm-33b">
  4828. <name>_CanCurveFlag</name>
  4829. <value>0x9780</value>
  4830. <object_component_ref idref="oc-9d"/>
  4831. </symbol>
  4832. <symbol id="sm-33c">
  4833. <name>_ECanMboxRead</name>
  4834. <value>0x3e916d</value>
  4835. <object_component_ref idref="oc-12f"/>
  4836. </symbol>
  4837. <symbol id="sm-33e">
  4838. <name>_CanDebugTx</name>
  4839. <value>0x3e91a4</value>
  4840. <object_component_ref idref="oc-12f"/>
  4841. </symbol>
  4842. <symbol id="sm-34b">
  4843. <name>_lowpassfilter</name>
  4844. <value>0x3e9a9b</value>
  4845. <object_component_ref idref="oc-139"/>
  4846. </symbol>
  4847. <symbol id="sm-381">
  4848. <name>_BemfC</name>
  4849. <value>0x9720</value>
  4850. <object_component_ref idref="oc-aa"/>
  4851. </symbol>
  4852. <symbol id="sm-382">
  4853. <name>_BemfB</name>
  4854. <value>0x971e</value>
  4855. <object_component_ref idref="oc-aa"/>
  4856. </symbol>
  4857. <symbol id="sm-383">
  4858. <name>_BemfA</name>
  4859. <value>0x971c</value>
  4860. <object_component_ref idref="oc-aa"/>
  4861. </symbol>
  4862. <symbol id="sm-384">
  4863. <name>_CurrentSet</name>
  4864. <value>0x972c</value>
  4865. <object_component_ref idref="oc-aa"/>
  4866. </symbol>
  4867. <symbol id="sm-385">
  4868. <name>_SpeedRef</name>
  4869. <value>0x971a</value>
  4870. <object_component_ref idref="oc-aa"/>
  4871. </symbol>
  4872. <symbol id="sm-386">
  4873. <name>_test2</name>
  4874. <value>0x9702</value>
  4875. <object_component_ref idref="oc-aa"/>
  4876. </symbol>
  4877. <symbol id="sm-387">
  4878. <name>_test3</name>
  4879. <value>0x9703</value>
  4880. <object_component_ref idref="oc-aa"/>
  4881. </symbol>
  4882. <symbol id="sm-388">
  4883. <name>_test4</name>
  4884. <value>0x9704</value>
  4885. <object_component_ref idref="oc-aa"/>
  4886. </symbol>
  4887. <symbol id="sm-389">
  4888. <name>_test5</name>
  4889. <value>0x9705</value>
  4890. <object_component_ref idref="oc-aa"/>
  4891. </symbol>
  4892. <symbol id="sm-38a">
  4893. <name>_test7</name>
  4894. <value>0x9706</value>
  4895. <object_component_ref idref="oc-aa"/>
  4896. </symbol>
  4897. <symbol id="sm-38b">
  4898. <name>_pid1_spd</name>
  4899. <value>0x9768</value>
  4900. <object_component_ref idref="oc-aa"/>
  4901. </symbol>
  4902. <symbol id="sm-38c">
  4903. <name>_Tmotor</name>
  4904. <value>0x9707</value>
  4905. <object_component_ref idref="oc-aa"/>
  4906. </symbol>
  4907. <symbol id="sm-38d">
  4908. <name>_OverMotorRpm</name>
  4909. <value>0x3e95b6</value>
  4910. <object_component_ref idref="oc-138"/>
  4911. </symbol>
  4912. <symbol id="sm-38f">
  4913. <name>_PwmSet</name>
  4914. <value>0x970a</value>
  4915. <object_component_ref idref="oc-aa"/>
  4916. </symbol>
  4917. <symbol id="sm-390">
  4918. <name>_XintTime</name>
  4919. <value>0x972e</value>
  4920. <object_component_ref idref="oc-aa"/>
  4921. </symbol>
  4922. <symbol id="sm-391">
  4923. <name>_InitVar</name>
  4924. <value>0x3e9500</value>
  4925. <object_component_ref idref="oc-138"/>
  4926. </symbol>
  4927. <symbol id="sm-393">
  4928. <name>_OverMotCtrTemp</name>
  4929. <value>0x3e95cc</value>
  4930. <object_component_ref idref="oc-138"/>
  4931. </symbol>
  4932. <symbol id="sm-395">
  4933. <name>_Fault_clear_fuc</name>
  4934. <value>0x3e95e3</value>
  4935. <object_component_ref idref="oc-138"/>
  4936. </symbol>
  4937. <symbol id="sm-397">
  4938. <name>_LimitMotCtrTemp</name>
  4939. <value>0x3e9628</value>
  4940. <object_component_ref idref="oc-138"/>
  4941. </symbol>
  4942. <symbol id="sm-399">
  4943. <name>_Fault_clear</name>
  4944. <value>0x970b</value>
  4945. <object_component_ref idref="oc-aa"/>
  4946. </symbol>
  4947. <symbol id="sm-39a">
  4948. <name>_SoftOverCurFlag</name>
  4949. <value>0x3e9582</value>
  4950. <object_component_ref idref="oc-138"/>
  4951. </symbol>
  4952. <symbol id="sm-39c">
  4953. <name>_IsrTime</name>
  4954. <value>0x9714</value>
  4955. <object_component_ref idref="oc-aa"/>
  4956. </symbol>
  4957. <symbol id="sm-39d">
  4958. <name>_test</name>
  4959. <value>0x9716</value>
  4960. <object_component_ref idref="oc-aa"/>
  4961. </symbol>
  4962. <symbol id="sm-39e">
  4963. <name>_pid1_idc</name>
  4964. <value>0x9750</value>
  4965. <object_component_ref idref="oc-aa"/>
  4966. </symbol>
  4967. <symbol id="sm-39f">
  4968. <name>_DC_current_real</name>
  4969. <value>0x9724</value>
  4970. <object_component_ref idref="oc-aa"/>
  4971. </symbol>
  4972. <symbol id="sm-3a0">
  4973. <name>_DCbus_voltage</name>
  4974. <value>0x9701</value>
  4975. <object_component_ref idref="oc-aa"/>
  4976. </symbol>
  4977. <symbol id="sm-3a1">
  4978. <name>_rc1</name>
  4979. <value>0x9740</value>
  4980. <object_component_ref idref="oc-aa"/>
  4981. </symbol>
  4982. <symbol id="sm-3a2">
  4983. <name>_FaultTreat</name>
  4984. <value>0x3e956d</value>
  4985. <object_component_ref idref="oc-138"/>
  4986. </symbol>
  4987. <symbol id="sm-3a4">
  4988. <name>_Tvot</name>
  4989. <value>0x9709</value>
  4990. <object_component_ref idref="oc-aa"/>
  4991. </symbol>
  4992. <symbol id="sm-3a5">
  4993. <name>_Enable_ALLOW</name>
  4994. <value>0x970d</value>
  4995. <object_component_ref idref="oc-aa"/>
  4996. </symbol>
  4997. <symbol id="sm-3a6">
  4998. <name>_Direction</name>
  4999. <value>0x9708</value>
  5000. <object_component_ref idref="oc-aa"/>
  5001. </symbol>
  5002. <symbol id="sm-3a7">
  5003. <name>_DC_current_filter_avr</name>
  5004. <value>0x972a</value>
  5005. <object_component_ref idref="oc-aa"/>
  5006. </symbol>
  5007. <symbol id="sm-3a8">
  5008. <name>_EnableFlag</name>
  5009. <value>0x970c</value>
  5010. <object_component_ref idref="oc-aa"/>
  5011. </symbol>
  5012. <symbol id="sm-3a9">
  5013. <name>_OverVoltage</name>
  5014. <value>0x3e9598</value>
  5015. <object_component_ref idref="oc-138"/>
  5016. </symbol>
  5017. <symbol id="sm-3ab">
  5018. <name>_DC_current_avr</name>
  5019. <value>0x9728</value>
  5020. <object_component_ref idref="oc-aa"/>
  5021. </symbol>
  5022. <symbol id="sm-3ac">
  5023. <name>_Iphase</name>
  5024. <value>0x9722</value>
  5025. <object_component_ref idref="oc-aa"/>
  5026. </symbol>
  5027. <symbol id="sm-3ad">
  5028. <name>_FaultFlag</name>
  5029. <value>0x9700</value>
  5030. <object_component_ref idref="oc-aa"/>
  5031. </symbol>
  5032. <symbol id="sm-3ae">
  5033. <name>_DC_current_filer</name>
  5034. <value>0x9726</value>
  5035. <object_component_ref idref="oc-aa"/>
  5036. </symbol>
  5037. <symbol id="sm-3af">
  5038. <name>_pwmlimit</name>
  5039. <value>0x9718</value>
  5040. <object_component_ref idref="oc-aa"/>
  5041. </symbol>
  5042. <symbol id="sm-3bf">
  5043. <name>code_start</name>
  5044. <value>0x3f7ff6</value>
  5045. <object_component_ref idref="oc-b1"/>
  5046. </symbol>
  5047. <symbol id="sm-3cd">
  5048. <name>_InitECan</name>
  5049. <value>0x3e9665</value>
  5050. <object_component_ref idref="oc-14b"/>
  5051. </symbol>
  5052. <symbol id="sm-3cf">
  5053. <name>_InitECanGpio</name>
  5054. <value>0x3e96eb</value>
  5055. <object_component_ref idref="oc-14b"/>
  5056. </symbol>
  5057. <symbol id="sm-3d1">
  5058. <name>_InitECanaGpio</name>
  5059. <value>0x3e96ee</value>
  5060. <object_component_ref idref="oc-14b"/>
  5061. </symbol>
  5062. <symbol id="sm-3d3">
  5063. <name>_InitECana</name>
  5064. <value>0x3e9668</value>
  5065. <object_component_ref idref="oc-14b"/>
  5066. </symbol>
  5067. <symbol id="sm-3e0">
  5068. <name>_PI_MACRO</name>
  5069. <value>0x3e979b</value>
  5070. <object_component_ref idref="oc-148"/>
  5071. </symbol>
  5072. <symbol id="sm-3e2">
  5073. <name>_SetPI</name>
  5074. <value>0x3e9813</value>
  5075. <object_component_ref idref="oc-148"/>
  5076. </symbol>
  5077. <symbol id="sm-3e4">
  5078. <name>_resetPI</name>
  5079. <value>0x3e9803</value>
  5080. <object_component_ref idref="oc-148"/>
  5081. </symbol>
  5082. <symbol id="sm-3fe">
  5083. <name>_StatorRpmSum</name>
  5084. <value>0x988e</value>
  5085. <object_component_ref idref="oc-c7"/>
  5086. </symbol>
  5087. <symbol id="sm-409">
  5088. <name>__IQ12div</name>
  5089. <value>0x3e9f41</value>
  5090. <object_component_ref idref="oc-cc"/>
  5091. </symbol>
  5092. <symbol id="sm-414">
  5093. <name>__IQ24div</name>
  5094. <value>0x3e9f88</value>
  5095. <object_component_ref idref="oc-cd"/>
  5096. </symbol>
  5097. <symbol id="sm-418">
  5098. <name>_IQ16mpyRndSatTable</name>
  5099. <value>0x3fea90</value>
  5100. <object_component_ref idref="oc-ce"/>
  5101. </symbol>
  5102. <symbol id="sm-419">
  5103. <name>_IQ24mpyRndSatTable</name>
  5104. <value>0x3fea30</value>
  5105. <object_component_ref idref="oc-ce"/>
  5106. </symbol>
  5107. <symbol id="sm-41a">
  5108. <name>_IQ13mpyRndSatTable</name>
  5109. <value>0x3feab4</value>
  5110. <object_component_ref idref="oc-ce"/>
  5111. </symbol>
  5112. <symbol id="sm-41b">
  5113. <name>_IQ21mpyRndSatTable</name>
  5114. <value>0x3fea54</value>
  5115. <object_component_ref idref="oc-ce"/>
  5116. </symbol>
  5117. <symbol id="sm-41c">
  5118. <name>_IQ10mpyRndSatTable</name>
  5119. <value>0x3fead8</value>
  5120. <object_component_ref idref="oc-ce"/>
  5121. </symbol>
  5122. <symbol id="sm-41d">
  5123. <name>_IQdivTable</name>
  5124. <value>0x3fe510</value>
  5125. <object_component_ref idref="oc-ce"/>
  5126. </symbol>
  5127. <symbol id="sm-41e">
  5128. <name>_IQ9mpyRndSatTable</name>
  5129. <value>0x3feae4</value>
  5130. <object_component_ref idref="oc-ce"/>
  5131. </symbol>
  5132. <symbol id="sm-41f">
  5133. <name>_IQ6mpyRndSatTable</name>
  5134. <value>0x3feb08</value>
  5135. <object_component_ref idref="oc-ce"/>
  5136. </symbol>
  5137. <symbol id="sm-420">
  5138. <name>_IQatan2TableEnd</name>
  5139. <value>0x3fe9e8</value>
  5140. <object_component_ref idref="oc-ce"/>
  5141. </symbol>
  5142. <symbol id="sm-421">
  5143. <name>_IQdivTableEnd</name>
  5144. <value>0x3fe712</value>
  5145. <object_component_ref idref="oc-ce"/>
  5146. </symbol>
  5147. <symbol id="sm-422">
  5148. <name>_IQ29mpyRndSatTable</name>
  5149. <value>0x3fe9f4</value>
  5150. <object_component_ref idref="oc-ce"/>
  5151. </symbol>
  5152. <symbol id="sm-423">
  5153. <name>_IQ3mpyRndSatTable</name>
  5154. <value>0x3feb2c</value>
  5155. <object_component_ref idref="oc-ce"/>
  5156. </symbol>
  5157. <symbol id="sm-424">
  5158. <name>_IQ18mpyRndSatTable</name>
  5159. <value>0x3fea78</value>
  5160. <object_component_ref idref="oc-ce"/>
  5161. </symbol>
  5162. <symbol id="sm-425">
  5163. <name>_IQ26mpyRndSatTable</name>
  5164. <value>0x3fea18</value>
  5165. <object_component_ref idref="oc-ce"/>
  5166. </symbol>
  5167. <symbol id="sm-426">
  5168. <name>_IQcosTableEnd</name>
  5169. <value>0x3fe502</value>
  5170. <object_component_ref idref="oc-ce"/>
  5171. </symbol>
  5172. <symbol id="sm-427">
  5173. <name>_IQsinTableEnd</name>
  5174. <value>0x3fe400</value>
  5175. <object_component_ref idref="oc-ce"/>
  5176. </symbol>
  5177. <symbol id="sm-428">
  5178. <name>_IQ15mpyRndSatTable</name>
  5179. <value>0x3fea9c</value>
  5180. <object_component_ref idref="oc-ce"/>
  5181. </symbol>
  5182. <symbol id="sm-429">
  5183. <name>_IQ23mpyRndSatTable</name>
  5184. <value>0x3fea3c</value>
  5185. <object_component_ref idref="oc-ce"/>
  5186. </symbol>
  5187. <symbol id="sm-42a">
  5188. <name>_IQ12mpyRndSatTable</name>
  5189. <value>0x3feac0</value>
  5190. <object_component_ref idref="oc-ce"/>
  5191. </symbol>
  5192. <symbol id="sm-42b">
  5193. <name>_IQ20mpyRndSatTable</name>
  5194. <value>0x3fea60</value>
  5195. <object_component_ref idref="oc-ce"/>
  5196. </symbol>
  5197. <symbol id="sm-42c">
  5198. <name>_IQisqrtTableEnd</name>
  5199. <value>0x3fe824</value>
  5200. <object_component_ref idref="oc-ce"/>
  5201. </symbol>
  5202. <symbol id="sm-42d">
  5203. <name>_IQ8mpyRndSatTable</name>
  5204. <value>0x3feaf0</value>
  5205. <object_component_ref idref="oc-ce"/>
  5206. </symbol>
  5207. <symbol id="sm-42e">
  5208. <name>_IQisqrtRoundSatTable</name>
  5209. <value>0x3fe712</value>
  5210. <object_component_ref idref="oc-ce"/>
  5211. </symbol>
  5212. <symbol id="sm-42f">
  5213. <name>_IQ5mpyRndSatTable</name>
  5214. <value>0x3feb14</value>
  5215. <object_component_ref idref="oc-ce"/>
  5216. </symbol>
  5217. <symbol id="sm-430">
  5218. <name>_IQmpyRndSatTable</name>
  5219. <value>0x3fe9e8</value>
  5220. <object_component_ref idref="oc-ce"/>
  5221. </symbol>
  5222. <symbol id="sm-431">
  5223. <name>_IQ28mpyRndSatTable</name>
  5224. <value>0x3fea00</value>
  5225. <object_component_ref idref="oc-ce"/>
  5226. </symbol>
  5227. <symbol id="sm-432">
  5228. <name>_IQatan2Table</name>
  5229. <value>0x3fe862</value>
  5230. <object_component_ref idref="oc-ce"/>
  5231. </symbol>
  5232. <symbol id="sm-433">
  5233. <name>_IQ2mpyRndSatTable</name>
  5234. <value>0x3feb38</value>
  5235. <object_component_ref idref="oc-ce"/>
  5236. </symbol>
  5237. <symbol id="sm-434">
  5238. <name>_IQatan2HalfPITable</name>
  5239. <value>0x3fe824</value>
  5240. <object_component_ref idref="oc-ce"/>
  5241. </symbol>
  5242. <symbol id="sm-435">
  5243. <name>_IQ17mpyRndSatTable</name>
  5244. <value>0x3fea84</value>
  5245. <object_component_ref idref="oc-ce"/>
  5246. </symbol>
  5247. <symbol id="sm-436">
  5248. <name>_IQ25mpyRndSatTable</name>
  5249. <value>0x3fea24</value>
  5250. <object_component_ref idref="oc-ce"/>
  5251. </symbol>
  5252. <symbol id="sm-437">
  5253. <name>_IQsqrtTable</name>
  5254. <value>0x3fe722</value>
  5255. <object_component_ref idref="oc-ce"/>
  5256. </symbol>
  5257. <symbol id="sm-438">
  5258. <name>_IQsqrtTableEnd</name>
  5259. <value>0x3fe824</value>
  5260. <object_component_ref idref="oc-ce"/>
  5261. </symbol>
  5262. <symbol id="sm-439">
  5263. <name>_IQ14mpyRndSatTable</name>
  5264. <value>0x3feaa8</value>
  5265. <object_component_ref idref="oc-ce"/>
  5266. </symbol>
  5267. <symbol id="sm-43a">
  5268. <name>_IQ22mpyRndSatTable</name>
  5269. <value>0x3fea48</value>
  5270. <object_component_ref idref="oc-ce"/>
  5271. </symbol>
  5272. <symbol id="sm-43b">
  5273. <name>_IQ30mpyRndSatTable</name>
  5274. <value>0x3fe9e8</value>
  5275. <object_component_ref idref="oc-ce"/>
  5276. </symbol>
  5277. <symbol id="sm-43c">
  5278. <name>_IQsqrtRoundSatTable</name>
  5279. <value>0x3fe712</value>
  5280. <object_component_ref idref="oc-ce"/>
  5281. </symbol>
  5282. <symbol id="sm-43d">
  5283. <name>_IQ11mpyRndSatTable</name>
  5284. <value>0x3feacc</value>
  5285. <object_component_ref idref="oc-ce"/>
  5286. </symbol>
  5287. <symbol id="sm-43e">
  5288. <name>_IQdivRoundSatTable</name>
  5289. <value>0x3fe502</value>
  5290. <object_component_ref idref="oc-ce"/>
  5291. </symbol>
  5292. <symbol id="sm-43f">
  5293. <name>_IQ7mpyRndSatTable</name>
  5294. <value>0x3feafc</value>
  5295. <object_component_ref idref="oc-ce"/>
  5296. </symbol>
  5297. <symbol id="sm-440">
  5298. <name>_IQcosTable</name>
  5299. <value>0x3fe100</value>
  5300. <object_component_ref idref="oc-ce"/>
  5301. </symbol>
  5302. <symbol id="sm-441">
  5303. <name>_IQisqrtTable</name>
  5304. <value>0x3fe722</value>
  5305. <object_component_ref idref="oc-ce"/>
  5306. </symbol>
  5307. <symbol id="sm-442">
  5308. <name>_IQ4mpyRndSatTable</name>
  5309. <value>0x3feb20</value>
  5310. <object_component_ref idref="oc-ce"/>
  5311. </symbol>
  5312. <symbol id="sm-443">
  5313. <name>_IQ19mpyRndSatTable</name>
  5314. <value>0x3fea6c</value>
  5315. <object_component_ref idref="oc-ce"/>
  5316. </symbol>
  5317. <symbol id="sm-444">
  5318. <name>_IQ27mpyRndSatTable</name>
  5319. <value>0x3fea0c</value>
  5320. <object_component_ref idref="oc-ce"/>
  5321. </symbol>
  5322. <symbol id="sm-445">
  5323. <name>_IQmpyRndSatTableEnd</name>
  5324. <value>0x3feb50</value>
  5325. <object_component_ref idref="oc-ce"/>
  5326. </symbol>
  5327. <symbol id="sm-446">
  5328. <name>_IQ1mpyRndSatTable</name>
  5329. <value>0x3feb44</value>
  5330. <object_component_ref idref="oc-ce"/>
  5331. </symbol>
  5332. <symbol id="sm-447">
  5333. <name>_IQsinTable</name>
  5334. <value>0x3fe000</value>
  5335. <object_component_ref idref="oc-ce"/>
  5336. </symbol>
  5337. <symbol id="sm-462">
  5338. <name>_c_int00</name>
  5339. <value>0x3e99fc</value>
  5340. <object_component_ref idref="oc-48"/>
  5341. </symbol>
  5342. <symbol id="sm-463">
  5343. <name>__stack</name>
  5344. <value>0x50</value>
  5345. <object_component_ref idref="oc-cf"/>
  5346. </symbol>
  5347. <symbol id="sm-475">
  5348. <name>FD$$MPY</name>
  5349. <value>0x3e982a</value>
  5350. <object_component_ref idref="oc-d5"/>
  5351. </symbol>
  5352. <symbol id="sm-484">
  5353. <name>FD$$TOL</name>
  5354. <value>0x3e9b68</value>
  5355. <object_component_ref idref="oc-da"/>
  5356. </symbol>
  5357. <symbol id="sm-495">
  5358. <name>FS$$DIV</name>
  5359. <value>0x3e98ad</value>
  5360. <object_component_ref idref="oc-df"/>
  5361. </symbol>
  5362. <symbol id="sm-4a6">
  5363. <name>FS$$MPY</name>
  5364. <value>0x3e99a2</value>
  5365. <object_component_ref idref="oc-e4"/>
  5366. </symbol>
  5367. <symbol id="sm-4b9">
  5368. <name>FS$$TOL</name>
  5369. <value>0x3e9b1b</value>
  5370. <object_component_ref idref="oc-e9"/>
  5371. </symbol>
  5372. <symbol id="sm-4c8">
  5373. <name>L$$TOFS</name>
  5374. <value>0x3e9bc0</value>
  5375. <object_component_ref idref="oc-ee"/>
  5376. </symbol>
  5377. <symbol id="sm-4d4">
  5378. <name>UL$$MOD</name>
  5379. <value>0x3e9aec</value>
  5380. <object_component_ref idref="oc-f3"/>
  5381. </symbol>
  5382. <symbol id="sm-4d5">
  5383. <name>L$$MOD</name>
  5384. <value>0x3e9ad7</value>
  5385. <object_component_ref idref="oc-f3"/>
  5386. </symbol>
  5387. <symbol id="sm-4d6">
  5388. <name>L$$DIV</name>
  5389. <value>0x3e9ac8</value>
  5390. <object_component_ref idref="oc-f3"/>
  5391. </symbol>
  5392. <symbol id="sm-4d7">
  5393. <name>UL$$DIV</name>
  5394. <value>0x3e9ae5</value>
  5395. <object_component_ref idref="oc-f3"/>
  5396. </symbol>
  5397. <symbol id="sm-4e7">
  5398. <name>FS$$TOFD</name>
  5399. <value>0x3e9ba4</value>
  5400. <object_component_ref idref="oc-f8"/>
  5401. </symbol>
  5402. <symbol id="sm-4f6">
  5403. <name>_copy_in</name>
  5404. <value>0x3e9b44</value>
  5405. <object_component_ref idref="oc-123"/>
  5406. </symbol>
  5407. <symbol id="sm-508">
  5408. <name>_memcpy</name>
  5409. <value>0x3e9b87</value>
  5410. <object_component_ref idref="oc-12b"/>
  5411. </symbol>
  5412. <symbol id="sm-515">
  5413. <name>__system_pre_init</name>
  5414. <value>0x3e9c01</value>
  5415. <object_component_ref idref="oc-122"/>
  5416. </symbol>
  5417. <symbol id="sm-523">
  5418. <name>__system_post_cinit</name>
  5419. <value>0x3e9c03</value>
  5420. <object_component_ref idref="oc-124"/>
  5421. </symbol>
  5422. <symbol id="sm-538">
  5423. <name>C$$EXIT</name>
  5424. <value>0x3e9af2</value>
  5425. <object_component_ref idref="oc-126"/>
  5426. </symbol>
  5427. <symbol id="sm-539">
  5428. <name>_exit</name>
  5429. <value>0x3e9af4</value>
  5430. <object_component_ref idref="oc-126"/>
  5431. </symbol>
  5432. <symbol id="sm-53b">
  5433. <name>___TI_cleanup_ptr</name>
  5434. <value>0x97ba</value>
  5435. <object_component_ref idref="oc-113"/>
  5436. </symbol>
  5437. <symbol id="sm-53c">
  5438. <name>___TI_enable_exit_profile_output</name>
  5439. <value>0x97b8</value>
  5440. <object_component_ref idref="oc-113"/>
  5441. </symbol>
  5442. <symbol id="sm-53d">
  5443. <name>_abort</name>
  5444. <value>0x3e9af2</value>
  5445. <object_component_ref idref="oc-126"/>
  5446. </symbol>
  5447. <symbol id="sm-53f">
  5448. <name>___TI_dtors_ptr</name>
  5449. <value>0x97bc</value>
  5450. <object_component_ref idref="oc-113"/>
  5451. </symbol>
  5452. <symbol id="sm-553">
  5453. <name>__unlock</name>
  5454. <value>0x97be</value>
  5455. <object_component_ref idref="oc-14e"/>
  5456. </symbol>
  5457. <symbol id="sm-554">
  5458. <name>__lock</name>
  5459. <value>0x96fe</value>
  5460. <object_component_ref idref="oc-12c"/>
  5461. </symbol>
  5462. <symbol id="sm-555">
  5463. <name>__register_lock</name>
  5464. <value>0x3e9bef</value>
  5465. <object_component_ref idref="oc-149"/>
  5466. </symbol>
  5467. <symbol id="sm-557">
  5468. <name>__nop</name>
  5469. <value>0x3e9bf3</value>
  5470. <object_component_ref idref="oc-149"/>
  5471. </symbol>
  5472. <symbol id="sm-559">
  5473. <name>__register_unlock</name>
  5474. <value>0x3e9beb</value>
  5475. <object_component_ref idref="oc-149"/>
  5476. </symbol>
  5477. <symbol id="sm-569">
  5478. <name>__args_main</name>
  5479. <value>0x3e9bda</value>
  5480. <object_component_ref idref="oc-125"/>
  5481. </symbol>
  5482. </symbol_table>
  5483. <title>Link successful</title>
  5484. </link_info>