mainboard.map 417 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671
  1. Archive member included to satisfy reference by file (symbol)
  2. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  3. ./components/tools/tools.o (log)
  4. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  5. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__ieee754_log)
  6. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_lib_ver.o)
  7. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__fdlib_version)
  8. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
  9. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (matherr)
  10. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  11. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (nan)
  12. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  13. ./components/action/ble_action.o (get_gb_token)
  14. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  15. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (base64_encode)
  16. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  17. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (set_production_lic_key)
  18. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  19. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (__umoddi3)
  20. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
  21. ./components/tools/my_math.o (__adddf3)
  22. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  23. ./components/tools/my_math.o (__divdf3)
  24. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  25. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__eqdf2)
  26. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
  27. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__gtdf2)
  28. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  29. ./components/tools/my_math.o (__muldf3)
  30. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
  31. ./components/tools/my_math.o (__subdf3)
  32. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
  33. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__unorddf2)
  34. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  35. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o) (__floatsidf)
  36. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  37. ./components/tools/_string.o (__addsf3)
  38. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  39. ./components/tools/_string.o (__divsf3)
  40. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  41. ./components/tools/my_math.o (__ltsf2)
  42. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  43. ./components/tools/_string.o (__mulsf3)
  44. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  45. ./components/tools/_string.o (__subsf3)
  46. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
  47. ./components/charge/user_adc.o (__fixsfsi)
  48. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
  49. ./components/tools/my_math.o (__floatsisf)
  50. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsisf.o)
  51. ./components/tools/_string.o (__floatunsisf)
  52. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  53. ./components/tools/tools.o (__extendsfdf2)
  54. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  55. ./components/tools/tools.o (__truncdfsf2)
  56. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  57. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o) (__clz_tab)
  58. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  59. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o) (__clzsi2)
  60. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
  61. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__errno)
  62. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  63. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o) (_impure_ptr)
  64. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
  65. ./components/ws2812b/user_ws2812b.o (malloc)
  66. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  67. ./components/tools/AES_PKCS7.o (memcpy)
  68. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
  69. ./components/ws2812b/user_ws2812b.o (memset)
  70. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  71. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o) (_free_r)
  72. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  73. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o) (_malloc_r)
  74. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  75. (_printf_float)
  76. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  77. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o) (_printf_common)
  78. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
  79. (_scanf_float)
  80. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  81. ./components/ws2812b/user_ws2812b.o (printf)
  82. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  83. ./components/nfc/user_nfc.o (puts)
  84. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o)
  85. ./components/tools/_string.o (realloc)
  86. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  87. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o) (_sbrk_r)
  88. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  89. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o) (nanf)
  90. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  91. ./components/tools/_string.o (sprintf)
  92. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  93. ./components/action/ble_action.o (sscanf)
  94. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  95. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o) (__seofread)
  96. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  97. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o) (strlen)
  98. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  99. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o) (_strtod_r)
  100. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  101. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o) (_strtol_r)
  102. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  103. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o) (__swbuf_r)
  104. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
  105. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_write_r)
  106. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
  107. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o) (__swsetup_r)
  108. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
  109. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_close_r)
  110. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  111. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o) (_dtoa_r)
  112. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  113. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o) (_fflush_r)
  114. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  115. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o) (__sinit)
  116. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  117. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o) (_fwalk)
  118. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  119. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (__gethex)
  120. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  121. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (__match)
  122. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  123. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o) (__locale_ctype_ptr_l)
  124. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  125. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (__localeconv_l)
  126. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
  127. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_lseek_r)
  128. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  129. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o) (__smakebuf_r)
  130. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
  131. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o) (__ascii_mbtowc)
  132. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  133. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o) (memchr)
  134. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  135. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o) (__malloc_lock)
  136. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  137. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (_Balloc)
  138. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  139. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o) (_calloc_r)
  140. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  141. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o) (_realloc_r)
  142. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  143. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o) (_svfprintf_r)
  144. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  145. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o) (__ssvfscanf_r)
  146. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  147. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o) (_vfprintf_r)
  148. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  149. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o) (_scanf_chars)
  150. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
  151. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_read_r)
  152. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  153. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o) (errno)
  154. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
  155. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o) (__sccl)
  156. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strcmp.o)
  157. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o) (strcmp)
  158. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
  159. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (strncmp)
  160. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  161. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o) (_strtoul_r)
  162. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  163. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o) (__submore)
  164. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
  165. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o) (__ascii_wctomb)
  166. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ctype_.o)
  167. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o) (_ctype_)
  168. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
  169. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o) (_fstat_r)
  170. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
  171. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o) (__sfvwrite_r)
  172. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
  173. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o) (_isatty_r)
  174. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
  175. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o) (memmove)
  176. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
  177. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o) (_malloc_usable_size_r)
  178. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
  179. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o) (__ledf2)
  180. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
  181. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (__fixdfsi)
  182. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  183. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (__fixunsdfsi)
  184. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  185. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (__floatunsidf)
  186. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  187. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o) (__unordsf2)
  188. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
  189. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o) (__extenddftf2)
  190. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
  191. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o) (__trunctfdf2)
  192. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  193. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o) (_close)
  194. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  195. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o) (_fstat)
  196. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  197. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o) (_isatty)
  198. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  199. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o) (_lseek)
  200. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  201. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o) (_read)
  202. Allocating common symbols
  203. Common symbol size file
  204. errno 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  205. Discarded input sections
  206. .text 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  207. .data 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  208. .bss 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  209. .text 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
  210. .data 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
  211. .bss 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
  212. .text 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  213. .data 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  214. .bss 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  215. .text 0x0000000000000000 0x0 ./components/tools/_string.o
  216. .data 0x0000000000000000 0x0 ./components/tools/_string.o
  217. .bss 0x0000000000000000 0x0 ./components/tools/_string.o
  218. .text.check_number_start
  219. 0x0000000000000000 0x24 ./components/tools/_string.o
  220. .text._strcpynum
  221. 0x0000000000000000 0x1a ./components/tools/_string.o
  222. .text._strcopy
  223. 0x0000000000000000 0x1e ./components/tools/_string.o
  224. .text._strcat 0x0000000000000000 0x4e ./components/tools/_string.o
  225. .text._strcatint
  226. 0x0000000000000000 0x64 ./components/tools/_string.o
  227. .text._strfindnum
  228. 0x0000000000000000 0x22 ./components/tools/_string.o
  229. .text._strfind
  230. 0x0000000000000000 0x1a ./components/tools/_string.o
  231. .text._strfindchar
  232. 0x0000000000000000 0x4c ./components/tools/_string.o
  233. .text._strcount
  234. 0x0000000000000000 0x24 ./components/tools/_string.o
  235. .text._strCompare
  236. 0x0000000000000000 0x22 ./components/tools/_string.o
  237. .text._get_Hex
  238. 0x0000000000000000 0x40 ./components/tools/_string.o
  239. .text._get_HexChar
  240. 0x0000000000000000 0x22 ./components/tools/_string.o
  241. .text._HexToStr
  242. 0x0000000000000000 0x6e ./components/tools/_string.o
  243. .text.getIndexOfSigns
  244. 0x0000000000000000 0x42 ./components/tools/_string.o
  245. .text._get_HexToDec
  246. 0x0000000000000000 0x38 ./components/tools/_string.o
  247. .text.check_no_number
  248. 0x0000000000000000 0x1e ./components/tools/_string.o
  249. .text.check_is_number
  250. 0x0000000000000000 0x1e ./components/tools/_string.o
  251. .text._my_atof
  252. 0x0000000000000000 0x144 ./components/tools/_string.o
  253. .text._my_atoi
  254. 0x0000000000000000 0x76 ./components/tools/_string.o
  255. .text._my_atou32
  256. 0x0000000000000000 0x58 ./components/tools/_string.o
  257. .rodata.CSWTCH.34
  258. 0x0000000000000000 0xf ./components/tools/_string.o
  259. .rodata._my_atof.cst4
  260. 0x0000000000000000 0x4 ./components/tools/_string.o
  261. .rodata._strcatint.str1.4
  262. 0x0000000000000000 0x3 ./components/tools/_string.o
  263. .text 0x0000000000000000 0x0 ./components/tools/my_math.o
  264. .data 0x0000000000000000 0x0 ./components/tools/my_math.o
  265. .bss 0x0000000000000000 0x0 ./components/tools/my_math.o
  266. .text.sqrt_u16
  267. 0x0000000000000000 0x2c ./components/tools/my_math.o
  268. .text.sqrt_u32
  269. 0x0000000000000000 0xa6 ./components/tools/my_math.o
  270. .text.No_MaxMin_Average_short
  271. 0x0000000000000000 0x60 ./components/tools/my_math.o
  272. .text.Average_short
  273. 0x0000000000000000 0x2e ./components/tools/my_math.o
  274. .text.Average_float
  275. 0x0000000000000000 0x54 ./components/tools/my_math.o
  276. .text.get_MaxMinValue
  277. 0x0000000000000000 0x40 ./components/tools/my_math.o
  278. .text.get_MaxFloatArray
  279. 0x0000000000000000 0x56 ./components/tools/my_math.o
  280. .text.get_float_Variance_Sum
  281. 0x0000000000000000 0x96 ./components/tools/my_math.o
  282. .text.get_float_abs
  283. 0x0000000000000000 0x32 ./components/tools/my_math.o
  284. .text.simpson 0x0000000000000000 0xd6 ./components/tools/my_math.o
  285. .text.Integral
  286. 0x0000000000000000 0xbe ./components/tools/my_math.o
  287. .text.get_int_Variance_Sum
  288. 0x0000000000000000 0x3a ./components/tools/my_math.o
  289. .text.get_ushort_Variance_Sum
  290. 0x0000000000000000 0x3a ./components/tools/my_math.o
  291. .text.Base62_convertToDec
  292. 0x0000000000000000 0x42 ./components/tools/my_math.o
  293. .text.Base62_convertFromDec
  294. 0x0000000000000000 0x30 ./components/tools/my_math.o
  295. .rodata.Average_float.cst4
  296. 0x0000000000000000 0x4 ./components/tools/my_math.o
  297. .rodata.simpson.cst8
  298. 0x0000000000000000 0x18 ./components/tools/my_math.o
  299. .debug_info 0x0000000000000000 0x10ac ./components/tools/my_math.o
  300. .debug_abbrev 0x0000000000000000 0x324 ./components/tools/my_math.o
  301. .debug_loc 0x0000000000000000 0xda0 ./components/tools/my_math.o
  302. .debug_aranges
  303. 0x0000000000000000 0x90 ./components/tools/my_math.o
  304. .debug_ranges 0x0000000000000000 0x1b8 ./components/tools/my_math.o
  305. .debug_line 0x0000000000000000 0x11d1 ./components/tools/my_math.o
  306. .debug_str 0x0000000000000000 0x7c8 ./components/tools/my_math.o
  307. .comment 0x0000000000000000 0x34 ./components/tools/my_math.o
  308. .debug_frame 0x0000000000000000 0x1d8 ./components/tools/my_math.o
  309. .text 0x0000000000000000 0x0 ./components/tools/tools.o
  310. .data 0x0000000000000000 0x0 ./components/tools/tools.o
  311. .bss 0x0000000000000000 0x0 ./components/tools/tools.o
  312. .text.ntc_data
  313. 0x0000000000000000 0x100 ./components/tools/tools.o
  314. .text.xor_data
  315. 0x0000000000000000 0x18 ./components/tools/tools.o
  316. .rodata.ntc_data.cst4
  317. 0x0000000000000000 0x4 ./components/tools/tools.o
  318. .rodata.ntc_data.cst8
  319. 0x0000000000000000 0x38 ./components/tools/tools.o
  320. .text 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  321. .data 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  322. .bss 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  323. .text.GetCRC16
  324. 0x0000000000000000 0x44 ./components/tools/user_crc16.o
  325. .data.auchCRCHi
  326. 0x0000000000000000 0x100 ./components/tools/user_crc16.o
  327. .data.auchCRCLo
  328. 0x0000000000000000 0x100 ./components/tools/user_crc16.o
  329. .debug_info 0x0000000000000000 0xa90 ./components/tools/user_crc16.o
  330. .debug_abbrev 0x0000000000000000 0x21b ./components/tools/user_crc16.o
  331. .debug_loc 0x0000000000000000 0xbb ./components/tools/user_crc16.o
  332. .debug_aranges
  333. 0x0000000000000000 0x20 ./components/tools/user_crc16.o
  334. .debug_ranges 0x0000000000000000 0x10 ./components/tools/user_crc16.o
  335. .debug_line 0x0000000000000000 0x4f5 ./components/tools/user_crc16.o
  336. .debug_str 0x0000000000000000 0x682 ./components/tools/user_crc16.o
  337. .comment 0x0000000000000000 0x34 ./components/tools/user_crc16.o
  338. .debug_frame 0x0000000000000000 0x20 ./components/tools/user_crc16.o
  339. .text 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  340. .data 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  341. .bss 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  342. .text.GetReg 0x0000000000000000 0x18 ./components/nfc/fm175xx.o
  343. .text.Read_Reg_All
  344. 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
  345. .text.Read_Ext_Reg
  346. 0x0000000000000000 0x20 ./components/nfc/fm175xx.o
  347. .text.ModifyReg_Ext
  348. 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
  349. .text.Get_FIFODataLenth
  350. 0x0000000000000000 0x58 ./components/nfc/fm175xx.o
  351. .text.FM175X_SoftPowerdown
  352. 0x0000000000000000 0x34 ./components/nfc/fm175xx.o
  353. .text.FM175XX_Initial
  354. 0x0000000000000000 0xe ./components/nfc/fm175xx.o
  355. .text 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  356. .data 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  357. .bss 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  358. .text.Lpcd_Reset_Status
  359. 0x0000000000000000 0x26 ./components/nfc/lpcd.o
  360. .text.Lpcd_Set_Timer
  361. 0x0000000000000000 0x68 ./components/nfc/lpcd.o
  362. .text.Lpcd_Set_Gain
  363. 0x0000000000000000 0x1a ./components/nfc/lpcd.o
  364. .text.Lpcd_Set_Threshold
  365. 0x0000000000000000 0x58 ./components/nfc/lpcd.o
  366. .text.Lpcd_Set_Driver
  367. 0x0000000000000000 0x94 ./components/nfc/lpcd.o
  368. .text.Lpcd_Set_Reference
  369. 0x0000000000000000 0x38 ./components/nfc/lpcd.o
  370. .text.Lpcd_WaitFor_Irq
  371. 0x0000000000000000 0x46 ./components/nfc/lpcd.o
  372. .text.Lpcd_Get_Value
  373. 0x0000000000000000 0x34 ./components/nfc/lpcd.o
  374. .text.Lpcd_Get_Calibration_Value
  375. 0x0000000000000000 0x72 ./components/nfc/lpcd.o
  376. .text.Lpcd_Calibrate_Reference
  377. 0x0000000000000000 0x94 ./components/nfc/lpcd.o
  378. .text.Lpcd_Calibrate_Driver
  379. 0x0000000000000000 0x152 ./components/nfc/lpcd.o
  380. .text.Lpcd_Calibration_Restore
  381. 0x0000000000000000 0x16 ./components/nfc/lpcd.o
  382. .text.Lpcd_Calibration_Backup
  383. 0x0000000000000000 0x16 ./components/nfc/lpcd.o
  384. .text.Lpcd_Get_IRQ
  385. 0x0000000000000000 0x3e ./components/nfc/lpcd.o
  386. .text.Lpcd_Set_IE
  387. 0x0000000000000000 0x22 ./components/nfc/lpcd.o
  388. .text.Lpcd_Set_Mode
  389. 0x0000000000000000 0x110 ./components/nfc/lpcd.o
  390. .text.Lpcd_Set_Aux
  391. 0x0000000000000000 0xd0 ./components/nfc/lpcd.o
  392. .text.Lpcd_Calibration_Event
  393. 0x0000000000000000 0x4c ./components/nfc/lpcd.o
  394. .text.Lpcd_IRQ_Event
  395. 0x0000000000000000 0x4e ./components/nfc/lpcd.o
  396. .bss.Lpcd 0x0000000000000000 0x14 ./components/nfc/lpcd.o
  397. .rodata.LPCD_GAIN
  398. 0x0000000000000000 0xb ./components/nfc/lpcd.o
  399. .sdata2.LPCD_N_DRIVER
  400. 0x0000000000000000 0x7 ./components/nfc/lpcd.o
  401. .sdata2.LPCD_P_DRIVER
  402. 0x0000000000000000 0x7 ./components/nfc/lpcd.o
  403. .text 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  404. .data 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  405. .bss 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  406. .text.Mifare_Auth
  407. 0x0000000000000000 0x94 ./components/nfc/mifare_card.o
  408. .text.Mifare_Blockread
  409. 0x0000000000000000 0x4e ./components/nfc/mifare_card.o
  410. .text.Mifare_Blockwrite
  411. 0x0000000000000000 0x80 ./components/nfc/mifare_card.o
  412. .text.Mifare_Blockset
  413. 0x0000000000000000 0x5a ./components/nfc/mifare_card.o
  414. .text.Mifare_Blockinc
  415. 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
  416. .text.Mifare_Blockdec
  417. 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
  418. .text.Mifare_Transfer
  419. 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
  420. .text.Mifare_Restore
  421. 0x0000000000000000 0x76 ./components/nfc/mifare_card.o
  422. .debug_info 0x0000000000000000 0x1111 ./components/nfc/mifare_card.o
  423. .debug_abbrev 0x0000000000000000 0x25d ./components/nfc/mifare_card.o
  424. .debug_loc 0x0000000000000000 0x30e ./components/nfc/mifare_card.o
  425. .debug_aranges
  426. 0x0000000000000000 0x58 ./components/nfc/mifare_card.o
  427. .debug_ranges 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
  428. .debug_line 0x0000000000000000 0xc17 ./components/nfc/mifare_card.o
  429. .debug_str 0x0000000000000000 0x73e ./components/nfc/mifare_card.o
  430. .comment 0x0000000000000000 0x34 ./components/nfc/mifare_card.o
  431. .debug_frame 0x0000000000000000 0x120 ./components/nfc/mifare_card.o
  432. .text 0x0000000000000000 0x0 ./components/nfc/type_a.o
  433. .data 0x0000000000000000 0x0 ./components/nfc/type_a.o
  434. .bss 0x0000000000000000 0x0 ./components/nfc/type_a.o
  435. .text.TypeA_Save_UID
  436. 0x0000000000000000 0x92 ./components/nfc/type_a.o
  437. .rodata.TypeA_Save_UID
  438. 0x0000000000000000 0x20 ./components/nfc/type_a.o
  439. .text.TypeA_WakeUp
  440. 0x0000000000000000 0x8c ./components/nfc/type_a.o
  441. .text 0x0000000000000000 0x0 ./components/nfc/type_b.o
  442. .data 0x0000000000000000 0x0 ./components/nfc/type_b.o
  443. .bss 0x0000000000000000 0x0 ./components/nfc/type_b.o
  444. .text.TypeB_Halt
  445. 0x0000000000000000 0x3e ./components/nfc/type_b.o
  446. .text.TypeB_WUP
  447. 0x0000000000000000 0x5a ./components/nfc/type_b.o
  448. .text.TypeB_Request
  449. 0x0000000000000000 0x56 ./components/nfc/type_b.o
  450. .text.TypeB_Select
  451. 0x0000000000000000 0x4e ./components/nfc/type_b.o
  452. .text.TypeB_GetUID
  453. 0x0000000000000000 0x38 ./components/nfc/type_b.o
  454. .debug_info 0x0000000000000000 0xe16 ./components/nfc/type_b.o
  455. .debug_abbrev 0x0000000000000000 0x274 ./components/nfc/type_b.o
  456. .debug_loc 0x0000000000000000 0x230 ./components/nfc/type_b.o
  457. .debug_aranges
  458. 0x0000000000000000 0x40 ./components/nfc/type_b.o
  459. .debug_ranges 0x0000000000000000 0x30 ./components/nfc/type_b.o
  460. .debug_line 0x0000000000000000 0x7a5 ./components/nfc/type_b.o
  461. .debug_str 0x0000000000000000 0x6ce ./components/nfc/type_b.o
  462. .comment 0x0000000000000000 0x34 ./components/nfc/type_b.o
  463. .debug_frame 0x0000000000000000 0xb4 ./components/nfc/type_b.o
  464. .text 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  465. .data 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  466. .bss 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  467. .text.NFC_HardReset
  468. 0x0000000000000000 0x6c ./components/nfc/user_nfc.o
  469. .text.NFC_HardPowerdown
  470. 0x0000000000000000 0x2c ./components/nfc/user_nfc.o
  471. .text.SetBitMask
  472. 0x0000000000000000 0x2a ./components/nfc/user_nfc.o
  473. .text.ClearBitMask
  474. 0x0000000000000000 0x2e ./components/nfc/user_nfc.o
  475. .text 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  476. .data 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  477. .bss 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  478. .text 0x0000000000000000 0x0 ./components/led/user_led.o
  479. .data 0x0000000000000000 0x0 ./components/led/user_led.o
  480. .bss 0x0000000000000000 0x0 ./components/led/user_led.o
  481. .text 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
  482. .data 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
  483. .bss 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
  484. .text 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  485. .data 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  486. .bss 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  487. .text 0x0000000000000000 0x0 ./components/config/user_config.o
  488. .data 0x0000000000000000 0x0 ./components/config/user_config.o
  489. .bss 0x0000000000000000 0x0 ./components/config/user_config.o
  490. .text 0x0000000000000000 0x0 ./components/charge/user_adc.o
  491. .data 0x0000000000000000 0x0 ./components/charge/user_adc.o
  492. .bss 0x0000000000000000 0x0 ./components/charge/user_adc.o
  493. .sdata2.Bx 0x0000000000000000 0x4 ./components/charge/user_adc.o
  494. .sdata2.Ka 0x0000000000000000 0x4 ./components/charge/user_adc.o
  495. .sdata2.Rp 0x0000000000000000 0x4 ./components/charge/user_adc.o
  496. .sdata2.T2 0x0000000000000000 0x4 ./components/charge/user_adc.o
  497. .text 0x0000000000000000 0x0 ./components/charge/user_charge.o
  498. .data 0x0000000000000000 0x0 ./components/charge/user_charge.o
  499. .bss 0x0000000000000000 0x0 ./components/charge/user_charge.o
  500. .text 0x0000000000000000 0x0 ./components/charge/user_fan.o
  501. .data 0x0000000000000000 0x0 ./components/charge/user_fan.o
  502. .bss 0x0000000000000000 0x0 ./components/charge/user_fan.o
  503. .text 0x0000000000000000 0x0 ./components/can/dip_sw.o
  504. .data 0x0000000000000000 0x0 ./components/can/dip_sw.o
  505. .bss 0x0000000000000000 0x0 ./components/can/dip_sw.o
  506. .text 0x0000000000000000 0x0 ./components/can/user_can.o
  507. .data 0x0000000000000000 0x0 ./components/can/user_can.o
  508. .bss 0x0000000000000000 0x0 ./components/can/user_can.o
  509. .text 0x0000000000000000 0x0 ./components/action/ble_action.o
  510. .data 0x0000000000000000 0x0 ./components/action/ble_action.o
  511. .bss 0x0000000000000000 0x0 ./components/action/ble_action.o
  512. .text.get_unixTime
  513. 0x0000000000000000 0xa ./components/action/ble_action.o
  514. .text.set_unixTime
  515. 0x0000000000000000 0xa ./components/action/ble_action.o
  516. .text 0x0000000000000000 0x0 ./components/action/user_sever.o
  517. .data 0x0000000000000000 0x0 ./components/action/user_sever.o
  518. .bss 0x0000000000000000 0x0 ./components/action/user_sever.o
  519. .text 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  520. .data 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  521. .bss 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  522. .text.app_drv_fifo_length
  523. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  524. .text.app_drv_fifo_init
  525. 0x0000000000000000 0x22 ./User/app_drv_fifo/app_drv_fifo.o
  526. .text.app_drv_fifo_push
  527. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  528. .text.app_drv_fifo_pop
  529. 0x0000000000000000 0x16 ./User/app_drv_fifo/app_drv_fifo.o
  530. .text.app_drv_fifo_flush
  531. 0x0000000000000000 0x6 ./User/app_drv_fifo/app_drv_fifo.o
  532. .text.app_drv_fifo_is_empty
  533. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  534. .text.app_drv_fifo_is_full
  535. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  536. .text.app_drv_fifo_write
  537. 0x0000000000000000 0x62 ./User/app_drv_fifo/app_drv_fifo.o
  538. .text.app_drv_fifo_write_from_same_addr
  539. 0x0000000000000000 0x52 ./User/app_drv_fifo/app_drv_fifo.o
  540. .text.app_drv_fifo_read
  541. 0x0000000000000000 0x54 ./User/app_drv_fifo/app_drv_fifo.o
  542. .text.app_drv_fifo_read_to_same_addr
  543. 0x0000000000000000 0x3e ./User/app_drv_fifo/app_drv_fifo.o
  544. .debug_info 0x0000000000000000 0x5db ./User/app_drv_fifo/app_drv_fifo.o
  545. .debug_abbrev 0x0000000000000000 0x1a8 ./User/app_drv_fifo/app_drv_fifo.o
  546. .debug_loc 0x0000000000000000 0x3a4 ./User/app_drv_fifo/app_drv_fifo.o
  547. .debug_aranges
  548. 0x0000000000000000 0x70 ./User/app_drv_fifo/app_drv_fifo.o
  549. .debug_ranges 0x0000000000000000 0xa8 ./User/app_drv_fifo/app_drv_fifo.o
  550. .debug_line 0x0000000000000000 0x8ac ./User/app_drv_fifo/app_drv_fifo.o
  551. .debug_str 0x0000000000000000 0x476 ./User/app_drv_fifo/app_drv_fifo.o
  552. .comment 0x0000000000000000 0x34 ./User/app_drv_fifo/app_drv_fifo.o
  553. .debug_frame 0x0000000000000000 0xc0 ./User/app_drv_fifo/app_drv_fifo.o
  554. .text 0x0000000000000000 0x0 ./User/app_main.o
  555. .data 0x0000000000000000 0x0 ./User/app_main.o
  556. .bss 0x0000000000000000 0x0 ./User/app_main.o
  557. .text 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  558. .data 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  559. .bss 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  560. .text 0x0000000000000000 0x0 ./User/peripheral.o
  561. .data 0x0000000000000000 0x0 ./User/peripheral.o
  562. .bss 0x0000000000000000 0x0 ./User/peripheral.o
  563. .text 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  564. .data 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  565. .bss 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  566. .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  567. .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  568. .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  569. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  570. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  571. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  572. .text.ADC_StructInit
  573. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  574. .text.ADC_ITConfig
  575. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
  576. .text.ADC_GetSoftwareStartConvStatus
  577. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  578. .text.ADC_DiscModeChannelCountConfig
  579. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  580. .text.ADC_DiscModeCmd
  581. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  582. .text.ADC_ExternalTrigConvCmd
  583. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  584. .text.ADC_GetDualModeConversionValue
  585. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  586. .text.ADC_AutoInjectedConvCmd
  587. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  588. .text.ADC_InjectedDiscModeCmd
  589. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  590. .text.ADC_ExternalTrigInjectedConvConfig
  591. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
  592. .text.ADC_ExternalTrigInjectedConvCmd
  593. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  594. .text.ADC_SoftwareStartInjectedConvCmd
  595. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  596. .text.ADC_GetSoftwareStartInjectedConvCmdStatus
  597. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  598. .text.ADC_InjectedChannelConfig
  599. 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
  600. .text.ADC_InjectedSequencerLengthConfig
  601. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  602. .text.ADC_SetInjectedOffset
  603. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  604. .text.ADC_GetInjectedConversionValue
  605. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  606. .text.ADC_AnalogWatchdogCmd
  607. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  608. .text.ADC_AnalogWatchdogThresholdsConfig
  609. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
  610. .text.ADC_AnalogWatchdogSingleChannelConfig
  611. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  612. .text.ADC_ClearFlag
  613. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  614. .text.ADC_GetITStatus
  615. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  616. .text.ADC_ClearITPendingBit
  617. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  618. .text.TempSensor_Volt_To_Temper
  619. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
  620. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  621. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  622. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  623. .text.BKP_DeInit
  624. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  625. .text.BKP_TamperPinLevelConfig
  626. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  627. .text.BKP_TamperPinCmd
  628. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  629. .text.BKP_ITConfig
  630. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  631. .text.BKP_RTCOutputConfig
  632. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  633. .text.BKP_SetRTCCalibrationValue
  634. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  635. .text.BKP_WriteBackupRegister
  636. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  637. .text.BKP_ReadBackupRegister
  638. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  639. .text.BKP_GetFlagStatus
  640. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  641. .text.BKP_ClearFlag
  642. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  643. .text.BKP_GetITStatus
  644. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  645. .text.BKP_ClearITPendingBit
  646. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  647. .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
  648. .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
  649. .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
  650. .debug_aranges
  651. 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
  652. .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
  653. .debug_line 0x0000000000000000 0x7e3 ./SRC/Peripheral/src/ch32v20x_bkp.o
  654. .debug_str 0x0000000000000000 0xb33 ./SRC/Peripheral/src/ch32v20x_bkp.o
  655. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
  656. .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
  657. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  658. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  659. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  660. .text.CAN_DeInit
  661. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
  662. .text.CAN_StructInit
  663. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
  664. .text.CAN_SlaveStartBank
  665. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
  666. .text.CAN_DBGFreeze
  667. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
  668. .text.CAN_TTComModeCmd
  669. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
  670. .text.CAN_CancelTransmit
  671. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
  672. .text.CAN_FIFORelease
  673. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  674. .text.CAN_MessagePending
  675. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  676. .text.CAN_OperatingModeRequest
  677. 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
  678. .text.CAN_Sleep
  679. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  680. .text.CAN_WakeUp
  681. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
  682. .text.CAN_GetLastErrorCode
  683. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
  684. .text.CAN_GetReceiveErrorCounter
  685. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
  686. .text.CAN_GetLSBTransmitErrorCounter
  687. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
  688. .text.CAN_GetFlagStatus
  689. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
  690. .text.CAN_ClearFlag
  691. 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
  692. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  693. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  694. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  695. .text.CRC_ResetDR
  696. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  697. .text.CRC_CalcCRC
  698. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  699. .text.CRC_CalcBlockCRC
  700. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
  701. .text.CRC_GetCRC
  702. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  703. .text.CRC_SetIDRegister
  704. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  705. .text.CRC_GetIDRegister
  706. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  707. .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
  708. .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
  709. .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
  710. .debug_aranges
  711. 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
  712. .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
  713. .debug_line 0x0000000000000000 0x4db ./SRC/Peripheral/src/ch32v20x_crc.o
  714. .debug_str 0x0000000000000000 0x709 ./SRC/Peripheral/src/ch32v20x_crc.o
  715. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
  716. .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
  717. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  718. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  719. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  720. .text.DBGMCU_GetREVID
  721. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  722. .text.DBGMCU_GetDEVID
  723. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  724. .text.__get_DEBUG_CR
  725. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  726. .text.__set_DEBUG_CR
  727. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  728. .text.DBGMCU_Config
  729. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  730. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  731. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  732. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  733. .text.DMA_StructInit
  734. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
  735. .text.DMA_GetCurrDataCounter
  736. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  737. .text.DMA_ClearFlag
  738. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  739. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  740. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  741. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  742. .text.EXTI_DeInit
  743. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
  744. .text.EXTI_Init
  745. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
  746. .text.EXTI_StructInit
  747. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  748. .text.EXTI_GenerateSWInterrupt
  749. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
  750. .text.EXTI_GetFlagStatus
  751. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  752. .text.EXTI_ClearFlag
  753. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  754. .text.EXTI_GetITStatus
  755. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
  756. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  757. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  758. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  759. .text.ROM_ERASE
  760. 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
  761. .text.FLASH_Unlock
  762. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
  763. .text.FLASH_UnlockBank1
  764. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  765. .text.FLASH_Lock
  766. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  767. .text.FLASH_LockBank1
  768. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  769. .text.FLASH_GetUserOptionByte
  770. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
  771. .text.FLASH_GetWriteProtectionOptionByte
  772. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  773. .text.FLASH_GetReadOutProtectionStatus
  774. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
  775. .text.FLASH_ITConfig
  776. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  777. .text.FLASH_GetFlagStatus
  778. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  779. .text.FLASH_ClearFlag
  780. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  781. .text.FLASH_GetStatus
  782. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  783. .text.FLASH_GetBank1Status
  784. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  785. .text.FLASH_WaitForLastOperation
  786. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_flash.o
  787. .text.FLASH_ErasePage
  788. 0x0000000000000000 0x4e ./SRC/Peripheral/src/ch32v20x_flash.o
  789. .text.FLASH_EraseAllPages
  790. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  791. .text.FLASH_EraseAllBank1Pages
  792. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  793. .text.FLASH_EraseOptionBytes
  794. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
  795. .text.FLASH_ProgramWord
  796. 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
  797. .text.FLASH_ProgramHalfWord
  798. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  799. .text.FLASH_ProgramOptionByteData
  800. 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
  801. .text.FLASH_EnableWriteProtection
  802. 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  803. .text.FLASH_ReadOutProtection
  804. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
  805. .text.FLASH_UserOptionByteConfig
  806. 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
  807. .text.FLASH_WaitForLastBank1Operation
  808. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  809. .text.FLASH_EraseBlock_32K_Fast
  810. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
  811. .text.FLASH_Access_Clock_Cfg
  812. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  813. .text.FLASH_Enhance_Mode
  814. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  815. .text.FLASH_ROM_ERASE
  816. 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
  817. .text.FLASH_ROM_WRITE
  818. 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
  819. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  820. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  821. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  822. .text.GPIO_DeInit
  823. 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  824. .text.GPIO_AFIODeInit
  825. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
  826. .text.GPIO_StructInit
  827. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
  828. .text.GPIO_ReadInputData
  829. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  830. .text.GPIO_ReadOutputDataBit
  831. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  832. .text.GPIO_ReadOutputData
  833. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  834. .text.GPIO_SetBits
  835. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  836. .text.GPIO_ResetBits
  837. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  838. .text.GPIO_Write
  839. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  840. .text.GPIO_PinLockConfig
  841. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
  842. .text.GPIO_EventOutputConfig
  843. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
  844. .text.GPIO_EventOutputCmd
  845. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
  846. .text.GPIO_EXTILineConfig
  847. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
  848. .text.GPIO_ETH_MediaInterfaceConfig
  849. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
  850. .text.GPIO_IPD_Unused
  851. 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
  852. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  853. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  854. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  855. .text.I2C_DeInit
  856. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
  857. .text.I2C_Init
  858. 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
  859. .text.I2C_StructInit
  860. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  861. .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  862. .text.I2C_DMACmd
  863. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
  864. .text.I2C_DMALastTransferCmd
  865. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  866. .text.I2C_GenerateSTART
  867. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  868. .text.I2C_GenerateSTOP
  869. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  870. .text.I2C_AcknowledgeConfig
  871. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  872. .text.I2C_OwnAddress2Config
  873. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  874. .text.I2C_DualAddressCmd
  875. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  876. .text.I2C_GeneralCallCmd
  877. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  878. .text.I2C_ITConfig
  879. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  880. .text.I2C_SendData
  881. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  882. .text.I2C_ReceiveData
  883. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  884. .text.I2C_Send7bitAddress
  885. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  886. .text.I2C_ReadRegister
  887. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  888. .text.I2C_SoftwareResetCmd
  889. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  890. .text.I2C_NACKPositionConfig
  891. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
  892. .text.I2C_SMBusAlertConfig
  893. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  894. .text.I2C_TransmitPEC
  895. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  896. .text.I2C_PECPositionConfig
  897. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  898. .text.I2C_CalculatePEC
  899. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  900. .text.I2C_GetPEC
  901. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
  902. .text.I2C_ARPCmd
  903. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  904. .text.I2C_StretchClockCmd
  905. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  906. .text.I2C_FastModeDutyCycleConfig
  907. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  908. .text.I2C_CheckEvent
  909. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  910. .text.I2C_GetLastEvent
  911. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
  912. .text.I2C_GetFlagStatus
  913. 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
  914. .text.I2C_ClearFlag
  915. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  916. .text.I2C_GetITStatus
  917. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
  918. .text.I2C_ClearITPendingBit
  919. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  920. .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
  921. .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
  922. .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  923. .debug_aranges
  924. 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
  925. .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
  926. .debug_line 0x0000000000000000 0x12c4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  927. .debug_str 0x0000000000000000 0xb6e ./SRC/Peripheral/src/ch32v20x_i2c.o
  928. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
  929. .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
  930. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  931. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  932. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  933. .text.IWDG_WriteAccessCmd
  934. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  935. .text.IWDG_SetPrescaler
  936. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  937. .text.IWDG_SetReload
  938. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  939. .text.IWDG_Enable
  940. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  941. .text.IWDG_GetFlagStatus
  942. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  943. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  944. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  945. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  946. .text.NVIC_PriorityGroupConfig
  947. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
  948. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  949. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  950. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  951. .text.OPA_DeInit
  952. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
  953. .text.OPA_Init
  954. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
  955. .text.OPA_StructInit
  956. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
  957. .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
  958. .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
  959. .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
  960. .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
  961. .debug_aranges
  962. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
  963. .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
  964. .debug_line 0x0000000000000000 0x59d ./SRC/Peripheral/src/ch32v20x_opa.o
  965. .debug_str 0x0000000000000000 0x749 ./SRC/Peripheral/src/ch32v20x_opa.o
  966. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
  967. .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
  968. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  969. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  970. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  971. .text.PWR_DeInit
  972. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
  973. .text.PWR_PVDCmd
  974. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
  975. .text.PWR_PVDLevelConfig
  976. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
  977. .text.PWR_WakeUpPinCmd
  978. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  979. .text.PWR_EnterSTOPMode
  980. 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
  981. .text.PWR_EnterSTANDBYMode
  982. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  983. .text.PWR_GetFlagStatus
  984. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  985. .text.PWR_ClearFlag
  986. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  987. .text.PWR_EnterSTANDBYMode_RAM
  988. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  989. .text.PWR_EnterSTANDBYMode_RAM_LV
  990. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  991. .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
  992. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  993. .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
  994. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  995. .text.PWR_EnterSTOPMode_RAM_LV
  996. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
  997. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  998. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  999. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1000. .text.RCC_DeInit
  1001. 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1002. .text.RCC_HSEConfig
  1003. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  1004. .text.RCC_AdjustHSICalibrationValue
  1005. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1006. .text.RCC_HSICmd
  1007. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1008. .text.RCC_PLLConfig
  1009. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1010. .text.RCC_PLLCmd
  1011. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1012. .text.RCC_SYSCLKConfig
  1013. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  1014. .text.RCC_GetSYSCLKSource
  1015. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
  1016. .text.RCC_HCLKConfig
  1017. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1018. .text.RCC_PCLK1Config
  1019. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1020. .text.RCC_PCLK2Config
  1021. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1022. .text.RCC_ITConfig
  1023. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1024. .text.RCC_USBCLKConfig
  1025. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  1026. .text.RCC_LSICmd
  1027. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1028. .text.RCC_APB1PeriphResetCmd
  1029. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1030. .text.RCC_BackupResetCmd
  1031. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1032. .text.RCC_ClockSecuritySystemCmd
  1033. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1034. .text.RCC_MCOConfig
  1035. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1036. .text.RCC_WaitForHSEStartUp
  1037. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  1038. .text.RCC_ClearFlag
  1039. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1040. .text.RCC_GetITStatus
  1041. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  1042. .text.RCC_ClearITPendingBit
  1043. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1044. .text.RCC_ADCCLKADJcmd
  1045. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1046. .text.RCC_ETHDIVConfig
  1047. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  1048. .text.RCC_USB5PRE_JUDGE
  1049. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1050. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1051. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1052. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1053. .text.RTC_ITConfig
  1054. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
  1055. .text.RTC_SetAlarm
  1056. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1057. .text.RTC_GetDivider
  1058. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1059. .text.RTC_WaitForSynchro
  1060. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1061. .text.RTC_GetFlagStatus
  1062. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1063. .text.RTC_GetITStatus
  1064. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1065. .text.Calibration_LSI
  1066. 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1067. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1068. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1069. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1070. .text.SPI_I2S_DeInit
  1071. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
  1072. .text.I2S_Init
  1073. 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
  1074. .text.SPI_StructInit
  1075. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
  1076. .text.I2S_StructInit
  1077. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  1078. .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  1079. .text.SPI_I2S_ITConfig
  1080. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
  1081. .text.SPI_NSSInternalSoftwareConfig
  1082. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
  1083. .text.SPI_SSOutputCmd
  1084. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
  1085. .text.SPI_DataSizeConfig
  1086. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  1087. .text.SPI_TransmitCRC
  1088. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  1089. .text.SPI_GetCRC
  1090. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  1091. .text.SPI_GetCRCPolynomial
  1092. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  1093. .text.SPI_BiDirectionalLineConfig
  1094. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  1095. .text.SPI_I2S_ClearFlag
  1096. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
  1097. .text.SPI_I2S_GetITStatus
  1098. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
  1099. .text.SPI_I2S_ClearITPendingBit
  1100. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  1101. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1102. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1103. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1104. .text.TI1_Config
  1105. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  1106. .text.TI2_Config
  1107. 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
  1108. .text.TIM_DeInit
  1109. 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1110. .text.TIM_OC3Init
  1111. 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
  1112. .text.TIM_OC4Init
  1113. 0x0000000000000000 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
  1114. .text.TIM_TimeBaseStructInit
  1115. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1116. .text.TIM_OCStructInit
  1117. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
  1118. .text.TIM_ICStructInit
  1119. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1120. .text.TIM_BDTRStructInit
  1121. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
  1122. .text.TIM_CtrlPWMOutputs
  1123. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1124. .text.TIM_ITConfig
  1125. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1126. .text.TIM_GenerateEvent
  1127. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1128. .text.TIM_DMAConfig
  1129. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  1130. .text.TIM_DMACmd
  1131. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  1132. .text.TIM_InternalClockConfig
  1133. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1134. .text.TIM_ITRxExternalClockConfig
  1135. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1136. .text.TIM_TIxExternalClockConfig
  1137. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
  1138. .text.TIM_ETRConfig
  1139. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1140. .text.TIM_ETRClockMode1Config
  1141. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
  1142. .text.TIM_ETRClockMode2Config
  1143. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1144. .text.TIM_PrescalerConfig
  1145. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1146. .text.TIM_CounterModeConfig
  1147. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1148. .text.TIM_SelectInputTrigger
  1149. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1150. .text.TIM_EncoderInterfaceConfig
  1151. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
  1152. .text.TIM_ForcedOC1Config
  1153. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1154. .text.TIM_ForcedOC2Config
  1155. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1156. .text.TIM_ForcedOC3Config
  1157. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1158. .text.TIM_ForcedOC4Config
  1159. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1160. .text.TIM_ARRPreloadConfig
  1161. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1162. .text.TIM_SelectCOM
  1163. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1164. .text.TIM_SelectCCDMA
  1165. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1166. .text.TIM_CCPreloadControl
  1167. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1168. .text.TIM_OC3PreloadConfig
  1169. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1170. .text.TIM_OC4PreloadConfig
  1171. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1172. .text.TIM_OC1FastConfig
  1173. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1174. .text.TIM_OC2FastConfig
  1175. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1176. .text.TIM_OC3FastConfig
  1177. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1178. .text.TIM_OC4FastConfig
  1179. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1180. .text.TIM_ClearOC1Ref
  1181. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1182. .text.TIM_ClearOC2Ref
  1183. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1184. .text.TIM_ClearOC3Ref
  1185. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1186. .text.TIM_ClearOC4Ref
  1187. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1188. .text.TIM_OC1PolarityConfig
  1189. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1190. .text.TIM_OC1NPolarityConfig
  1191. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1192. .text.TIM_OC2PolarityConfig
  1193. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1194. .text.TIM_OC2NPolarityConfig
  1195. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1196. .text.TIM_OC3PolarityConfig
  1197. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1198. .text.TIM_OC3NPolarityConfig
  1199. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1200. .text.TIM_OC4PolarityConfig
  1201. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1202. .text.TIM_CCxCmd
  1203. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1204. .text.TIM_CCxNCmd
  1205. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1206. .text.TIM_SelectOCxM
  1207. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
  1208. .text.TIM_UpdateDisableConfig
  1209. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1210. .text.TIM_UpdateRequestConfig
  1211. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1212. .text.TIM_SelectHallSensor
  1213. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1214. .text.TIM_SelectOnePulseMode
  1215. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1216. .text.TIM_SelectOutputTrigger
  1217. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1218. .text.TIM_SelectSlaveMode
  1219. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1220. .text.TIM_SelectMasterSlaveMode
  1221. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1222. .text.TIM_SetCounter
  1223. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1224. .text.TIM_SetAutoreload
  1225. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1226. .text.TIM_SetCompare3
  1227. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1228. .text.TIM_SetCompare4
  1229. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1230. .text.TIM_SetIC1Prescaler
  1231. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1232. .text.TIM_SetIC2Prescaler
  1233. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1234. .text.TIM_PWMIConfig
  1235. 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1236. .text.TIM_SetIC3Prescaler
  1237. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1238. .text.TIM_SetIC4Prescaler
  1239. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1240. .text.TIM_ICInit
  1241. 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
  1242. .text.TIM_SetClockDivision
  1243. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1244. .text.TIM_GetCapture1
  1245. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1246. .text.TIM_GetCapture2
  1247. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1248. .text.TIM_GetCapture3
  1249. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1250. .text.TIM_GetCapture4
  1251. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1252. .text.TIM_GetCounter
  1253. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1254. .text.TIM_GetPrescaler
  1255. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1256. .text.TIM_GetFlagStatus
  1257. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
  1258. .text.TIM_ClearFlag
  1259. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1260. .text.TIM_GetITStatus
  1261. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1262. .text.TIM_ClearITPendingBit
  1263. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1264. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1265. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1266. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1267. .text.TI1_Config
  1268. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1269. .text.TI2_Config
  1270. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1271. .text.TIM5_DeInit
  1272. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1273. .text.TIM5_TimeBaseInit
  1274. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1275. .text.TIM5_OC1Init
  1276. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1277. .text.TIM5_OC2Init
  1278. 0x0000000000000000 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1279. .text.TIM5_OC3Init
  1280. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1281. .text.TIM5_OC4Init
  1282. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1283. .text.TIM5_BDTRConfig
  1284. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1285. .text.TIM5_TimeBaseStructInit
  1286. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1287. .text.TIM5_OCStructInit
  1288. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1289. .text.TIM5_ICStructInit
  1290. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1291. .text.TIM5_BDTRStructInit
  1292. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1293. .text.TIM5_Cmd
  1294. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1295. .text.TIM5_CtrlPWMOutputs
  1296. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1297. .text.TIM5_ITConfig
  1298. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1299. .text.TIM5_GenerateEvent
  1300. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1301. .text.TIM5_DMAConfig
  1302. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
  1303. .text.TIM5_DMACmd
  1304. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1305. .text.TIM5_InternalClockConfig
  1306. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1307. .text.TIM5_ITRxExternalClockConfig
  1308. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1309. .text.TIM5_TIxExternalClockConfig
  1310. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1311. .text.TIM5_ETRClockMode1Config
  1312. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1313. .text.TIM5_ETRClockMode2Config
  1314. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1315. .text.TIM5_ETRConfig
  1316. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1317. .text.TIM5_PrescalerConfig
  1318. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
  1319. .text.TIM5_CounterModeConfig
  1320. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1321. .text.TIM5_SelectInputTrigger
  1322. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1323. .text.TIM5_EncoderInterfaceConfig
  1324. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1325. .text.TIM5_ForcedOC1Config
  1326. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1327. .text.TIM5_ForcedOC2Config
  1328. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1329. .text.TIM5_ForcedOC3Config
  1330. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1331. .text.TIM5_ForcedOC4Config
  1332. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1333. .text.TIM5_ARRPreloadConfig
  1334. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1335. .text.TIM5_SelectCOM
  1336. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1337. .text.TIM5_SelectCCDMA
  1338. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1339. .text.TIM5_CCPreloadControl
  1340. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1341. .text.TIM5_OC1PreloadConfig
  1342. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1343. .text.TIM5_OC2PreloadConfig
  1344. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1345. .text.TIM5_OC3PreloadConfig
  1346. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1347. .text.TIM5_OC4PreloadConfig
  1348. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1349. .text.TIM5_OC1FastConfig
  1350. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1351. .text.TIM5_OC2FastConfig
  1352. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1353. .text.TIM5_OC3FastConfig
  1354. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1355. .text.TIM5_OC4FastConfig
  1356. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1357. .text.TIM5_ClearOC1Ref
  1358. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1359. .text.TIM5_ClearOC2Ref
  1360. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1361. .text.TIM5_ClearOC3Ref
  1362. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1363. .text.TIM5_ClearOC4Ref
  1364. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1365. .text.TIM5_OC1PolarityConfig
  1366. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1367. .text.TIM5_OC1NPolarityConfig
  1368. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1369. .text.TIM5_OC2PolarityConfig
  1370. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1371. .text.TIM5_OC2NPolarityConfig
  1372. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1373. .text.TIM5_OC3PolarityConfig
  1374. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1375. .text.TIM5_OC3NPolarityConfig
  1376. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1377. .text.TIM5_OC4PolarityConfig
  1378. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1379. .text.TIM5_CCxCmd
  1380. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1381. .text.TIM5_CCxNCmd
  1382. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1383. .text.TIM5_SelectOCxM
  1384. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1385. .text.TIM5_UpdateDisableConfig
  1386. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1387. .text.TIM5_UpdateRequestConfig
  1388. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1389. .text.TIM5_SelectHallSensor
  1390. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1391. .text.TIM5_SelectOnePulseMode
  1392. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1393. .text.TIM5_SelectOutputTrigger
  1394. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1395. .text.TIM5_SelectSlaveMode
  1396. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1397. .text.TIM5_SelectMasterSlaveMode
  1398. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1399. .text.TIM5_SetCounter
  1400. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1401. .text.TIM5_SetAutoreload
  1402. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1403. .text.TIM5_SetCompare1
  1404. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1405. .text.TIM5_SetCompare2
  1406. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1407. .text.TIM5_SetCompare3
  1408. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1409. .text.TIM5_SetCompare4
  1410. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1411. .text.TIM5_SetIC1Prescaler
  1412. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1413. .text.TIM5_SetIC2Prescaler
  1414. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1415. .text.TIM5_PWMIConfig
  1416. 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1417. .text.TIM5_SetIC3Prescaler
  1418. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1419. .text.TIM5_SetIC4Prescaler
  1420. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1421. .text.TIM5_ICInit
  1422. 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1423. .text.TIM5_SetClockDivision
  1424. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1425. .text.TIM5_GetCapture1
  1426. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1427. .text.TIM5_GetCapture2
  1428. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1429. .text.TIM5_GetCapture3
  1430. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1431. .text.TIM5_GetCapture4
  1432. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1433. .text.TIM5_GetCounter
  1434. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1435. .text.TIM5_GetPrescaler
  1436. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1437. .text.TIM5_GetFlagStatus
  1438. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1439. .text.TIM5_ClearFlag
  1440. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1441. .text.TIM5_GetITStatus
  1442. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1443. .text.TIM5_ClearITPendingBit
  1444. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1445. .debug_info 0x0000000000000000 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1446. .debug_abbrev 0x0000000000000000 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1447. .debug_loc 0x0000000000000000 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1448. .debug_aranges
  1449. 0x0000000000000000 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1450. .debug_ranges 0x0000000000000000 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1451. .debug_line 0x0000000000000000 0x2c8a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1452. .debug_str 0x0000000000000000 0x13ac ./SRC/Peripheral/src/ch32v20x_tim5.o
  1453. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1454. .debug_frame 0x0000000000000000 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1455. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1456. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1457. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1458. .text.USART_DeInit
  1459. 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
  1460. .text.USART_StructInit
  1461. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1462. .text.USART_ClockInit
  1463. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
  1464. .text.USART_ClockStructInit
  1465. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1466. .text.USART_ITConfig
  1467. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
  1468. .text.USART_DMACmd
  1469. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1470. .text.USART_SetAddress
  1471. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1472. .text.USART_WakeUpConfig
  1473. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1474. .text.USART_ReceiverWakeUpCmd
  1475. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1476. .text.USART_LINBreakDetectLengthConfig
  1477. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1478. .text.USART_LINCmd
  1479. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1480. .text.USART_ReceiveData
  1481. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1482. .text.USART_SendBreak
  1483. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1484. .text.USART_SetGuardTime
  1485. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1486. .text.USART_SetPrescaler
  1487. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1488. .text.USART_SmartCardCmd
  1489. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
  1490. .text.USART_SmartCardNACKCmd
  1491. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1492. .text.USART_HalfDuplexCmd
  1493. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1494. .text.USART_IrDAConfig
  1495. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1496. .text.USART_IrDACmd
  1497. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1498. .text.USART_ClearFlag
  1499. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
  1500. .text.USART_GetITStatus
  1501. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
  1502. .text.USART_ClearITPendingBit
  1503. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1504. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1505. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1506. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1507. .text.WWDG_DeInit
  1508. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1509. .text.WWDG_SetPrescaler
  1510. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1511. .text.WWDG_SetWindowValue
  1512. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1513. .text.WWDG_EnableIT
  1514. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1515. .text.WWDG_SetCounter
  1516. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1517. .text.WWDG_Enable
  1518. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1519. .text.WWDG_GetFlagStatus
  1520. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1521. .text.WWDG_ClearFlag
  1522. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1523. .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1524. .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1525. .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1526. .debug_aranges
  1527. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1528. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1529. .debug_line 0x0000000000000000 0x612 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1530. .debug_str 0x0000000000000000 0x740 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1531. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1532. .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1533. .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1534. .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1535. .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1536. .text.SDI_Printf_Enable
  1537. 0x0000000000000000 0x22 ./SRC/Debug/debug.o
  1538. .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1539. .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1540. .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1541. .text.__get_MSTATUS
  1542. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1543. .text.__set_MSTATUS
  1544. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1545. .text.__get_MISA
  1546. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1547. .text.__set_MISA
  1548. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1549. .text.__get_MTVEC
  1550. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1551. .text.__set_MTVEC
  1552. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1553. .text.__get_MSCRATCH
  1554. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1555. .text.__set_MSCRATCH
  1556. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1557. .text.__get_MEPC
  1558. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1559. .text.__set_MEPC
  1560. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1561. .text.__get_MCAUSE
  1562. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1563. .text.__set_MCAUSE
  1564. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1565. .text.__get_MTVAL
  1566. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1567. .text.__set_MTVAL
  1568. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1569. .text.__get_MVENDORID
  1570. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1571. .text.__get_MARCHID
  1572. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1573. .text.__get_MIMPID
  1574. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1575. .text.__get_MHARTID
  1576. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1577. .text.__get_SP
  1578. 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
  1579. .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
  1580. .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
  1581. .debug_aranges
  1582. 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
  1583. .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
  1584. .debug_line 0x0000000000000000 0x4f3 ./SRC/Core/core_riscv.o
  1585. .debug_str 0x0000000000000000 0x32a ./SRC/Core/core_riscv.o
  1586. .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
  1587. .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
  1588. .text 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1589. .data 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1590. .bss 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1591. .text.DevInfo_SetParameter
  1592. 0x0000000000000000 0x28 ./Profile/devinfoservice.o
  1593. .text.DevInfo_GetParameter
  1594. 0x0000000000000000 0xce ./Profile/devinfoservice.o
  1595. .rodata.DevInfo_GetParameter
  1596. 0x0000000000000000 0x24 ./Profile/devinfoservice.o
  1597. .text 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1598. .data 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1599. .bss 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1600. .text.SimpleProfile_GetParameter
  1601. 0x0000000000000000 0x78 ./Profile/gattprofile.o
  1602. .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1603. .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1604. .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1605. .text 0x0000000000000000 0x0 ./HAL/MCU.o
  1606. .data 0x0000000000000000 0x0 ./HAL/MCU.o
  1607. .bss 0x0000000000000000 0x0 ./HAL/MCU.o
  1608. .text.Lib_Calibration_LSI
  1609. 0x0000000000000000 0xa ./HAL/MCU.o
  1610. .text 0x0000000000000000 0x0 ./HAL/RTC.o
  1611. .data 0x0000000000000000 0x0 ./HAL/RTC.o
  1612. .bss 0x0000000000000000 0x0 ./HAL/RTC.o
  1613. .text.RTC_SetTignTime
  1614. 0x0000000000000000 0x2e ./HAL/RTC.o
  1615. .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1616. .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1617. .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1618. .text.BLE_LowPower
  1619. 0x0000000000000000 0x4 ./HAL/SLEEP.o
  1620. .text.HAL_SleepInit
  1621. 0x0000000000000000 0x2 ./HAL/SLEEP.o
  1622. .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
  1623. .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
  1624. .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
  1625. .debug_aranges
  1626. 0x0000000000000000 0x28 ./HAL/SLEEP.o
  1627. .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
  1628. .debug_line 0x0000000000000000 0x3fb ./HAL/SLEEP.o
  1629. .debug_str 0x0000000000000000 0x685 ./HAL/SLEEP.o
  1630. .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
  1631. .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
  1632. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1633. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1634. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1635. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  1636. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  1637. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  1638. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_lib_ver.o)
  1639. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_lib_ver.o)
  1640. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_lib_ver.o)
  1641. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
  1642. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
  1643. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
  1644. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  1645. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  1646. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  1647. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  1648. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  1649. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  1650. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1651. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1652. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  1653. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  1654. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  1655. .eh_frame 0x0000000000000000 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  1656. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
  1657. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
  1658. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
  1659. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  1660. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  1661. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  1662. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  1663. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  1664. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  1665. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
  1666. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
  1667. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
  1668. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  1669. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  1670. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  1671. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
  1672. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
  1673. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
  1674. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
  1675. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
  1676. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
  1677. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  1678. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  1679. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  1680. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  1681. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  1682. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  1683. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  1684. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  1685. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  1686. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  1687. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  1688. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  1689. .text.__lesf2 0x0000000000000000 0x8c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  1690. .debug_frame 0x0000000000000000 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  1691. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  1692. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  1693. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  1694. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  1695. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  1696. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  1697. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
  1698. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
  1699. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
  1700. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
  1701. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
  1702. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
  1703. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsisf.o)
  1704. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsisf.o)
  1705. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsisf.o)
  1706. .text.__floatunsisf
  1707. 0x0000000000000000 0xd4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsisf.o)
  1708. .debug_frame 0x0000000000000000 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsisf.o)
  1709. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  1710. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  1711. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  1712. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  1713. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  1714. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  1715. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  1716. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  1717. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  1718. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  1719. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  1720. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  1721. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
  1722. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
  1723. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
  1724. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  1725. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  1726. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  1727. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
  1728. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
  1729. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
  1730. .text.free 0x0000000000000000 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
  1731. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  1732. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  1733. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  1734. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
  1735. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
  1736. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  1737. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  1738. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  1739. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  1740. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  1741. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  1742. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  1743. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  1744. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  1745. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  1746. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  1747. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  1748. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
  1749. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
  1750. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
  1751. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  1752. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  1753. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  1754. .text._printf_r
  1755. 0x0000000000000000 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  1756. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  1757. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  1758. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  1759. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o)
  1760. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o)
  1761. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o)
  1762. .text.realloc 0x0000000000000000 0x16 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o)
  1763. .debug_frame 0x0000000000000000 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o)
  1764. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  1765. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  1766. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  1767. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1768. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1769. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1770. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1771. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1772. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1773. .text._sprintf_r
  1774. 0x0000000000000000 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1775. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  1776. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  1777. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  1778. .text._sscanf_r
  1779. 0x0000000000000000 0x5c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  1780. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  1781. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  1782. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  1783. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  1784. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  1785. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  1786. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1787. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1788. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1789. .text.strtod_l
  1790. 0x0000000000000000 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1791. .text.strtod 0x0000000000000000 0x24 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1792. .text.strtof_l
  1793. 0x0000000000000000 0xfc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1794. .text.strtof 0x0000000000000000 0x108 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1795. .rodata.strtof_l.cst4
  1796. 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1797. .rodata.strtof_l.cst8
  1798. 0x0000000000000000 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1799. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  1800. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  1801. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  1802. .text.strtol_l
  1803. 0x0000000000000000 0x1a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  1804. .text.strtol 0x0000000000000000 0x26 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  1805. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  1806. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  1807. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  1808. .text.__swbuf 0x0000000000000000 0x16 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  1809. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
  1810. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
  1811. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
  1812. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
  1813. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
  1814. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
  1815. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
  1816. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
  1817. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
  1818. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  1819. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  1820. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  1821. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  1822. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  1823. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  1824. .text.fflush 0x0000000000000000 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  1825. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1826. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1827. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1828. .text.__fp_lock
  1829. 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1830. .text.__fp_unlock
  1831. 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1832. .text._cleanup
  1833. 0x0000000000000000 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1834. .text.__sfp_lock_acquire
  1835. 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1836. .text.__sfp_lock_release
  1837. 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1838. .text.__sinit_lock_acquire
  1839. 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1840. .text.__sinit_lock_release
  1841. 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1842. .text.__fp_lock_all
  1843. 0x0000000000000000 0x1a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1844. .text.__fp_unlock_all
  1845. 0x0000000000000000 0x1a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1846. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  1847. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  1848. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  1849. .text._fwalk 0x0000000000000000 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  1850. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1851. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1852. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1853. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  1854. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  1855. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  1856. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1857. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1858. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1859. .text._setlocale_r
  1860. 0x0000000000000000 0x64 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1861. .text.__locale_mb_cur_max
  1862. 0x0000000000000000 0x1c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1863. .text.setlocale
  1864. 0x0000000000000000 0x16 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1865. .sbss._PathLocale
  1866. 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1867. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  1868. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  1869. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  1870. .text.localeconv
  1871. 0x0000000000000000 0x1c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  1872. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
  1873. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
  1874. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
  1875. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  1876. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  1877. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  1878. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
  1879. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
  1880. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
  1881. .text._mbtowc_r
  1882. 0x0000000000000000 0x1c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
  1883. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  1884. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  1885. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  1886. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  1887. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  1888. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  1889. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1890. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1891. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1892. .text._mprec_log10
  1893. 0x0000000000000000 0x5e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1894. .rodata.__mprec_tinytens
  1895. 0x0000000000000000 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1896. .rodata._mprec_log10.cst8
  1897. 0x0000000000000000 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1898. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  1899. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  1900. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  1901. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1902. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1903. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1904. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  1905. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  1906. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  1907. .text.__ssprint_r
  1908. 0x0000000000000000 0x13e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  1909. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  1910. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  1911. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  1912. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1913. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1914. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1915. .text.__sprint_r
  1916. 0x0000000000000000 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1917. .text.vfprintf
  1918. 0x0000000000000000 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1919. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  1920. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  1921. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  1922. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
  1923. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
  1924. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
  1925. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  1926. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  1927. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  1928. .text.cleanup_glue
  1929. 0x0000000000000000 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  1930. .text._reclaim_reent
  1931. 0x0000000000000000 0x10c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  1932. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
  1933. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
  1934. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
  1935. .text 0x0000000000000000 0x11a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strcmp.o)
  1936. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strcmp.o)
  1937. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strcmp.o)
  1938. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
  1939. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
  1940. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
  1941. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  1942. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  1943. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  1944. .text.strtoul_l
  1945. 0x0000000000000000 0x1a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  1946. .text.strtoul 0x0000000000000000 0x26 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  1947. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  1948. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  1949. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  1950. .text._ungetc_r
  1951. 0x0000000000000000 0x11e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  1952. .text.ungetc 0x0000000000000000 0x16 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  1953. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
  1954. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
  1955. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
  1956. .text._wctomb_r
  1957. 0x0000000000000000 0x1c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
  1958. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ctype_.o)
  1959. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ctype_.o)
  1960. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ctype_.o)
  1961. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
  1962. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
  1963. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
  1964. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
  1965. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
  1966. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
  1967. .text.__sfvwrite_r
  1968. 0x0000000000000000 0x306 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
  1969. .debug_frame 0x0000000000000000 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
  1970. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
  1971. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
  1972. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
  1973. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
  1974. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
  1975. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
  1976. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
  1977. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
  1978. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
  1979. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
  1980. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
  1981. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
  1982. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
  1983. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
  1984. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
  1985. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  1986. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  1987. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  1988. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  1989. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  1990. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  1991. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1992. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1993. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1994. .text.__unordsf2
  1995. 0x0000000000000000 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1996. .debug_frame 0x0000000000000000 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1997. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
  1998. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
  1999. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
  2000. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
  2001. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
  2002. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
  2003. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  2004. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  2005. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  2006. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  2007. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  2008. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  2009. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  2010. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  2011. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  2012. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  2013. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  2014. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  2015. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  2016. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  2017. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  2018. Memory Configuration
  2019. Name Origin Length Attributes
  2020. FLASH 0x0000000000005000 0x000000000003b000 xr
  2021. RAM 0x0000000020004000 0x000000000000c000 xrw
  2022. *default* 0x0000000000000000 0xffffffffffffffff
  2023. Linker script and memory map
  2024. LOAD ./components/ws2812b/user_ws2812b.o
  2025. LOAD ./components/ws2812b/ws2812b_spi.o
  2026. LOAD ./components/tools/AES_PKCS7.o
  2027. LOAD ./components/tools/_string.o
  2028. LOAD ./components/tools/my_math.o
  2029. LOAD ./components/tools/tools.o
  2030. LOAD ./components/tools/user_crc16.o
  2031. LOAD ./components/nfc/fm175xx.o
  2032. LOAD ./components/nfc/lpcd.o
  2033. LOAD ./components/nfc/mifare_card.o
  2034. LOAD ./components/nfc/type_a.o
  2035. LOAD ./components/nfc/type_b.o
  2036. LOAD ./components/nfc/user_nfc.o
  2037. LOAD ./components/nfc/user_spi.o
  2038. LOAD ./components/led/user_led.o
  2039. LOAD ./components/electlock/elect_sw.o
  2040. LOAD ./components/electlock/user_elect.o
  2041. LOAD ./components/config/user_config.o
  2042. LOAD ./components/charge/user_adc.o
  2043. LOAD ./components/charge/user_charge.o
  2044. LOAD ./components/charge/user_fan.o
  2045. LOAD ./components/can/dip_sw.o
  2046. LOAD ./components/can/user_can.o
  2047. LOAD ./components/action/ble_action.o
  2048. LOAD ./components/action/user_sever.o
  2049. LOAD ./User/app_drv_fifo/app_drv_fifo.o
  2050. LOAD ./User/app_main.o
  2051. LOAD ./User/ch32v20x_it.o
  2052. LOAD ./User/peripheral.o
  2053. LOAD ./User/system_ch32v20x.o
  2054. LOAD ./Startup/startup_ch32v20x_D8W.o
  2055. LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
  2056. LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
  2057. LOAD ./SRC/Peripheral/src/ch32v20x_can.o
  2058. LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
  2059. LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2060. LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
  2061. LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
  2062. LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
  2063. LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
  2064. LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
  2065. LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2066. LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
  2067. LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
  2068. LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
  2069. LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
  2070. LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
  2071. LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
  2072. LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
  2073. LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
  2074. LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
  2075. LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
  2076. LOAD ./SRC/Debug/debug.o
  2077. LOAD ./SRC/Core/core_riscv.o
  2078. LOAD ./Profile/devinfoservice.o
  2079. LOAD ./Profile/gattprofile.o
  2080. LOAD ./LIB/ble_task_scheduler.o
  2081. LOAD ./HAL/MCU.o
  2082. LOAD ./HAL/RTC.o
  2083. LOAD ./HAL/SLEEP.o
  2084. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a
  2085. LOAD d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a
  2086. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libIQmath_RV32.a
  2087. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
  2088. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a
  2089. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libc_nano.a
  2090. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
  2091. START GROUP
  2092. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
  2093. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libc_nano.a
  2094. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a
  2095. END GROUP
  2096. START GROUP
  2097. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
  2098. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libc_nano.a
  2099. LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a
  2100. END GROUP
  2101. 0x0000000000000800 __stack_size = 0x800
  2102. [!provide] PROVIDE (_stack_size = __stack_size)
  2103. 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
  2104. .init 0x0000000000005000 0x3c
  2105. 0x0000000000005000 _sinit = .
  2106. 0x0000000000005000 . = ALIGN (0x4)
  2107. *(SORT_NONE(.init))
  2108. .init 0x0000000000005000 0x38 ./Startup/startup_ch32v20x_D8W.o
  2109. 0x0000000000005000 _start
  2110. *(.ImageFlag)
  2111. .ImageFlag 0x0000000000005038 0x4 ./User/app_main.o
  2112. 0x0000000000005038 Image_Flag
  2113. *(.ImageFlag.*)
  2114. 0x000000000000503c . = ALIGN (0x4)
  2115. 0x000000000000503c _einit = .
  2116. .vector 0x000000000000503c 0x144
  2117. *(.vector)
  2118. .vector 0x000000000000503c 0x118 ./Startup/startup_ch32v20x_D8W.o
  2119. 0x0000000000005180 . = ALIGN (0x40)
  2120. *fill* 0x0000000000005154 0x2c
  2121. *(SORT_NONE(.handle_reset))
  2122. .highcode 0x0000000000005180 0xec
  2123. 0x0000000000005180 . = ALIGN (0x4)
  2124. *(.highcode)
  2125. .highcode 0x0000000000005180 0x14 ./User/app_main.o
  2126. 0x0000000000005180 Main_Circulation
  2127. .highcode 0x0000000000005194 0x4e ./LIB/ble_task_scheduler.o
  2128. 0x0000000000005194 Ecall_U_Mode_Handler
  2129. 0x0000000000005194 Ecall_M_Mode_Handler
  2130. *(.highcode.*)
  2131. *fill* 0x00000000000051e2 0x2
  2132. .highcode.LLE_IRQHandler
  2133. 0x00000000000051e4 0x86 ./LIB/ble_task_scheduler.o
  2134. 0x00000000000051e4 LLE_IRQHandler
  2135. 0x000000000000526c . = ALIGN (0x4)
  2136. *fill* 0x000000000000526a 0x2
  2137. .text 0x0000000000005270 0x10f80
  2138. 0x0000000000005270 . = ALIGN (0x4)
  2139. *(.text)
  2140. .text 0x0000000000005270 0x210 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  2141. 0x0000000000005270 get_gb_token
  2142. 0x00000000000052a6 wch_base64_decode
  2143. 0x00000000000052a8 wch_base64_encode
  2144. 0x00000000000052aa Wch_AES_get_length
  2145. 0x00000000000052ae device_encrypt
  2146. 0x000000000000530e device_decrypt
  2147. 0x00000000000053d6 production_lic_set
  2148. 0x000000000000540c check_lic_stat
  2149. .text 0x0000000000005480 0x26c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  2150. 0x0000000000005480 base64_encode
  2151. 0x00000000000055ce base64_decode
  2152. .text 0x00000000000056ec 0x4b8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  2153. 0x00000000000056ec set_production_lic_key
  2154. 0x00000000000059a4 get_AesKey
  2155. .text 0x0000000000005ba4 0xa8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
  2156. 0x0000000000005ba4 memset
  2157. *(.text.*)
  2158. .text.vUser_ws2812b_set_wrByte
  2159. 0x0000000000005c4c 0x28 ./components/ws2812b/user_ws2812b.o
  2160. .text.user_ws2812b_task_process_event
  2161. 0x0000000000005c74 0xe0 ./components/ws2812b/user_ws2812b.o
  2162. .text.vUser_ws2812b_task_start
  2163. 0x0000000000005d54 0x12 ./components/ws2812b/user_ws2812b.o
  2164. 0x0000000000005d54 vUser_ws2812b_task_start
  2165. .text.vUser_ws2812b_init
  2166. 0x0000000000005d66 0x9a ./components/ws2812b/user_ws2812b.o
  2167. 0x0000000000005d66 vUser_ws2812b_init
  2168. .text.vUser_ws2812b_set_tx_stat
  2169. 0x0000000000005e00 0x6 ./components/ws2812b/user_ws2812b.o
  2170. 0x0000000000005e00 vUser_ws2812b_set_tx_stat
  2171. .text.vUser_ws2812b_set_stat
  2172. 0x0000000000005e06 0x1c ./components/ws2812b/user_ws2812b.o
  2173. 0x0000000000005e06 vUser_ws2812b_set_stat
  2174. .text.Ws2812b_spi_dma_init
  2175. 0x0000000000005e22 0x7a ./components/ws2812b/ws2812b_spi.o
  2176. 0x0000000000005e22 Ws2812b_spi_dma_init
  2177. .text.ws2812b_spi_Init
  2178. 0x0000000000005e9c 0x8c ./components/ws2812b/ws2812b_spi.o
  2179. 0x0000000000005e9c ws2812b_spi_Init
  2180. .text.bWs2812b_spi_WriteByte
  2181. 0x0000000000005f28 0x42 ./components/ws2812b/ws2812b_spi.o
  2182. 0x0000000000005f28 bWs2812b_spi_WriteByte
  2183. .text.XorBytes
  2184. 0x0000000000005f6a 0x22 ./components/tools/AES_PKCS7.o
  2185. .text.ShiftRows
  2186. 0x0000000000005f8c 0x60 ./components/tools/AES_PKCS7.o
  2187. .text.GfMultBy02
  2188. 0x0000000000005fec 0x18 ./components/tools/AES_PKCS7.o
  2189. .text.MixColumns
  2190. 0x0000000000006004 0xee ./components/tools/AES_PKCS7.o
  2191. .text.AES_Init
  2192. 0x00000000000060f2 0x96 ./components/tools/AES_PKCS7.o
  2193. 0x00000000000060f2 AES_Init
  2194. .text.AES_get_length
  2195. 0x0000000000006188 0x6 ./components/tools/AES_PKCS7.o
  2196. 0x0000000000006188 AES_get_length
  2197. .text.AES_Encrypt_PKCS7
  2198. 0x000000000000618e 0xfa ./components/tools/AES_PKCS7.o
  2199. 0x000000000000618e AES_Encrypt_PKCS7
  2200. .text.AES_Decrypt
  2201. 0x0000000000006288 0xb2 ./components/tools/AES_PKCS7.o
  2202. 0x0000000000006288 AES_Decrypt
  2203. .text._strlen 0x000000000000633a 0x14 ./components/tools/_string.o
  2204. 0x000000000000633a _strlen
  2205. .text._strstr 0x000000000000634e 0x6c ./components/tools/_string.o
  2206. 0x000000000000634e _strstr
  2207. .text.rng_init
  2208. 0x00000000000063ba 0x2 ./components/tools/tools.o
  2209. 0x00000000000063ba rng_init
  2210. .text.Get_Rand
  2211. 0x00000000000063bc 0xa ./components/tools/tools.o
  2212. 0x00000000000063bc Get_Rand
  2213. .text.SetReg 0x00000000000063c6 0x10 ./components/nfc/fm175xx.o
  2214. 0x00000000000063c6 SetReg
  2215. .text.Read_Reg
  2216. 0x00000000000063d6 0x4 ./components/nfc/fm175xx.o
  2217. 0x00000000000063d6 Read_Reg
  2218. .text.Write_Reg
  2219. 0x00000000000063da 0x10 ./components/nfc/fm175xx.o
  2220. 0x00000000000063da Write_Reg
  2221. .text.Read_FIFO
  2222. 0x00000000000063ea 0x2c ./components/nfc/fm175xx.o
  2223. 0x00000000000063ea Read_FIFO
  2224. .text.Write_FIFO
  2225. 0x0000000000006416 0x2c ./components/nfc/fm175xx.o
  2226. 0x0000000000006416 Write_FIFO
  2227. .text.Set_BitMask
  2228. 0x0000000000006442 0x26 ./components/nfc/fm175xx.o
  2229. 0x0000000000006442 Set_BitMask
  2230. .text.Clear_FIFO
  2231. 0x0000000000006468 0x1c ./components/nfc/fm175xx.o
  2232. 0x0000000000006468 Clear_FIFO
  2233. .text.Clear_BitMask
  2234. 0x0000000000006484 0x2a ./components/nfc/fm175xx.o
  2235. 0x0000000000006484 Clear_BitMask
  2236. .text.Write_Ext_Reg
  2237. 0x00000000000064ae 0x2e ./components/nfc/fm175xx.o
  2238. 0x00000000000064ae Write_Ext_Reg
  2239. .text.Set_Rf 0x00000000000064dc 0x78 ./components/nfc/fm175xx.o
  2240. 0x00000000000064dc Set_Rf
  2241. .text.Pcd_Comm
  2242. 0x0000000000006554 0x16e ./components/nfc/fm175xx.o
  2243. 0x0000000000006554 Pcd_Comm
  2244. .text.Pcd_SetTimer
  2245. 0x00000000000066c2 0x74 ./components/nfc/fm175xx.o
  2246. 0x00000000000066c2 Pcd_SetTimer
  2247. .text.Pcd_ConfigISOType
  2248. 0x0000000000006736 0xd4 ./components/nfc/fm175xx.o
  2249. 0x0000000000006736 Pcd_ConfigISOType
  2250. .text.FM175X_SoftReset
  2251. 0x000000000000680a 0x1c ./components/nfc/fm175xx.o
  2252. 0x000000000000680a FM175X_SoftReset
  2253. .text.Lpcd_Set_IRQ_pin
  2254. 0x0000000000006826 0x18 ./components/nfc/lpcd.o
  2255. 0x0000000000006826 Lpcd_Set_IRQ_pin
  2256. .text.Lpcd_Init_Register
  2257. 0x000000000000683e 0x2a ./components/nfc/lpcd.o
  2258. 0x000000000000683e Lpcd_Init_Register
  2259. .text.TyteA_Read
  2260. 0x0000000000006868 0x5e ./components/nfc/lpcd.o
  2261. 0x0000000000006868 TyteA_Read
  2262. .text.RightMoveBit
  2263. 0x00000000000068c6 0x1a ./components/nfc/type_a.o
  2264. 0x00000000000068c6 RightMoveBit
  2265. .text.LeftMoveBit
  2266. 0x00000000000068e0 0x1c ./components/nfc/type_a.o
  2267. 0x00000000000068e0 LeftMoveBit
  2268. .text.CollSaveUID
  2269. 0x00000000000068fc 0xd4 ./components/nfc/type_a.o
  2270. 0x00000000000068fc CollSaveUID
  2271. .text.TypeA_Set_BitFraming
  2272. 0x00000000000069d0 0xf4 ./components/nfc/type_a.o
  2273. 0x00000000000069d0 TypeA_Set_BitFraming
  2274. .text.TypeA_Request
  2275. 0x0000000000006ac4 0x72 ./components/nfc/type_a.o
  2276. 0x0000000000006ac4 TypeA_Request
  2277. .text.TypeA_Anticollision
  2278. 0x0000000000006b36 0xb4 ./components/nfc/type_a.o
  2279. 0x0000000000006b36 TypeA_Anticollision
  2280. .text.TypeA_Select
  2281. 0x0000000000006bea 0x94 ./components/nfc/type_a.o
  2282. 0x0000000000006bea TypeA_Select
  2283. .text.TypeA_CardActive
  2284. 0x0000000000006c7e 0xfe ./components/nfc/type_a.o
  2285. 0x0000000000006c7e TypeA_CardActive
  2286. .text.TypeA_Halt
  2287. 0x0000000000006d7c 0x54 ./components/nfc/type_a.o
  2288. 0x0000000000006d7c TypeA_Halt
  2289. .text.prvUser_nfc_upload_card_stat
  2290. 0x0000000000006dd0 0x76 ./components/nfc/user_nfc.o
  2291. .text.Card_Check.part.0
  2292. 0x0000000000006e46 0x110 ./components/nfc/user_nfc.o
  2293. .text.user_nfc_task_process_event
  2294. 0x0000000000006f56 0x26e ./components/nfc/user_nfc.o
  2295. .text.ReadRawRC
  2296. 0x00000000000071c4 0x58 ./components/nfc/user_nfc.o
  2297. 0x00000000000071c4 ReadRawRC
  2298. .text.WriteRawRC
  2299. 0x000000000000721c 0x50 ./components/nfc/user_nfc.o
  2300. 0x000000000000721c WriteRawRC
  2301. .text.vUser_nfc_set_upload_key_stat_func
  2302. 0x000000000000726c 0x6 ./components/nfc/user_nfc.o
  2303. 0x000000000000726c vUser_nfc_set_upload_key_stat_func
  2304. .text.vUser_nfc_task_start
  2305. 0x0000000000007272 0x28 ./components/nfc/user_nfc.o
  2306. 0x0000000000007272 vUser_nfc_task_start
  2307. .text.vUser_nfc_init
  2308. 0x000000000000729a 0xf4 ./components/nfc/user_nfc.o
  2309. 0x000000000000729a vUser_nfc_init
  2310. .text.vUser_nfc_set_charge_stat
  2311. 0x000000000000738e 0x1c ./components/nfc/user_nfc.o
  2312. 0x000000000000738e vUser_nfc_set_charge_stat
  2313. .text.user_spi_Init
  2314. 0x00000000000073aa 0x9c ./components/nfc/user_spi.o
  2315. 0x00000000000073aa user_spi_Init
  2316. .text.SPI_ReadWriteByte
  2317. 0x0000000000007446 0x60 ./components/nfc/user_spi.o
  2318. 0x0000000000007446 SPI_ReadWriteByte
  2319. .text.prvSet_led_duty
  2320. 0x00000000000074a6 0x20 ./components/led/user_led.o
  2321. .text.led_task_process_event
  2322. 0x00000000000074c6 0x112 ./components/led/user_led.o
  2323. .text.set_led_indication
  2324. 0x00000000000075d8 0xf2 ./components/led/user_led.o
  2325. 0x00000000000075d8 set_led_indication
  2326. .text.led_task_init
  2327. 0x00000000000076ca 0x2c ./components/led/user_led.o
  2328. 0x00000000000076ca led_task_init
  2329. .text.led_task_start
  2330. 0x00000000000076f6 0x12 ./components/led/user_led.o
  2331. 0x00000000000076f6 led_task_start
  2332. .text.vUser_led_set_view_stat
  2333. 0x0000000000007708 0xce ./components/led/user_led.o
  2334. 0x0000000000007708 vUser_led_set_view_stat
  2335. .text.vUser_led_set_alarm_view
  2336. 0x00000000000077d6 0x13a ./components/led/user_led.o
  2337. 0x00000000000077d6 vUser_led_set_alarm_view
  2338. .text.get_electsw_right_level
  2339. 0x0000000000007910 0x1c ./components/electlock/elect_sw.o
  2340. .text.get_electsw_left_level
  2341. 0x000000000000792c 0x1c ./components/electlock/elect_sw.o
  2342. .text.vElectsw_init
  2343. 0x0000000000007948 0x44 ./components/electlock/elect_sw.o
  2344. 0x0000000000007948 vElectsw_init
  2345. .text.electsw_task_process_event
  2346. 0x000000000000798c 0xe2 ./components/electlock/elect_sw.o
  2347. 0x000000000000798c electsw_task_process_event
  2348. .text.electsw_task_start
  2349. 0x0000000000007a6e 0x12 ./components/electlock/elect_sw.o
  2350. 0x0000000000007a6e electsw_task_start
  2351. .text.vElectsw_set_upload_func
  2352. 0x0000000000007a80 0x6 ./components/electlock/elect_sw.o
  2353. 0x0000000000007a80 vElectsw_set_upload_func
  2354. .text.bElectsw_get_stat
  2355. 0x0000000000007a86 0xc ./components/electlock/elect_sw.o
  2356. 0x0000000000007a86 bElectsw_get_stat
  2357. .text.bElectsw_set_fail
  2358. 0x0000000000007a92 0xe ./components/electlock/elect_sw.o
  2359. 0x0000000000007a92 bElectsw_set_fail
  2360. .text.elect_task_process_event
  2361. 0x0000000000007aa0 0xa8 ./components/electlock/user_elect.o
  2362. .text.elect_right_work_stat
  2363. 0x0000000000007b48 0x64 ./components/electlock/user_elect.o
  2364. .text.elect_left_work_stat
  2365. 0x0000000000007bac 0x5a ./components/electlock/user_elect.o
  2366. .text.set_elect_work_stat
  2367. 0x0000000000007c06 0x52 ./components/electlock/user_elect.o
  2368. 0x0000000000007c06 set_elect_work_stat
  2369. .text.elect_start
  2370. 0x0000000000007c58 0x28 ./components/electlock/user_elect.o
  2371. 0x0000000000007c58 elect_start
  2372. .text.elect_task_init
  2373. 0x0000000000007c80 0xcc ./components/electlock/user_elect.o
  2374. 0x0000000000007c80 elect_task_init
  2375. .text.elect_task_start
  2376. 0x0000000000007d4c 0x12 ./components/electlock/user_elect.o
  2377. 0x0000000000007d4c elect_task_start
  2378. .text.vUser_elect_set_upload_stat_func
  2379. 0x0000000000007d5e 0x6 ./components/electlock/user_elect.o
  2380. 0x0000000000007d5e vUser_elect_set_upload_stat_func
  2381. .text.set_user_config_param_init
  2382. 0x0000000000007d64 0x1c ./components/config/user_config.o
  2383. 0x0000000000007d64 set_user_config_param_init
  2384. .text.check_can_baud
  2385. 0x0000000000007d80 0x66 ./components/config/user_config.o
  2386. 0x0000000000007d80 check_can_baud
  2387. .text.FLASH_read
  2388. 0x0000000000007de6 0x18 ./components/config/user_config.o
  2389. 0x0000000000007de6 FLASH_read
  2390. .text.User_Config_Write_Config
  2391. 0x0000000000007dfe 0x50 ./components/config/user_config.o
  2392. 0x0000000000007dfe User_Config_Write_Config
  2393. .text.User_Config_Read_Config
  2394. 0x0000000000007e4e 0x94 ./components/config/user_config.o
  2395. 0x0000000000007e4e User_Config_Read_Config
  2396. .text.user_config_save_can_baud
  2397. 0x0000000000007ee2 0x3c ./components/config/user_config.o
  2398. 0x0000000000007ee2 user_config_save_can_baud
  2399. .text.user_config_init
  2400. 0x0000000000007f1e 0x2 ./components/config/user_config.o
  2401. 0x0000000000007f1e user_config_init
  2402. .text.Get_ConversionVal
  2403. 0x0000000000007f20 0x2c ./components/charge/user_adc.o
  2404. 0x0000000000007f20 Get_ConversionVal
  2405. .text.Get_Temp
  2406. 0x0000000000007f4c 0x5e ./components/charge/user_adc.o
  2407. 0x0000000000007f4c Get_Temp
  2408. .text.adc_task_start
  2409. 0x0000000000007faa 0x2a ./components/charge/user_adc.o
  2410. 0x0000000000007faa adc_task_start
  2411. .text.adc_task_process_event
  2412. 0x0000000000007fd4 0x142 ./components/charge/user_adc.o
  2413. 0x0000000000007fd4 adc_task_process_event
  2414. .text.adc_init
  2415. 0x0000000000008116 0x184 ./components/charge/user_adc.o
  2416. 0x0000000000008116 adc_init
  2417. .text.set_adc_upload_func
  2418. 0x000000000000829a 0x6 ./components/charge/user_adc.o
  2419. 0x000000000000829a set_adc_upload_func
  2420. .text.vUser_adc_dma_finish
  2421. 0x00000000000082a0 0x36 ./components/charge/user_adc.o
  2422. 0x00000000000082a0 vUser_adc_dma_finish
  2423. .text.prvUser_charge_upload_stat
  2424. 0x00000000000082d6 0x10 ./components/charge/user_charge.o
  2425. .text.user_charge_task_process_event
  2426. 0x00000000000082e6 0x9a ./components/charge/user_charge.o
  2427. .text.set_user_charge_Queue
  2428. 0x0000000000008380 0x1a ./components/charge/user_charge.o
  2429. 0x0000000000008380 set_user_charge_Queue
  2430. .text.user_charge_init
  2431. 0x000000000000839a 0x8e ./components/charge/user_charge.o
  2432. 0x000000000000839a user_charge_init
  2433. .text.vUser_charge_set_upload_stat_func
  2434. 0x0000000000008428 0x6 ./components/charge/user_charge.o
  2435. 0x0000000000008428 vUser_charge_set_upload_stat_func
  2436. .text.right_fan_duty
  2437. 0x000000000000842e 0xa ./components/charge/user_fan.o
  2438. .text.left_fan_duty
  2439. 0x0000000000008438 0xa ./components/charge/user_fan.o
  2440. .text.set_fan_indication
  2441. 0x0000000000008442 0x34 ./components/charge/user_fan.o
  2442. 0x0000000000008442 set_fan_indication
  2443. .text.fan_init
  2444. 0x0000000000008476 0x108 ./components/charge/user_fan.o
  2445. 0x0000000000008476 fan_init
  2446. .text.set_dispsw_addr
  2447. 0x000000000000857e 0x52 ./components/can/dip_sw.o
  2448. .text.get_dipsw04_level
  2449. 0x00000000000085d0 0x1a ./components/can/dip_sw.o
  2450. .text.get_dipsw03_level
  2451. 0x00000000000085ea 0x1a ./components/can/dip_sw.o
  2452. .text.get_dipsw02_level
  2453. 0x0000000000008604 0x1a ./components/can/dip_sw.o
  2454. .text.get_dipsw01_level
  2455. 0x000000000000861e 0x1a ./components/can/dip_sw.o
  2456. .text.vDipsw_init
  2457. 0x0000000000008638 0x68 ./components/can/dip_sw.o
  2458. 0x0000000000008638 vDipsw_init
  2459. .text.dipsw_task_process_event
  2460. 0x00000000000086a0 0xac ./components/can/dip_sw.o
  2461. 0x00000000000086a0 dipsw_task_process_event
  2462. .text.dipsw_task_start
  2463. 0x000000000000874c 0x12 ./components/can/dip_sw.o
  2464. 0x000000000000874c dipsw_task_start
  2465. .text.vDipsw_set_upload_func
  2466. 0x000000000000875e 0x6 ./components/can/dip_sw.o
  2467. 0x000000000000875e vDipsw_set_upload_func
  2468. .text.ucCAN_Send_Msg
  2469. 0x0000000000008764 0x98 ./components/can/user_can.o
  2470. 0x0000000000008764 ucCAN_Send_Msg
  2471. .text.user_can_task_process_event
  2472. 0x00000000000087fc 0x7c ./components/can/user_can.o
  2473. .text.vUser_can_send_data
  2474. 0x0000000000008878 0x4e ./components/can/user_can.o
  2475. 0x0000000000008878 vUser_can_send_data
  2476. .text.vUser_can_recv_data
  2477. 0x00000000000088c6 0x36 ./components/can/user_can.o
  2478. 0x00000000000088c6 vUser_can_recv_data
  2479. .text.vUser_can_set_recv_data_func
  2480. 0x00000000000088fc 0x6 ./components/can/user_can.o
  2481. 0x00000000000088fc vUser_can_set_recv_data_func
  2482. .text.vUser_can_set_addr
  2483. 0x0000000000008902 0x6c ./components/can/user_can.o
  2484. 0x0000000000008902 vUser_can_set_addr
  2485. .text.vUser_can_init
  2486. 0x000000000000896e 0x1ba ./components/can/user_can.o
  2487. 0x000000000000896e vUser_can_init
  2488. .text.ble_owned_data_send
  2489. 0x0000000000008b28 0x10 ./components/action/ble_action.o
  2490. .text.ble_action_set_rst
  2491. 0x0000000000008b38 0x24 ./components/action/ble_action.o
  2492. .text.set_token
  2493. 0x0000000000008b5c 0x20 ./components/action/ble_action.o
  2494. .text.Set_ble_data_s_sendData
  2495. 0x0000000000008b7c 0x7a ./components/action/ble_action.o
  2496. .text.ble_devRst_set_stat_send
  2497. 0x0000000000008bf6 0x2e ./components/action/ble_action.o
  2498. .text.Check_UnixTime_Token
  2499. 0x0000000000008c24 0x3a ./components/action/ble_action.o
  2500. .text.ble_Return_Stat_Send.constprop.3
  2501. 0x0000000000008c5e 0x1e ./components/action/ble_action.o
  2502. .text.Jump_OTA
  2503. 0x0000000000008c7c 0x48 ./components/action/ble_action.o
  2504. 0x0000000000008c7c Jump_OTA
  2505. .text.ble_connect_act
  2506. 0x0000000000008cc4 0x18 ./components/action/ble_action.o
  2507. 0x0000000000008cc4 ble_connect_act
  2508. .text.ble_get_nfc_send
  2509. 0x0000000000008cdc 0x86 ./components/action/ble_action.o
  2510. 0x0000000000008cdc ble_get_nfc_send
  2511. .text.download_ble_data_callback
  2512. 0x0000000000008d62 0x37e ./components/action/ble_action.o
  2513. 0x0000000000008d62 download_ble_data_callback
  2514. .text.vBle_action_init
  2515. 0x00000000000090e0 0x4 ./components/action/ble_action.o
  2516. 0x00000000000090e0 vBle_action_init
  2517. .text.download_ble_file_callback
  2518. 0x00000000000090e4 0x4 ./components/action/ble_action.o
  2519. 0x00000000000090e4 download_ble_file_callback
  2520. .text.set_upload_ble_data_func
  2521. 0x00000000000090e8 0x6 ./components/action/ble_action.o
  2522. 0x00000000000090e8 set_upload_ble_data_func
  2523. .text.prvUser_can_recv_data_callback
  2524. 0x00000000000090ee 0x26 ./components/action/user_sever.o
  2525. .text.prvAdc_upload_callback
  2526. 0x0000000000009114 0x16e ./components/action/user_sever.o
  2527. .text.vUser_server_set_led_stat
  2528. 0x0000000000009282 0x6a ./components/action/user_sever.o
  2529. .text.prvUser_server_check_elect_stat
  2530. 0x00000000000092ec 0x3a ./components/action/user_sever.o
  2531. .text.prvElectsw_upload_callback
  2532. 0x0000000000009326 0x42 ./components/action/user_sever.o
  2533. .text.prvUser_nfc_upload_card_callback
  2534. 0x0000000000009368 0x78 ./components/action/user_sever.o
  2535. .text.vUser_charge_upload_stat_callback
  2536. 0x00000000000093e0 0x70 ./components/action/user_sever.o
  2537. .text.user_server_task_process_event
  2538. 0x0000000000009450 0x2d8 ./components/action/user_sever.o
  2539. .text.vUser_elect_upload_stat_callback
  2540. 0x0000000000009728 0x5e ./components/action/user_sever.o
  2541. .text.prvDipsw_upload_callback
  2542. 0x0000000000009786 0x38 ./components/action/user_sever.o
  2543. .text.vUser_server_task_start
  2544. 0x00000000000097be 0x12 ./components/action/user_sever.o
  2545. 0x00000000000097be vUser_server_task_start
  2546. .text.vUser_server_get_key_data
  2547. 0x00000000000097d0 0x6 ./components/action/user_sever.o
  2548. 0x00000000000097d0 vUser_server_get_key_data
  2549. .text.vUser_server_init
  2550. 0x00000000000097d6 0x80 ./components/action/user_sever.o
  2551. 0x00000000000097d6 vUser_server_init
  2552. .text.startup.main
  2553. 0x0000000000009856 0x100 ./User/app_main.o
  2554. 0x0000000000009856 main
  2555. .text.NMI_Handler
  2556. 0x0000000000009956 0x4 ./User/ch32v20x_it.o
  2557. 0x0000000000009956 NMI_Handler
  2558. .text.HardFault_Handler
  2559. 0x000000000000995a 0x2 ./User/ch32v20x_it.o
  2560. 0x000000000000995a HardFault_Handler
  2561. .text.BB_IRQHandler
  2562. 0x000000000000995c 0xc ./User/ch32v20x_it.o
  2563. 0x000000000000995c BB_IRQHandler
  2564. .text.DMA1_Channel1_IRQHandler
  2565. 0x0000000000009968 0x16 ./User/ch32v20x_it.o
  2566. 0x0000000000009968 DMA1_Channel1_IRQHandler
  2567. .text.USB_LP_CAN1_RX0_IRQHandler
  2568. 0x000000000000997e 0x38 ./User/ch32v20x_it.o
  2569. 0x000000000000997e USB_LP_CAN1_RX0_IRQHandler
  2570. .text.DMA1_Channel5_IRQHandler
  2571. 0x00000000000099b6 0x3a ./User/ch32v20x_it.o
  2572. 0x00000000000099b6 DMA1_Channel5_IRQHandler
  2573. .text.peripheralRssiCB
  2574. 0x00000000000099f0 0x2 ./User/peripheral.o
  2575. .text.simpleProfileChangeCB
  2576. 0x00000000000099f2 0x2a ./User/peripheral.o
  2577. .text.Peripheral_ProcessEvent
  2578. 0x0000000000009a1c 0x14e ./User/peripheral.o
  2579. 0x0000000000009a1c Peripheral_ProcessEvent
  2580. .text.peripheralParamUpdateCB
  2581. 0x0000000000009b6a 0x30 ./User/peripheral.o
  2582. .text.Peripheral_LinkTerminated
  2583. 0x0000000000009b9a 0x5e ./User/peripheral.o
  2584. .text.peripheralStateNotificationCB
  2585. 0x0000000000009bf8 0x19e ./User/peripheral.o
  2586. .text.Peripheral_Init
  2587. 0x0000000000009d96 0x202 ./User/peripheral.o
  2588. 0x0000000000009d96 Peripheral_Init
  2589. .text.ble_data_send
  2590. 0x0000000000009f98 0x6a ./User/peripheral.o
  2591. 0x0000000000009f98 ble_data_send
  2592. .text.set_download_ble_data_func
  2593. 0x000000000000a002 0x6 ./User/peripheral.o
  2594. 0x000000000000a002 set_download_ble_data_func
  2595. .text.set_download_ble_file_func
  2596. 0x000000000000a008 0x6 ./User/peripheral.o
  2597. 0x000000000000a008 set_download_ble_file_func
  2598. .text.set_ble_connect_evtfunc
  2599. 0x000000000000a00e 0x6 ./User/peripheral.o
  2600. 0x000000000000a00e set_ble_connect_evtfunc
  2601. .text.SystemInit
  2602. 0x000000000000a014 0xea ./User/system_ch32v20x.o
  2603. 0x000000000000a014 SystemInit
  2604. .text.SystemCoreClockUpdate
  2605. 0x000000000000a0fe 0xac ./User/system_ch32v20x.o
  2606. 0x000000000000a0fe SystemCoreClockUpdate
  2607. .text.vector_handler
  2608. 0x000000000000a1aa 0x2 ./Startup/startup_ch32v20x_D8W.o
  2609. 0x000000000000a1aa EXTI2_IRQHandler
  2610. 0x000000000000a1aa TIM1_CC_IRQHandler
  2611. 0x000000000000a1aa SysTick_Handler
  2612. 0x000000000000a1aa PVD_IRQHandler
  2613. 0x000000000000a1aa EXTI3_IRQHandler
  2614. 0x000000000000a1aa USBFS_IRQHandler
  2615. 0x000000000000a1aa EXTI0_IRQHandler
  2616. 0x000000000000a1aa I2C2_EV_IRQHandler
  2617. 0x000000000000a1aa ADC1_2_IRQHandler
  2618. 0x000000000000a1aa Break_Point_Handler
  2619. 0x000000000000a1aa SPI1_IRQHandler
  2620. 0x000000000000a1aa TAMPER_IRQHandler
  2621. 0x000000000000a1aa OSCWakeUp_IRQHandler
  2622. 0x000000000000a1aa DMA1_Channel4_IRQHandler
  2623. 0x000000000000a1aa USART3_IRQHandler
  2624. 0x000000000000a1aa RTC_IRQHandler
  2625. 0x000000000000a1aa DMA1_Channel7_IRQHandler
  2626. 0x000000000000a1aa CAN1_RX1_IRQHandler
  2627. 0x000000000000a1aa TIM4_IRQHandler
  2628. 0x000000000000a1aa I2C1_EV_IRQHandler
  2629. 0x000000000000a1aa DMA1_Channel6_IRQHandler
  2630. 0x000000000000a1aa UART4_IRQHandler
  2631. 0x000000000000a1aa TIM3_IRQHandler
  2632. 0x000000000000a1aa RCC_IRQHandler
  2633. 0x000000000000a1aa TIM1_TRG_COM_IRQHandler
  2634. 0x000000000000a1aa EXTI15_10_IRQHandler
  2635. 0x000000000000a1aa DMA1_Channel8_IRQHandler
  2636. 0x000000000000a1aa TIM5_IRQHandler
  2637. 0x000000000000a1aa EXTI9_5_IRQHandler
  2638. 0x000000000000a1aa SPI2_IRQHandler
  2639. 0x000000000000a1aa OSC32KCal_IRQHandler
  2640. 0x000000000000a1aa EXTI4_IRQHandler
  2641. 0x000000000000a1aa USB_HP_CAN1_TX_IRQHandler
  2642. 0x000000000000a1aa DMA1_Channel3_IRQHandler
  2643. 0x000000000000a1aa ETH_IRQHandler
  2644. 0x000000000000a1aa TIM1_UP_IRQHandler
  2645. 0x000000000000a1aa WWDG_IRQHandler
  2646. 0x000000000000a1aa TIM2_IRQHandler
  2647. 0x000000000000a1aa SW_Handler
  2648. 0x000000000000a1aa TIM1_BRK_IRQHandler
  2649. 0x000000000000a1aa EXTI1_IRQHandler
  2650. 0x000000000000a1aa USART2_IRQHandler
  2651. 0x000000000000a1aa ETHWakeUp_IRQHandler
  2652. 0x000000000000a1aa I2C2_ER_IRQHandler
  2653. 0x000000000000a1aa DMA1_Channel2_IRQHandler
  2654. 0x000000000000a1aa CAN1_SCE_IRQHandler
  2655. 0x000000000000a1aa FLASH_IRQHandler
  2656. 0x000000000000a1aa USBFSWakeUp_IRQHandler
  2657. 0x000000000000a1aa USART1_IRQHandler
  2658. 0x000000000000a1aa I2C1_ER_IRQHandler
  2659. 0x000000000000a1aa USBWakeUp_IRQHandler
  2660. .text.handle_reset
  2661. 0x000000000000a1ac 0x8a ./Startup/startup_ch32v20x_D8W.o
  2662. 0x000000000000a1ac handle_reset
  2663. .text.ADC_DeInit
  2664. 0x000000000000a236 0x4c ./SRC/Peripheral/src/ch32v20x_adc.o
  2665. 0x000000000000a236 ADC_DeInit
  2666. .text.ADC_Init
  2667. 0x000000000000a282 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
  2668. 0x000000000000a282 ADC_Init
  2669. .text.ADC_Cmd 0x000000000000a2d8 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
  2670. 0x000000000000a2d8 ADC_Cmd
  2671. .text.ADC_DMACmd
  2672. 0x000000000000a2e8 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  2673. 0x000000000000a2e8 ADC_DMACmd
  2674. .text.ADC_ResetCalibration
  2675. 0x000000000000a2fa 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2676. 0x000000000000a2fa ADC_ResetCalibration
  2677. .text.ADC_GetResetCalibrationStatus
  2678. 0x000000000000a304 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2679. 0x000000000000a304 ADC_GetResetCalibrationStatus
  2680. .text.ADC_StartCalibration
  2681. 0x000000000000a30c 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2682. 0x000000000000a30c ADC_StartCalibration
  2683. .text.ADC_GetCalibrationStatus
  2684. 0x000000000000a316 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2685. 0x000000000000a316 ADC_GetCalibrationStatus
  2686. .text.ADC_SoftwareStartConvCmd
  2687. 0x000000000000a31e 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2688. 0x000000000000a31e ADC_SoftwareStartConvCmd
  2689. .text.ADC_RegularChannelConfig
  2690. 0x000000000000a336 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2691. 0x000000000000a336 ADC_RegularChannelConfig
  2692. .text.ADC_GetConversionValue
  2693. 0x000000000000a3ee 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2694. 0x000000000000a3ee ADC_GetConversionValue
  2695. .text.ADC_TempSensorVrefintCmd
  2696. 0x000000000000a3f6 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
  2697. 0x000000000000a3f6 ADC_TempSensorVrefintCmd
  2698. .text.ADC_GetFlagStatus
  2699. 0x000000000000a416 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2700. 0x000000000000a416 ADC_GetFlagStatus
  2701. .text.ADC_BufferCmd
  2702. 0x000000000000a420 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2703. 0x000000000000a420 ADC_BufferCmd
  2704. .text.Get_CalibrationValue
  2705. 0x000000000000a438 0x13a ./SRC/Peripheral/src/ch32v20x_adc.o
  2706. 0x000000000000a438 Get_CalibrationValue
  2707. .text.CAN_Init
  2708. 0x000000000000a572 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
  2709. 0x000000000000a572 CAN_Init
  2710. .text.CAN_FilterInit
  2711. 0x000000000000a65a 0xee ./SRC/Peripheral/src/ch32v20x_can.o
  2712. 0x000000000000a65a CAN_FilterInit
  2713. .text.CAN_Transmit
  2714. 0x000000000000a748 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
  2715. 0x000000000000a748 CAN_Transmit
  2716. .text.CAN_TransmitStatus
  2717. 0x000000000000a804 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
  2718. 0x000000000000a804 CAN_TransmitStatus
  2719. .text.CAN_Receive
  2720. 0x000000000000a866 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
  2721. 0x000000000000a866 CAN_Receive
  2722. .text.CAN_ITConfig
  2723. 0x000000000000a8f2 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
  2724. 0x000000000000a8f2 CAN_ITConfig
  2725. .text.CAN_GetITStatus
  2726. 0x000000000000a904 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
  2727. 0x000000000000a904 CAN_GetITStatus
  2728. .text.CAN_ClearITPendingBit
  2729. 0x000000000000a9d4 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
  2730. 0x000000000000a9d4 CAN_ClearITPendingBit
  2731. .text.DBGMCU_GetCHIPID
  2732. 0x000000000000aa68 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2733. 0x000000000000aa68 DBGMCU_GetCHIPID
  2734. .text.DMA_DeInit
  2735. 0x000000000000aa72 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
  2736. 0x000000000000aa72 DMA_DeInit
  2737. .text.DMA_Init
  2738. 0x000000000000ab0e 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
  2739. 0x000000000000ab0e DMA_Init
  2740. .text.DMA_Cmd 0x000000000000ab46 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
  2741. 0x000000000000ab46 DMA_Cmd
  2742. .text.DMA_ITConfig
  2743. 0x000000000000ab5a 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
  2744. 0x000000000000ab5a DMA_ITConfig
  2745. .text.DMA_SetCurrDataCounter
  2746. 0x000000000000ab6c 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  2747. 0x000000000000ab6c DMA_SetCurrDataCounter
  2748. .text.DMA_GetFlagStatus
  2749. 0x000000000000ab70 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
  2750. 0x000000000000ab70 DMA_GetFlagStatus
  2751. .text.DMA_GetITStatus
  2752. 0x000000000000ab7e 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  2753. 0x000000000000ab7e DMA_GetITStatus
  2754. .text.DMA_ClearITPendingBit
  2755. 0x000000000000ab82 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  2756. 0x000000000000ab82 DMA_ClearITPendingBit
  2757. .text.EXTI_ClearITPendingBit
  2758. 0x000000000000ab8a 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  2759. 0x000000000000ab8a EXTI_ClearITPendingBit
  2760. .text.FLASH_Unlock_Fast
  2761. 0x000000000000ab94 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  2762. 0x000000000000ab94 FLASH_Unlock_Fast
  2763. .text.FLASH_Lock_Fast
  2764. 0x000000000000abb2 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  2765. 0x000000000000abb2 FLASH_Lock_Fast
  2766. .text.FLASH_ErasePage_Fast
  2767. 0x000000000000abc0 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  2768. 0x000000000000abc0 FLASH_ErasePage_Fast
  2769. .text.FLASH_ProgramPage_Fast
  2770. 0x000000000000abee 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
  2771. 0x000000000000abee FLASH_ProgramPage_Fast
  2772. .text.FLASH_GetMACAddress
  2773. 0x000000000000ac52 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
  2774. 0x000000000000ac52 FLASH_GetMACAddress
  2775. .text.GPIO_Init
  2776. 0x000000000000ac78 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2777. 0x000000000000ac78 GPIO_Init
  2778. .text.GPIO_ReadInputDataBit
  2779. 0x000000000000ad38 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2780. 0x000000000000ad38 GPIO_ReadInputDataBit
  2781. .text.GPIO_WriteBit
  2782. 0x000000000000ad42 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2783. 0x000000000000ad42 GPIO_WriteBit
  2784. .text.GPIO_PinRemapConfig
  2785. 0x000000000000ad4c 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2786. 0x000000000000ad4c GPIO_PinRemapConfig
  2787. .text.IWDG_ReloadCounter
  2788. 0x000000000000ae3e 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2789. 0x000000000000ae3e IWDG_ReloadCounter
  2790. .text.NVIC_Init
  2791. 0x000000000000ae4c 0x56 ./SRC/Peripheral/src/ch32v20x_misc.o
  2792. 0x000000000000ae4c NVIC_Init
  2793. .text.PWR_BackupAccessCmd
  2794. 0x000000000000aea2 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2795. 0x000000000000aea2 PWR_BackupAccessCmd
  2796. .text.RCC_ADCCLKConfig
  2797. 0x000000000000aeb8 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2798. 0x000000000000aeb8 RCC_ADCCLKConfig
  2799. .text.RCC_LSEConfig
  2800. 0x000000000000aeca 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2801. 0x000000000000aeca RCC_LSEConfig
  2802. .text.RCC_RTCCLKConfig
  2803. 0x000000000000aef2 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
  2804. 0x000000000000aef2 RCC_RTCCLKConfig
  2805. .text.RCC_RTCCLKCmd
  2806. 0x000000000000aefe 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2807. 0x000000000000aefe RCC_RTCCLKCmd
  2808. .text.RCC_GetClocksFreq
  2809. 0x000000000000af1e 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2810. 0x000000000000af1e RCC_GetClocksFreq
  2811. .text.RCC_AHBPeriphClockCmd
  2812. 0x000000000000aff6 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2813. 0x000000000000aff6 RCC_AHBPeriphClockCmd
  2814. .text.RCC_APB2PeriphClockCmd
  2815. 0x000000000000b014 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2816. 0x000000000000b014 RCC_APB2PeriphClockCmd
  2817. .text.RCC_APB1PeriphClockCmd
  2818. 0x000000000000b032 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2819. 0x000000000000b032 RCC_APB1PeriphClockCmd
  2820. .text.RCC_APB2PeriphResetCmd
  2821. 0x000000000000b050 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2822. 0x000000000000b050 RCC_APB2PeriphResetCmd
  2823. .text.RCC_GetFlagStatus
  2824. 0x000000000000b06e 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2825. 0x000000000000b06e RCC_GetFlagStatus
  2826. .text.RTC_EnterConfigMode
  2827. 0x000000000000b09c 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2828. 0x000000000000b09c RTC_EnterConfigMode
  2829. .text.RTC_ExitConfigMode
  2830. 0x000000000000b0ae 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2831. 0x000000000000b0ae RTC_ExitConfigMode
  2832. .text.RTC_GetCounter
  2833. 0x000000000000b0c6 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2834. 0x000000000000b0c6 RTC_GetCounter
  2835. .text.RTC_SetCounter
  2836. 0x000000000000b120 0x28 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2837. 0x000000000000b120 RTC_SetCounter
  2838. .text.RTC_SetPrescaler
  2839. 0x000000000000b148 0x2a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2840. 0x000000000000b148 RTC_SetPrescaler
  2841. .text.RTC_WaitForLastTask
  2842. 0x000000000000b172 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2843. 0x000000000000b172 RTC_WaitForLastTask
  2844. .text.RTC_ClearFlag
  2845. 0x000000000000b182 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2846. 0x000000000000b182 RTC_ClearFlag
  2847. .text.RTC_ClearITPendingBit
  2848. 0x000000000000b196 0x4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2849. 0x000000000000b196 RTC_ClearITPendingBit
  2850. .text.SPI_Init
  2851. 0x000000000000b19a 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
  2852. 0x000000000000b19a SPI_Init
  2853. .text.SPI_Cmd 0x000000000000b1d8 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  2854. 0x000000000000b1d8 SPI_Cmd
  2855. .text.SPI_I2S_DMACmd
  2856. 0x000000000000b1f2 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  2857. 0x000000000000b1f2 SPI_I2S_DMACmd
  2858. .text.SPI_I2S_SendData
  2859. 0x000000000000b204 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  2860. 0x000000000000b204 SPI_I2S_SendData
  2861. .text.SPI_I2S_ReceiveData
  2862. 0x000000000000b208 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  2863. 0x000000000000b208 SPI_I2S_ReceiveData
  2864. .text.SPI_CalculateCRC
  2865. 0x000000000000b20c 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
  2866. 0x000000000000b20c SPI_CalculateCRC
  2867. .text.SPI_I2S_GetFlagStatus
  2868. 0x000000000000b222 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  2869. 0x000000000000b222 SPI_I2S_GetFlagStatus
  2870. .text.TIM_TimeBaseInit
  2871. 0x000000000000b22c 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  2872. 0x000000000000b22c TIM_TimeBaseInit
  2873. .text.TIM_OC1Init
  2874. 0x000000000000b296 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  2875. 0x000000000000b296 TIM_OC1Init
  2876. .text.TIM_OC2Init
  2877. 0x000000000000b300 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
  2878. 0x000000000000b300 TIM_OC2Init
  2879. .text.TIM_BDTRConfig
  2880. 0x000000000000b396 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  2881. 0x000000000000b396 TIM_BDTRConfig
  2882. .text.TIM_Cmd 0x000000000000b3b6 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  2883. 0x000000000000b3b6 TIM_Cmd
  2884. .text.TIM_OC1PreloadConfig
  2885. 0x000000000000b3ce 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  2886. 0x000000000000b3ce TIM_OC1PreloadConfig
  2887. .text.TIM_OC2PreloadConfig
  2888. 0x000000000000b3dc 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  2889. 0x000000000000b3dc TIM_OC2PreloadConfig
  2890. .text.TIM_SetCompare1
  2891. 0x000000000000b3f2 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2892. 0x000000000000b3f2 TIM_SetCompare1
  2893. .text.TIM_SetCompare2
  2894. 0x000000000000b3f6 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2895. 0x000000000000b3f6 TIM_SetCompare2
  2896. .text.USART_Init
  2897. 0x000000000000b3fa 0x92 ./SRC/Peripheral/src/ch32v20x_usart.o
  2898. 0x000000000000b3fa USART_Init
  2899. .text.USART_Cmd
  2900. 0x000000000000b48c 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  2901. 0x000000000000b48c USART_Cmd
  2902. .text.USART_SendData
  2903. 0x000000000000b4a2 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  2904. 0x000000000000b4a2 USART_SendData
  2905. .text.USART_GetFlagStatus
  2906. 0x000000000000b4aa 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  2907. 0x000000000000b4aa USART_GetFlagStatus
  2908. .text.Delay_Init
  2909. 0x000000000000b4b4 0x28 ./SRC/Debug/debug.o
  2910. 0x000000000000b4b4 Delay_Init
  2911. .text.Delay_Us
  2912. 0x000000000000b4dc 0x36 ./SRC/Debug/debug.o
  2913. 0x000000000000b4dc Delay_Us
  2914. .text.Delay_Ms
  2915. 0x000000000000b512 0x36 ./SRC/Debug/debug.o
  2916. 0x000000000000b512 Delay_Ms
  2917. .text.USART_Printf_Init
  2918. 0x000000000000b548 0x5c ./SRC/Debug/debug.o
  2919. 0x000000000000b548 USART_Printf_Init
  2920. .text._write 0x000000000000b5a4 0x50 ./SRC/Debug/debug.o
  2921. 0x000000000000b5a4 _write
  2922. .text._sbrk 0x000000000000b5f4 0x2c ./SRC/Debug/debug.o
  2923. 0x000000000000b5f4 _sbrk
  2924. .text.devInfo_ReadAttrCB
  2925. 0x000000000000b620 0x1b0 ./Profile/devinfoservice.o
  2926. .text.DevInfo_AddService
  2927. 0x000000000000b7d0 0x16 ./Profile/devinfoservice.o
  2928. 0x000000000000b7d0 DevInfo_AddService
  2929. .text.simpleProfile_ReadAttrCB
  2930. 0x000000000000b7e6 0x7c ./Profile/gattprofile.o
  2931. .text.simpleProfile_WriteAttrCB
  2932. 0x000000000000b862 0x110 ./Profile/gattprofile.o
  2933. .text.simpleProfile_HandleConnStatusCB
  2934. 0x000000000000b972 0x4e ./Profile/gattprofile.o
  2935. .text.SimpleProfile_AddService
  2936. 0x000000000000b9c0 0x58 ./Profile/gattprofile.o
  2937. 0x000000000000b9c0 SimpleProfile_AddService
  2938. .text.SimpleProfile_RegisterAppCBs
  2939. 0x000000000000ba18 0xe ./Profile/gattprofile.o
  2940. 0x000000000000ba18 SimpleProfile_RegisterAppCBs
  2941. .text.SimpleProfile_SetParameter
  2942. 0x000000000000ba26 0xa0 ./Profile/gattprofile.o
  2943. 0x000000000000ba26 SimpleProfile_SetParameter
  2944. .text.simpleProfileChar4_Notify
  2945. 0x000000000000bac6 0x52 ./Profile/gattprofile.o
  2946. 0x000000000000bac6 simpleProfileChar4_Notify
  2947. .text.Lib_Read_Flash
  2948. 0x000000000000bb18 0x1e ./HAL/MCU.o
  2949. 0x000000000000bb18 Lib_Read_Flash
  2950. .text.Lib_Write_Flash
  2951. 0x000000000000bb36 0x32 ./HAL/MCU.o
  2952. 0x000000000000bb36 Lib_Write_Flash
  2953. .text.HAL_GetInterTempValue
  2954. 0x000000000000bb68 0x16c ./HAL/MCU.o
  2955. 0x000000000000bb68 HAL_GetInterTempValue
  2956. .text.HAL_ProcessEvent
  2957. 0x000000000000bcd4 0x8e ./HAL/MCU.o
  2958. 0x000000000000bcd4 HAL_ProcessEvent
  2959. .text.WCHBLE_Init
  2960. 0x000000000000bd62 0x134 ./HAL/MCU.o
  2961. 0x000000000000bd62 WCHBLE_Init
  2962. .text.HAL_Init
  2963. 0x000000000000be96 0x3c ./HAL/MCU.o
  2964. 0x000000000000be96 HAL_Init
  2965. .text.HAL_TimeInit
  2966. 0x000000000000bed2 0xb2 ./HAL/RTC.o
  2967. 0x000000000000bed2 HAL_TimeInit
  2968. .text.RTCAlarm_IRQHandler
  2969. 0x000000000000bf84 0x1c ./HAL/RTC.o
  2970. 0x000000000000bf84 RTCAlarm_IRQHandler
  2971. .text.log 0x000000000000bfa0 0x112 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  2972. 0x000000000000bfa0 log
  2973. .text.__ieee754_log
  2974. 0x000000000000c0b2 0x3d8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  2975. 0x000000000000c0b2 __ieee754_log
  2976. .text.matherr 0x000000000000c48a 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
  2977. 0x000000000000c48a matherr
  2978. .text.nan 0x000000000000c48e 0xe d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  2979. 0x000000000000c48e nan
  2980. .text.__umoddi3
  2981. 0x000000000000c49c 0x38a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  2982. 0x000000000000c49c __umoddi3
  2983. .text.__adddf3
  2984. 0x000000000000c826 0x730 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
  2985. 0x000000000000c826 __adddf3
  2986. .text.__divdf3
  2987. 0x000000000000cf56 0x5b4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  2988. 0x000000000000cf56 __divdf3
  2989. .text.__eqdf2 0x000000000000d50a 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  2990. 0x000000000000d50a __nedf2
  2991. 0x000000000000d50a __eqdf2
  2992. .text.__gedf2 0x000000000000d574 0xae d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
  2993. 0x000000000000d574 __gedf2
  2994. 0x000000000000d574 __gtdf2
  2995. .text.__muldf3
  2996. 0x000000000000d622 0x4b8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  2997. 0x000000000000d622 __muldf3
  2998. .text.__subdf3
  2999. 0x000000000000dada 0x73e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
  3000. 0x000000000000dada __subdf3
  3001. .text.__unorddf2
  3002. 0x000000000000e218 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
  3003. 0x000000000000e218 __unorddf2
  3004. .text.__floatsidf
  3005. 0x000000000000e254 0x72 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  3006. 0x000000000000e254 __floatsidf
  3007. .text.__addsf3
  3008. 0x000000000000e2c6 0x36a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  3009. 0x000000000000e2c6 __addsf3
  3010. .text.__divsf3
  3011. 0x000000000000e630 0x2b2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  3012. 0x000000000000e630 __divsf3
  3013. .text.__mulsf3
  3014. 0x000000000000e8e2 0x294 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  3015. 0x000000000000e8e2 __mulsf3
  3016. .text.__subsf3
  3017. 0x000000000000eb76 0x388 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  3018. 0x000000000000eb76 __subsf3
  3019. .text.__fixsfsi
  3020. 0x000000000000eefe 0x62 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
  3021. 0x000000000000eefe __fixsfsi
  3022. .text.__floatsisf
  3023. 0x000000000000ef60 0xc6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
  3024. 0x000000000000ef60 __floatsisf
  3025. .text.__extendsfdf2
  3026. 0x000000000000f026 0xac d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  3027. 0x000000000000f026 __extendsfdf2
  3028. .text.__truncdfsf2
  3029. 0x000000000000f0d2 0x16a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  3030. 0x000000000000f0d2 __truncdfsf2
  3031. .text.__clzsi2
  3032. 0x000000000000f23c 0x6e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  3033. 0x000000000000f23c __clzsi2
  3034. .text.__errno 0x000000000000f2aa 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
  3035. 0x000000000000f2aa __errno
  3036. .text.malloc 0x000000000000f2b2 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
  3037. 0x000000000000f2b2 malloc
  3038. .text.memcpy 0x000000000000f2bc 0xb2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  3039. 0x000000000000f2bc memcpy
  3040. .text._free_r 0x000000000000f36e 0xa8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  3041. 0x000000000000f36e _free_r
  3042. .text._malloc_r
  3043. 0x000000000000f416 0xda d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  3044. 0x000000000000f416 _malloc_r
  3045. .text.__cvt 0x000000000000f4f0 0xea d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  3046. 0x000000000000f4f0 __cvt
  3047. .text.__exponent
  3048. 0x000000000000f5da 0x84 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  3049. 0x000000000000f5da __exponent
  3050. .text._printf_float
  3051. 0x000000000000f65e 0x4c4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  3052. 0x000000000000f65e _printf_float
  3053. .text._printf_common
  3054. 0x000000000000fb22 0x10c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  3055. 0x000000000000fb22 _printf_common
  3056. .text._printf_i
  3057. 0x000000000000fc2e 0x2a4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  3058. 0x000000000000fc2e _printf_i
  3059. .text._scanf_float
  3060. 0x000000000000fed2 0x46c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
  3061. 0x000000000000fed2 _scanf_float
  3062. .text.printf 0x000000000001033e 0x42 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  3063. 0x000000000001033e iprintf
  3064. 0x000000000001033e printf
  3065. .text._puts_r 0x0000000000010380 0xde d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  3066. 0x0000000000010380 _puts_r
  3067. .text.puts 0x000000000001045e 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  3068. 0x000000000001045e puts
  3069. .text._sbrk_r 0x000000000001046a 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  3070. 0x000000000001046a _sbrk_r
  3071. .text.nanf 0x000000000001049c 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  3072. 0x000000000001049c nanf
  3073. .text.sprintf 0x00000000000104a8 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  3074. 0x00000000000104a8 siprintf
  3075. 0x00000000000104a8 sprintf
  3076. .text.sscanf 0x00000000000104ee 0x52 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  3077. 0x00000000000104ee siscanf
  3078. 0x00000000000104ee sscanf
  3079. .text.__sread 0x0000000000010540 0x2e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  3080. 0x0000000000010540 __sread
  3081. .text.__seofread
  3082. 0x000000000001056e 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  3083. 0x000000000001056e __seofread
  3084. .text.__swrite
  3085. 0x0000000000010572 0x4c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  3086. 0x0000000000010572 __swrite
  3087. .text.__sseek 0x00000000000105be 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  3088. 0x00000000000105be __sseek
  3089. .text.__sclose
  3090. 0x00000000000105f0 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  3091. 0x00000000000105f0 __sclose
  3092. .text.strlen 0x00000000000105f8 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  3093. 0x00000000000105f8 strlen
  3094. .text.sulp 0x000000000001060a 0x4e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3095. .text._strtod_l
  3096. 0x0000000000010658 0xc6c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3097. 0x0000000000010658 _strtod_l
  3098. .text._strtod_r
  3099. 0x00000000000112c4 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3100. 0x00000000000112c4 _strtod_r
  3101. .text._strtol_l.isra.0
  3102. 0x00000000000112d6 0x13a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  3103. .text._strtol_r
  3104. 0x0000000000011410 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  3105. 0x0000000000011410 _strtol_r
  3106. .text.__swbuf_r
  3107. 0x0000000000011422 0xc2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  3108. 0x0000000000011422 __swbuf_r
  3109. .text._write_r
  3110. 0x00000000000114e4 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
  3111. 0x00000000000114e4 _write_r
  3112. .text.__swsetup_r
  3113. 0x000000000001151a 0x102 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
  3114. 0x000000000001151a __swsetup_r
  3115. .text._close_r
  3116. 0x000000000001161c 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
  3117. 0x000000000001161c _close_r
  3118. .text.quorem 0x000000000001164e 0x13a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  3119. .text._dtoa_r 0x0000000000011788 0xc16 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  3120. 0x0000000000011788 _dtoa_r
  3121. .text.__sflush_r
  3122. 0x000000000001239e 0x132 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  3123. 0x000000000001239e __sflush_r
  3124. .text._fflush_r
  3125. 0x00000000000124d0 0x66 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  3126. 0x00000000000124d0 _fflush_r
  3127. .text.std 0x0000000000012536 0x66 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3128. .text._cleanup_r
  3129. 0x000000000001259c 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3130. 0x000000000001259c _cleanup_r
  3131. .text.__sfmoreglue
  3132. 0x00000000000125a6 0x48 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3133. 0x00000000000125a6 __sfmoreglue
  3134. .text.__sinit 0x00000000000125ee 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3135. 0x00000000000125ee __sinit
  3136. .text.__sfp 0x000000000001265e 0xa4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3137. 0x000000000001265e __sfp
  3138. .text._fwalk_reent
  3139. 0x0000000000012702 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  3140. 0x0000000000012702 _fwalk_reent
  3141. .text.rshift 0x000000000001276c 0x76 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  3142. .text.__hexdig_fun
  3143. 0x00000000000127e2 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  3144. 0x00000000000127e2 __hexdig_fun
  3145. .text.__gethex
  3146. 0x0000000000012822 0x4cc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  3147. 0x0000000000012822 __gethex
  3148. .text.L_shift 0x0000000000012cee 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  3149. .text.__match 0x0000000000012d1a 0x2e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  3150. 0x0000000000012d1a __match
  3151. .text.__hexnan
  3152. 0x0000000000012d48 0x15e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  3153. 0x0000000000012d48 __hexnan
  3154. .text.__locale_ctype_ptr_l
  3155. 0x0000000000012ea6 0x6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  3156. 0x0000000000012ea6 __locale_ctype_ptr_l
  3157. .text.__locale_ctype_ptr
  3158. 0x0000000000012eac 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  3159. 0x0000000000012eac __locale_ctype_ptr
  3160. .text.__localeconv_l
  3161. 0x0000000000012ec0 0x6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  3162. 0x0000000000012ec0 __localeconv_l
  3163. .text._localeconv_r
  3164. 0x0000000000012ec6 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  3165. 0x0000000000012ec6 _localeconv_r
  3166. .text._lseek_r
  3167. 0x0000000000012eda 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
  3168. 0x0000000000012eda _lseek_r
  3169. .text.__swhatbuf_r
  3170. 0x0000000000012f10 0x58 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  3171. 0x0000000000012f10 __swhatbuf_r
  3172. .text.__smakebuf_r
  3173. 0x0000000000012f68 0x94 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  3174. 0x0000000000012f68 __smakebuf_r
  3175. .text.__ascii_mbtowc
  3176. 0x0000000000012ffc 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
  3177. 0x0000000000012ffc __ascii_mbtowc
  3178. .text.memchr 0x000000000001302e 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  3179. 0x000000000001302e memchr
  3180. .text.__malloc_lock
  3181. 0x0000000000013046 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  3182. 0x0000000000013046 __malloc_lock
  3183. .text.__malloc_unlock
  3184. 0x0000000000013048 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  3185. 0x0000000000013048 __malloc_unlock
  3186. .text._Balloc 0x000000000001304a 0x8c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3187. 0x000000000001304a _Balloc
  3188. .text._Bfree 0x00000000000130d6 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3189. 0x00000000000130d6 _Bfree
  3190. .text.__multadd
  3191. 0x000000000001311a 0x98 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3192. 0x000000000001311a __multadd
  3193. .text.__s2b 0x00000000000131b2 0xa4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3194. 0x00000000000131b2 __s2b
  3195. .text.__hi0bits
  3196. 0x0000000000013256 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3197. 0x0000000000013256 __hi0bits
  3198. .text.__lo0bits
  3199. 0x000000000001329c 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3200. 0x000000000001329c __lo0bits
  3201. .text.__i2b 0x0000000000013306 0x1c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3202. 0x0000000000013306 __i2b
  3203. .text.__multiply
  3204. 0x0000000000013322 0x144 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3205. 0x0000000000013322 __multiply
  3206. .text.__pow5mult
  3207. 0x0000000000013466 0xbe d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3208. 0x0000000000013466 __pow5mult
  3209. .text.__lshift
  3210. 0x0000000000013524 0xce d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3211. 0x0000000000013524 __lshift
  3212. .text.__mcmp 0x00000000000135f2 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3213. 0x00000000000135f2 __mcmp
  3214. .text.__mdiff 0x0000000000013624 0xf2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3215. 0x0000000000013624 __mdiff
  3216. .text.__ulp 0x0000000000013716 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3217. 0x0000000000013716 __ulp
  3218. .text.__b2d 0x000000000001375c 0xb4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3219. 0x000000000001375c __b2d
  3220. .text.__d2b 0x0000000000013810 0xd4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3221. 0x0000000000013810 __d2b
  3222. .text.__ratio 0x00000000000138e4 0x74 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3223. 0x00000000000138e4 __ratio
  3224. .text.__copybits
  3225. 0x0000000000013958 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3226. 0x0000000000013958 __copybits
  3227. .text.__any_on
  3228. 0x000000000001398e 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3229. 0x000000000001398e __any_on
  3230. .text._calloc_r
  3231. 0x00000000000139d4 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  3232. 0x00000000000139d4 _calloc_r
  3233. .text._realloc_r
  3234. 0x00000000000139fc 0x5a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  3235. 0x00000000000139fc _realloc_r
  3236. .text.__ssputs_r
  3237. 0x0000000000013a56 0xe4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  3238. 0x0000000000013a56 __ssputs_r
  3239. .text._svfprintf_r
  3240. 0x0000000000013b3a 0x268 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  3241. 0x0000000000013b3a _svfiprintf_r
  3242. 0x0000000000013b3a _svfprintf_r
  3243. .text._sungetc_r
  3244. 0x0000000000013da2 0x96 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  3245. 0x0000000000013da2 _sungetc_r
  3246. .text.__ssrefill_r
  3247. 0x0000000000013e38 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  3248. 0x0000000000013e38 __ssrefill_r
  3249. .text.__ssvfscanf_r
  3250. 0x0000000000013e7c 0x39e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  3251. 0x0000000000013e7c __ssvfiscanf_r
  3252. 0x0000000000013e7c __ssvfscanf_r
  3253. .text.__sfputc_r
  3254. 0x000000000001421a 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  3255. .text.__sfputs_r
  3256. 0x0000000000014242 0x42 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  3257. 0x0000000000014242 __sfputs_r
  3258. .text._vfprintf_r
  3259. 0x0000000000014284 0x28c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  3260. 0x0000000000014284 _vfprintf_r
  3261. 0x0000000000014284 _vfiprintf_r
  3262. .text._scanf_chars
  3263. 0x0000000000014510 0xe2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  3264. 0x0000000000014510 _scanf_chars
  3265. .text._scanf_i
  3266. 0x00000000000145f2 0x258 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  3267. 0x00000000000145f2 _scanf_i
  3268. .text._read_r 0x000000000001484a 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
  3269. 0x000000000001484a _read_r
  3270. .text.__sccl 0x0000000000014880 0x82 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
  3271. 0x0000000000014880 __sccl
  3272. .text.strncmp 0x0000000000014902 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
  3273. 0x0000000000014902 strncmp
  3274. .text._strtoul_l.isra.0
  3275. 0x000000000001492a 0x130 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  3276. .text._strtoul_r
  3277. 0x0000000000014a5a 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  3278. 0x0000000000014a5a _strtoul_r
  3279. .text.__submore
  3280. 0x0000000000014a6c 0x86 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  3281. 0x0000000000014a6c __submore
  3282. .text.__ascii_wctomb
  3283. 0x0000000000014af2 0x1e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
  3284. 0x0000000000014af2 __ascii_wctomb
  3285. .text._fstat_r
  3286. 0x0000000000014b10 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
  3287. 0x0000000000014b10 _fstat_r
  3288. .text._isatty_r
  3289. 0x0000000000014b42 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
  3290. 0x0000000000014b42 _isatty_r
  3291. .text.memmove 0x0000000000014b72 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
  3292. 0x0000000000014b72 memmove
  3293. .text._malloc_usable_size_r
  3294. 0x0000000000014bb8 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
  3295. 0x0000000000014bb8 _malloc_usable_size_r
  3296. .text.__ledf2 0x0000000000014bcc 0xb6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
  3297. 0x0000000000014bcc __ledf2
  3298. 0x0000000000014bcc __ltdf2
  3299. .text.__fixdfsi
  3300. 0x0000000000014c82 0x68 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
  3301. 0x0000000000014c82 __fixdfsi
  3302. .text.__fixunsdfsi
  3303. 0x0000000000014cea 0x5c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  3304. 0x0000000000014cea __fixunsdfsi
  3305. .text.__floatunsidf
  3306. 0x0000000000014d46 0x68 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  3307. 0x0000000000014d46 __floatunsidf
  3308. .text.__extenddftf2
  3309. 0x0000000000014dae 0x1a0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
  3310. 0x0000000000014dae __extenddftf2
  3311. .text.__trunctfdf2
  3312. 0x0000000000014f4e 0x21e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
  3313. 0x0000000000014f4e __trunctfdf2
  3314. .text._close 0x000000000001516c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  3315. 0x000000000001516c _close
  3316. .text._fstat 0x000000000001517c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  3317. 0x000000000001517c _fstat
  3318. .text._isatty 0x000000000001518c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  3319. 0x000000000001518c _isatty
  3320. .text._lseek 0x000000000001519c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  3321. 0x000000000001519c _lseek
  3322. .text._read 0x00000000000151ac 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  3323. 0x00000000000151ac _read
  3324. *(.rodata)
  3325. .rodata 0x00000000000151bc 0x100 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3326. *(.rodata*)
  3327. .rodata.vUser_ws2812b_init.str1.4
  3328. 0x00000000000152bc 0x19 ./components/ws2812b/user_ws2812b.o
  3329. *fill* 0x00000000000152d5 0x3
  3330. .rodata.InvSBox
  3331. 0x00000000000152d8 0x100 ./components/tools/AES_PKCS7.o
  3332. .rodata.SBox 0x00000000000153d8 0x100 ./components/tools/AES_PKCS7.o
  3333. .rodata.TypeA_Set_BitFraming
  3334. 0x00000000000154d8 0x34 ./components/nfc/type_a.o
  3335. .rodata.user_nfc_task_process_event
  3336. 0x000000000001550c 0x1c ./components/nfc/user_nfc.o
  3337. .rodata.prvUser_nfc_upload_card_stat.str1.4
  3338. 0x0000000000015528 0x44 ./components/nfc/user_nfc.o
  3339. .rodata.user_nfc_task_process_event.str1.4
  3340. 0x000000000001556c 0x5f ./components/nfc/user_nfc.o
  3341. *fill* 0x00000000000155cb 0x1
  3342. .rodata.vUser_nfc_init.str1.4
  3343. 0x00000000000155cc 0x15 ./components/nfc/user_nfc.o
  3344. *fill* 0x00000000000155e1 0x3
  3345. .rodata.vUser_nfc_task_start.str1.4
  3346. 0x00000000000155e4 0x13 ./components/nfc/user_nfc.o
  3347. *fill* 0x00000000000155f7 0x1
  3348. .rodata.vUser_led_set_view_stat
  3349. 0x00000000000155f8 0x1c ./components/led/user_led.o
  3350. .rodata.led_task_init.str1.4
  3351. 0x0000000000015614 0x10 ./components/led/user_led.o
  3352. .rodata.electsw_task_process_event.str1.4
  3353. 0x0000000000015624 0x37 ./components/electlock/elect_sw.o
  3354. *fill* 0x000000000001565b 0x1
  3355. .rodata.elect_task_init.str1.4
  3356. 0x000000000001565c 0x12 ./components/electlock/user_elect.o
  3357. *fill* 0x000000000001566e 0x2
  3358. .rodata.User_Config_Read_Config.str1.4
  3359. 0x0000000000015670 0x31 ./components/config/user_config.o
  3360. *fill* 0x00000000000156a1 0x3
  3361. .rodata.Get_Temp.cst4
  3362. 0x00000000000156a4 0x14 ./components/charge/user_adc.o
  3363. .rodata.adc_init.str1.4
  3364. 0x00000000000156b8 0x15 ./components/charge/user_adc.o
  3365. *fill* 0x00000000000156cd 0x3
  3366. .rodata.adc_task_process_event.cst4
  3367. 0x00000000000156d0 0x8 ./components/charge/user_adc.o
  3368. .rodata.user_charge_init.str1.4
  3369. 0x00000000000156d8 0x18 ./components/charge/user_charge.o
  3370. .rodata.vUser_can_init.str1.4
  3371. 0x00000000000156f0 0x15 ./components/can/user_can.o
  3372. *fill* 0x0000000000015705 0x3
  3373. .rodata.vUser_can_set_addr.str1.4
  3374. 0x0000000000015708 0xc ./components/can/user_can.o
  3375. .rodata.download_ble_data_callback.str1.4
  3376. 0x0000000000015714 0x81 ./components/action/ble_action.o
  3377. *fill* 0x0000000000015795 0x3
  3378. .rodata.prvAdc_upload_callback.str1.4
  3379. 0x0000000000015798 0x59 ./components/action/user_sever.o
  3380. *fill* 0x00000000000157f1 0x3
  3381. .rodata.user_server_task_process_event.str1.4
  3382. 0x00000000000157f4 0x1d ./components/action/user_sever.o
  3383. *fill* 0x0000000000015811 0x3
  3384. .rodata.vUser_server_init.str1.4
  3385. 0x0000000000015814 0x18 ./components/action/user_sever.o
  3386. .rodata.main.str1.4
  3387. 0x000000000001582c 0x22 ./User/app_main.o
  3388. *fill* 0x000000000001584e 0x2
  3389. .rodata.peripheralStateNotificationCB
  3390. 0x0000000000015850 0x18 ./User/peripheral.o
  3391. .rodata.Peripheral_ProcessEvent.str1.4
  3392. 0x0000000000015868 0x42 ./User/peripheral.o
  3393. *fill* 0x00000000000158aa 0x2
  3394. .rodata.ble_data_send.str1.4
  3395. 0x00000000000158ac 0xf ./User/peripheral.o
  3396. *fill* 0x00000000000158bb 0x1
  3397. .rodata.peripheralParamUpdateCB.str1.4
  3398. 0x00000000000158bc 0x1e ./User/peripheral.o
  3399. *fill* 0x00000000000158da 0x2
  3400. .rodata.peripheralStateNotificationCB.str1.4
  3401. 0x00000000000158dc 0xb7 ./User/peripheral.o
  3402. *fill* 0x0000000000015993 0x1
  3403. .rodata.devInfo11073Cert
  3404. 0x0000000000015994 0xe ./Profile/devinfoservice.o
  3405. *fill* 0x00000000000159a2 0x2
  3406. .rodata.devInfoFirmwareRev
  3407. 0x00000000000159a4 0x12 ./Profile/devinfoservice.o
  3408. *fill* 0x00000000000159b6 0x2
  3409. .rodata.devInfoHardwareRev
  3410. 0x00000000000159b8 0x12 ./Profile/devinfoservice.o
  3411. *fill* 0x00000000000159ca 0x2
  3412. .rodata.devInfoMfrName
  3413. 0x00000000000159cc 0x12 ./Profile/devinfoservice.o
  3414. *fill* 0x00000000000159de 0x2
  3415. .rodata.devInfoModelNumber
  3416. 0x00000000000159e0 0xd ./Profile/devinfoservice.o
  3417. *fill* 0x00000000000159ed 0x3
  3418. .rodata.devInfoSerialNumber
  3419. 0x00000000000159f0 0xe ./Profile/devinfoservice.o
  3420. *fill* 0x00000000000159fe 0x2
  3421. .rodata.devInfoSoftwareRev
  3422. 0x0000000000015a00 0x12 ./Profile/devinfoservice.o
  3423. *fill* 0x0000000000015a12 0x2
  3424. .rodata.HAL_ProcessEvent.str1.4
  3425. 0x0000000000015a14 0x3 ./HAL/MCU.o
  3426. *fill* 0x0000000000015a17 0x1
  3427. .rodata.WCHBLE_Init.str1.4
  3428. 0x0000000000015a18 0x49 ./HAL/MCU.o
  3429. *fill* 0x0000000000015a61 0x3
  3430. .rodata.HAL_TimeInit.str1.4
  3431. 0x0000000000015a64 0x27 ./HAL/RTC.o
  3432. *fill* 0x0000000000015a8b 0x5
  3433. .rodata.log.cst8
  3434. 0x0000000000015a90 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  3435. .rodata.log.str1.4
  3436. 0x0000000000015aa0 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  3437. 0x5 (size before relaxing)
  3438. *fill* 0x0000000000015aa4 0x4
  3439. .rodata.__ieee754_log.cst8
  3440. 0x0000000000015aa8 0x78 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  3441. .rodata.nan.cst8
  3442. 0x0000000000015b20 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  3443. .rodata.str1.4
  3444. 0x0000000000015b28 0x1a d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3445. *fill* 0x0000000000015b42 0x2
  3446. .rodata.str1.4
  3447. 0x0000000000015b44 0x41 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3448. *fill* 0x0000000000015b85 0x3
  3449. .rodata.__divdf3
  3450. 0x0000000000015b88 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  3451. .rodata.__muldf3
  3452. 0x0000000000015bc8 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  3453. .rodata.__divsf3
  3454. 0x0000000000015c08 0x80 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  3455. .rodata.__mulsf3
  3456. 0x0000000000015c88 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  3457. .rodata.__clz_tab
  3458. 0x0000000000015cc8 0x100 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  3459. 0x0000000000015cc8 __clz_tab
  3460. .rodata._printf_float.cst8
  3461. 0x0000000000015dc8 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  3462. .rodata._printf_float.str1.4
  3463. 0x0000000000015dd0 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  3464. *fill* 0x0000000000015de2 0x2
  3465. .rodata._printf_i.str1.4
  3466. 0x0000000000015de4 0x25 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  3467. *fill* 0x0000000000015e09 0x3
  3468. .rodata._scanf_float.str1.4
  3469. 0x0000000000015e0c 0x5 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
  3470. *fill* 0x0000000000015e11 0x3
  3471. .rodata.nanf.cst4
  3472. 0x0000000000015e14 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  3473. .rodata._strtod_l
  3474. 0x0000000000015e18 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3475. *fill* 0x0000000000015e2c 0x4
  3476. .rodata._strtod_l.cst8
  3477. 0x0000000000015e30 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3478. 0x38 (size before relaxing)
  3479. .rodata._strtod_l.str1.4
  3480. 0x0000000000015e50 0xf d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3481. *fill* 0x0000000000015e5f 0x1
  3482. .rodata.fpi.3395
  3483. 0x0000000000015e60 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3484. .rodata.fpinan.3431
  3485. 0x0000000000015e74 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3486. .rodata.tinytens
  3487. 0x0000000000015e88 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  3488. .rodata._dtoa_r.cst8
  3489. 0x0000000000015eb0 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  3490. 0x48 (size before relaxing)
  3491. .rodata._dtoa_r.str1.4
  3492. 0x0000000000015ee8 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  3493. 0x12 (size before relaxing)
  3494. .rodata.__sf_fake_stderr
  3495. 0x0000000000015ef8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3496. 0x0000000000015ef8 __sf_fake_stderr
  3497. .rodata.__sf_fake_stdin
  3498. 0x0000000000015f18 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3499. 0x0000000000015f18 __sf_fake_stdin
  3500. .rodata.__sf_fake_stdout
  3501. 0x0000000000015f38 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  3502. 0x0000000000015f38 __sf_fake_stdout
  3503. .rodata._setlocale_r.str1.4
  3504. 0x0000000000015f58 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  3505. 0xd (size before relaxing)
  3506. .rodata.str1.4
  3507. 0x0000000000015f62 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  3508. 0x2 (size before relaxing)
  3509. *fill* 0x0000000000015f62 0x6
  3510. .rodata.__mprec_bigtens
  3511. 0x0000000000015f68 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3512. 0x0000000000015f68 __mprec_bigtens
  3513. .rodata.__mprec_tens
  3514. 0x0000000000015f90 0xc8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3515. 0x0000000000015f90 __mprec_tens
  3516. .rodata.p05.3319
  3517. 0x0000000000016058 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  3518. .rodata._svfprintf_r.str1.4
  3519. 0x0000000000016064 0x13 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  3520. .rodata.__ssvfscanf_r.str1.4
  3521. 0x0000000000016077 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  3522. .rodata._vfprintf_r.str1.4
  3523. 0x0000000000016077 0x13 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  3524. *fill* 0x0000000000016077 0x1
  3525. .rodata._scanf_i.str1.4
  3526. 0x0000000000016078 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  3527. *fill* 0x000000000001608a 0x2
  3528. .rodata.str1.4
  3529. 0x000000000001608c 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  3530. 0xb (size before relaxing)
  3531. .rodata._ctype_
  3532. 0x0000000000016098 0x101 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ctype_.o)
  3533. 0x0000000000016098 _ctype_
  3534. *(.sdata2.*)
  3535. *fill* 0x0000000000016199 0x3
  3536. .sdata2.Address
  3537. 0x000000000001619c 0x4 ./User/app_main.o
  3538. 0x000000000001619c Address
  3539. .sdata2.devInfo11073CertUUID
  3540. 0x00000000000161a0 0x2 ./Profile/devinfoservice.o
  3541. 0x00000000000161a0 devInfo11073CertUUID
  3542. *fill* 0x00000000000161a2 0x2
  3543. .sdata2.devInfoFirmwareRevUUID
  3544. 0x00000000000161a4 0x2 ./Profile/devinfoservice.o
  3545. 0x00000000000161a4 devInfoFirmwareRevUUID
  3546. *fill* 0x00000000000161a6 0x2
  3547. .sdata2.devInfoHardwareRevUUID
  3548. 0x00000000000161a8 0x2 ./Profile/devinfoservice.o
  3549. 0x00000000000161a8 devInfoHardwareRevUUID
  3550. *fill* 0x00000000000161aa 0x2
  3551. .sdata2.devInfoMfrNameUUID
  3552. 0x00000000000161ac 0x2 ./Profile/devinfoservice.o
  3553. 0x00000000000161ac devInfoMfrNameUUID
  3554. *fill* 0x00000000000161ae 0x2
  3555. .sdata2.devInfoModelNumberUUID
  3556. 0x00000000000161b0 0x2 ./Profile/devinfoservice.o
  3557. 0x00000000000161b0 devInfoModelNumberUUID
  3558. *fill* 0x00000000000161b2 0x2
  3559. .sdata2.devInfoPnpIdUUID
  3560. 0x00000000000161b4 0x2 ./Profile/devinfoservice.o
  3561. 0x00000000000161b4 devInfoPnpIdUUID
  3562. *fill* 0x00000000000161b6 0x2
  3563. .sdata2.devInfoSerialNumberUUID
  3564. 0x00000000000161b8 0x2 ./Profile/devinfoservice.o
  3565. 0x00000000000161b8 devInfoSerialNumberUUID
  3566. *fill* 0x00000000000161ba 0x2
  3567. .sdata2.devInfoServUUID
  3568. 0x00000000000161bc 0x2 ./Profile/devinfoservice.o
  3569. 0x00000000000161bc devInfoServUUID
  3570. *fill* 0x00000000000161be 0x2
  3571. .sdata2.devInfoService
  3572. 0x00000000000161c0 0x8 ./Profile/devinfoservice.o
  3573. .sdata2.devInfoSoftwareRevUUID
  3574. 0x00000000000161c8 0x2 ./Profile/devinfoservice.o
  3575. 0x00000000000161c8 devInfoSoftwareRevUUID
  3576. *fill* 0x00000000000161ca 0x2
  3577. .sdata2.devInfoSystemIdUUID
  3578. 0x00000000000161cc 0x2 ./Profile/devinfoservice.o
  3579. 0x00000000000161cc devInfoSystemIdUUID
  3580. *fill* 0x00000000000161ce 0x2
  3581. .sdata2.simpleProfileServUUID
  3582. 0x00000000000161d0 0x2 ./Profile/gattprofile.o
  3583. 0x00000000000161d0 simpleProfileServUUID
  3584. *fill* 0x00000000000161d2 0x2
  3585. .sdata2.simpleProfileService
  3586. 0x00000000000161d4 0x8 ./Profile/gattprofile.o
  3587. .sdata2.simpleProfilechar1UUID
  3588. 0x00000000000161dc 0x2 ./Profile/gattprofile.o
  3589. 0x00000000000161dc simpleProfilechar1UUID
  3590. *fill* 0x00000000000161de 0x2
  3591. .sdata2.simpleProfilechar2UUID
  3592. 0x00000000000161e0 0x2 ./Profile/gattprofile.o
  3593. 0x00000000000161e0 simpleProfilechar2UUID
  3594. *fill* 0x00000000000161e2 0x2
  3595. .sdata2.simpleProfilechar3UUID
  3596. 0x00000000000161e4 0x2 ./Profile/gattprofile.o
  3597. 0x00000000000161e4 simpleProfilechar3UUID
  3598. *fill* 0x00000000000161e6 0x2
  3599. .sdata2.simpleProfilechar4UUID
  3600. 0x00000000000161e8 0x2 ./Profile/gattprofile.o
  3601. 0x00000000000161e8 simpleProfilechar4UUID
  3602. *fill* 0x00000000000161ea 0x2
  3603. .sdata2._global_impure_ptr
  3604. 0x00000000000161ec 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  3605. 0x00000000000161ec _global_impure_ptr
  3606. *(.gnu.linkonce.t.*)
  3607. 0x00000000000161f0 . = ALIGN (0x4)
  3608. .rela.dyn 0x00000000000161f0 0x0
  3609. .rela.init 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3610. .rela.vector 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3611. .rela.text.handle_reset
  3612. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3613. .rela.text._sbrk
  3614. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3615. .rela.sdata.curbrk.4953
  3616. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3617. .rela.got 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3618. .rela.text._sbrk_r
  3619. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3620. .rela.text._write_r
  3621. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3622. .rela.text._close_r
  3623. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3624. .rela.text._lseek_r
  3625. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3626. .rela.text._svfprintf_r
  3627. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3628. .rela.text.__ssvfscanf_r
  3629. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3630. .rela.text._vfprintf_r
  3631. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3632. .rela.text._read_r
  3633. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3634. .rela.text._fstat_r
  3635. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3636. .rela.text._isatty_r
  3637. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3638. .rela.text._close
  3639. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3640. .rela.text._fstat
  3641. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3642. .rela.text._isatty
  3643. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3644. .rela.text._lseek
  3645. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3646. .rela.text._read
  3647. 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
  3648. .fini 0x00000000000161f0 0x0
  3649. *(SORT_NONE(.fini))
  3650. 0x00000000000161f0 . = ALIGN (0x4)
  3651. [!provide] PROVIDE (_etext = .)
  3652. [!provide] PROVIDE (_eitcm = .)
  3653. .preinit_array 0x00000000000161f0 0x0
  3654. [!provide] PROVIDE (__preinit_array_start = .)
  3655. *(.preinit_array)
  3656. [!provide] PROVIDE (__preinit_array_end = .)
  3657. .init_array 0x00000000000161f0 0x0
  3658. [!provide] PROVIDE (__init_array_start = .)
  3659. *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
  3660. *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
  3661. [!provide] PROVIDE (__init_array_end = .)
  3662. .fini_array 0x00000000000161f0 0x0
  3663. [!provide] PROVIDE (__fini_array_start = .)
  3664. *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
  3665. *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
  3666. [!provide] PROVIDE (__fini_array_end = .)
  3667. .ctors
  3668. *crtbegin.o(.ctors)
  3669. *crtbegin?.o(.ctors)
  3670. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
  3671. *(SORT_BY_NAME(.ctors.*))
  3672. *(.ctors)
  3673. .dtors
  3674. *crtbegin.o(.dtors)
  3675. *crtbegin?.o(.dtors)
  3676. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
  3677. *(SORT_BY_NAME(.dtors.*))
  3678. *(.dtors)
  3679. .dalign 0x0000000020004000 0x0 load address 0x00000000000161f0
  3680. 0x0000000020004000 . = ALIGN (0x4)
  3681. 0x0000000020004000 PROVIDE (_data_vma = .)
  3682. .dlalign 0x00000000000161f0 0x0
  3683. 0x00000000000161f0 . = ALIGN (0x4)
  3684. 0x00000000000161f0 PROVIDE (_data_lma = .)
  3685. .data 0x0000000020004000 0x660 load address 0x00000000000161f0
  3686. *(.gnu.linkonce.r.*)
  3687. *(.data .data.*)
  3688. .data.led_work
  3689. 0x0000000020004000 0xb4 ./components/led/user_led.o
  3690. .data.electsw_work
  3691. 0x00000000200040b4 0x20 ./components/electlock/elect_sw.o
  3692. .data.elect_work
  3693. 0x00000000200040d4 0x20 ./components/electlock/user_elect.o
  3694. .data.fan_work
  3695. 0x00000000200040f4 0x10 ./components/charge/user_fan.o
  3696. .data.dipsw_work
  3697. 0x0000000020004104 0x30 ./components/can/dip_sw.o
  3698. .data.key_data
  3699. 0x0000000020004134 0x12 ./components/action/user_sever.o
  3700. *fill* 0x0000000020004146 0x2
  3701. .data.Peripheral_PeripheralCBs
  3702. 0x0000000020004148 0xc ./User/peripheral.o
  3703. .data.advertData
  3704. 0x0000000020004154 0x15 ./User/peripheral.o
  3705. *fill* 0x0000000020004169 0x3
  3706. .data.attDeviceName
  3707. 0x000000002000416c 0x15 ./User/peripheral.o
  3708. *fill* 0x0000000020004181 0x3
  3709. .data.scanRspData
  3710. 0x0000000020004184 0x12 ./User/peripheral.o
  3711. *fill* 0x0000000020004196 0x2
  3712. .data.AHBPrescTable
  3713. 0x0000000020004198 0x10 ./User/system_ch32v20x.o
  3714. 0x0000000020004198 AHBPrescTable
  3715. .data.APBAHBPrescTable
  3716. 0x00000000200041a8 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3717. .data.devInfoAttrTbl
  3718. 0x00000000200041b8 0x130 ./Profile/devinfoservice.o
  3719. .data.devInfoCBs
  3720. 0x00000000200042e8 0xc ./Profile/devinfoservice.o
  3721. 0x00000000200042e8 devInfoCBs
  3722. .data.simpleProfileAttrTbl
  3723. 0x00000000200042f4 0xe0 ./Profile/gattprofile.o
  3724. .data.simpleProfileCBs
  3725. 0x00000000200043d4 0xc ./Profile/gattprofile.o
  3726. 0x00000000200043d4 simpleProfileCBs
  3727. .data.simpleProfileChar1UserDesp
  3728. 0x00000000200043e0 0x12 ./Profile/gattprofile.o
  3729. *fill* 0x00000000200043f2 0x2
  3730. .data.simpleProfileChar2UserDesp
  3731. 0x00000000200043f4 0x12 ./Profile/gattprofile.o
  3732. *fill* 0x0000000020004406 0x2
  3733. .data.simpleProfileChar3UserDesp
  3734. 0x0000000020004408 0x12 ./Profile/gattprofile.o
  3735. *fill* 0x000000002000441a 0x2
  3736. .data.simpleProfileChar4UserDesp
  3737. 0x000000002000441c 0x12 ./Profile/gattprofile.o
  3738. *fill* 0x000000002000442e 0x2
  3739. .data 0x0000000020004430 0xd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3740. *fill* 0x000000002000443d 0x3
  3741. .data.rel.local
  3742. 0x0000000020004440 0x4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3743. 0x0000000020004440 base64char
  3744. .data.impure_data
  3745. 0x0000000020004444 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  3746. .data.__global_locale
  3747. 0x00000000200044a4 0x16c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  3748. 0x00000000200044a4 __global_locale
  3749. *(.gnu.linkonce.d.*)
  3750. 0x0000000020004610 . = ALIGN (0x8)
  3751. *(.sdata .sdata.*)
  3752. .sdata.user_ws2812b_task_id
  3753. 0x0000000020004610 0x1 ./components/ws2812b/user_ws2812b.o
  3754. 0x0000000020004610 user_ws2812b_task_id
  3755. .sdata.user_nfc_task_id
  3756. 0x0000000020004611 0x1 ./components/nfc/user_nfc.o
  3757. 0x0000000020004611 user_nfc_task_id
  3758. .sdata.led_task_id
  3759. 0x0000000020004612 0x1 ./components/led/user_led.o
  3760. 0x0000000020004612 led_task_id
  3761. .sdata.elect_task_id
  3762. 0x0000000020004613 0x1 ./components/electlock/user_elect.o
  3763. 0x0000000020004613 elect_task_id
  3764. .sdata.user_config_param
  3765. 0x0000000020004614 0x6 ./components/config/user_config.o
  3766. 0x0000000020004614 user_config_param
  3767. .sdata.user_charge_task_id
  3768. 0x000000002000461a 0x1 ./components/charge/user_charge.o
  3769. 0x000000002000461a user_charge_task_id
  3770. .sdata.user_can_task_id
  3771. 0x000000002000461b 0x1 ./components/can/user_can.o
  3772. 0x000000002000461b user_can_task_id
  3773. .sdata.can_idx
  3774. 0x000000002000461c 0x1 ./components/action/user_sever.o
  3775. *fill* 0x000000002000461d 0x3
  3776. .sdata.offline_timeout
  3777. 0x0000000020004620 0x4 ./components/action/user_sever.o
  3778. .sdata.rst_timeout
  3779. 0x0000000020004624 0x1 ./components/action/user_sever.o
  3780. .sdata.user_server_task_id
  3781. 0x0000000020004625 0x1 ./components/action/user_sever.o
  3782. 0x0000000020004625 user_server_task_id
  3783. *fill* 0x0000000020004626 0x2
  3784. .sdata.Peripheral_SimpleProfileCBs
  3785. 0x0000000020004628 0x4 ./User/peripheral.o
  3786. .sdata.Peripheral_TaskID
  3787. 0x000000002000462c 0x1 ./User/peripheral.o
  3788. .sdata.peripheralMTU
  3789. 0x000000002000462d 0x1 ./User/peripheral.o
  3790. *fill* 0x000000002000462e 0x2
  3791. .sdata.SystemCoreClock
  3792. 0x0000000020004630 0x4 ./User/system_ch32v20x.o
  3793. 0x0000000020004630 SystemCoreClock
  3794. .sdata.ADCPrescTable
  3795. 0x0000000020004634 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3796. .sdata.curbrk.4953
  3797. 0x0000000020004638 0x4 ./SRC/Debug/debug.o
  3798. .sdata.devInfo11073CertProps
  3799. 0x000000002000463c 0x1 ./Profile/devinfoservice.o
  3800. .sdata.devInfoFirmwareRevProps
  3801. 0x000000002000463d 0x1 ./Profile/devinfoservice.o
  3802. .sdata.devInfoHardwareRevProps
  3803. 0x000000002000463e 0x1 ./Profile/devinfoservice.o
  3804. .sdata.devInfoMfrNameProps
  3805. 0x000000002000463f 0x1 ./Profile/devinfoservice.o
  3806. .sdata.devInfoModelNumberProps
  3807. 0x0000000020004640 0x1 ./Profile/devinfoservice.o
  3808. *fill* 0x0000000020004641 0x3
  3809. .sdata.devInfoPnpId
  3810. 0x0000000020004644 0x7 ./Profile/devinfoservice.o
  3811. .sdata.devInfoPnpIdProps
  3812. 0x000000002000464b 0x1 ./Profile/devinfoservice.o
  3813. .sdata.devInfoSerialNumberProps
  3814. 0x000000002000464c 0x1 ./Profile/devinfoservice.o
  3815. .sdata.devInfoSoftwareRevProps
  3816. 0x000000002000464d 0x1 ./Profile/devinfoservice.o
  3817. .sdata.devInfoSystemIdProps
  3818. 0x000000002000464e 0x1 ./Profile/devinfoservice.o
  3819. .sdata.simpleProfileChar1Props
  3820. 0x000000002000464f 0x1 ./Profile/gattprofile.o
  3821. .sdata.simpleProfileChar2Props
  3822. 0x0000000020004650 0x1 ./Profile/gattprofile.o
  3823. .sdata.simpleProfileChar3Props
  3824. 0x0000000020004651 0x1 ./Profile/gattprofile.o
  3825. .sdata.simpleProfileChar4Props
  3826. 0x0000000020004652 0x1 ./Profile/gattprofile.o
  3827. *fill* 0x0000000020004653 0x1
  3828. .sdata.__fdlib_version
  3829. 0x0000000020004654 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_lib_ver.o)
  3830. 0x0000000020004654 __fdlib_version
  3831. .sdata._impure_ptr
  3832. 0x0000000020004658 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  3833. 0x0000000020004658 _impure_ptr
  3834. *(.gnu.linkonce.s.*)
  3835. 0x0000000020004660 . = ALIGN (0x8)
  3836. *fill* 0x000000002000465c 0x4
  3837. *(.srodata.cst16)
  3838. *(.srodata.cst8)
  3839. *(.srodata.cst4)
  3840. *(.srodata.cst2)
  3841. *(.srodata .srodata.*)
  3842. 0x0000000020004660 . = ALIGN (0x4)
  3843. 0x0000000020004660 PROVIDE (_edata = .)
  3844. .got 0x0000000020004660 0x8 load address 0x0000000000016850
  3845. .got 0x0000000020004660 0x8 ./components/ws2812b/user_ws2812b.o
  3846. 0x0000000020004660 _GLOBAL_OFFSET_TABLE_
  3847. .got.plt 0x0000000020004668 0x8 load address 0x0000000000016858
  3848. .got.plt 0x0000000020004668 0x8 ./components/ws2812b/user_ws2812b.o
  3849. .bss 0x0000000020004670 0x23c8 load address 0x0000000000016860
  3850. 0x0000000020004670 . = ALIGN (0x4)
  3851. 0x0000000020004670 PROVIDE (_sbss = .)
  3852. *(.sbss*)
  3853. .sbss.CT 0x0000000020004670 0x2 ./components/nfc/user_nfc.o
  3854. .sbss.nfc_cs_idx
  3855. 0x0000000020004672 0x1 ./components/nfc/user_nfc.o
  3856. *fill* 0x0000000020004673 0x1
  3857. .sbss.xUpload_card_stat
  3858. 0x0000000020004674 0x4 ./components/nfc/user_nfc.o
  3859. .sbss.alarm_stat
  3860. 0x0000000020004678 0x4 ./components/led/user_led.o
  3861. .sbss.electsw_upload
  3862. 0x000000002000467c 0x4 ./components/electlock/elect_sw.o
  3863. 0x000000002000467c electsw_upload
  3864. .sbss.elect_start_stat
  3865. 0x0000000020004680 0x1 ./components/electlock/user_elect.o
  3866. *fill* 0x0000000020004681 0x3
  3867. .sbss.xUpload_stat
  3868. 0x0000000020004684 0x4 ./components/electlock/user_elect.o
  3869. .sbss.Calibrattion_Val
  3870. 0x0000000020004688 0x2 ./components/charge/user_adc.o
  3871. *fill* 0x000000002000468a 0x2
  3872. .sbss.adc_data
  3873. 0x000000002000468c 0x4 ./components/charge/user_adc.o
  3874. .sbss.adc_upload
  3875. 0x0000000020004690 0x4 ./components/charge/user_adc.o
  3876. .sbss.xUpload_stat
  3877. 0x0000000020004694 0x4 ./components/charge/user_charge.o
  3878. .sbss.dipsw_addr
  3879. 0x0000000020004698 0x1 ./components/can/dip_sw.o
  3880. *fill* 0x0000000020004699 0x3
  3881. .sbss.dipsw_upload
  3882. 0x000000002000469c 0x4 ./components/can/dip_sw.o
  3883. 0x000000002000469c dipsw_upload
  3884. .sbss.can_node_id
  3885. 0x00000000200046a0 0x1 ./components/can/user_can.o
  3886. *fill* 0x00000000200046a1 0x3
  3887. .sbss.xRecv_data
  3888. 0x00000000200046a4 0x4 ./components/can/user_can.o
  3889. .sbss.token 0x00000000200046a8 0x4 ./components/action/ble_action.o
  3890. .sbss.unixTime
  3891. 0x00000000200046ac 0x4 ./components/action/ble_action.o
  3892. .sbss.upload_ble_data
  3893. 0x00000000200046b0 0x4 ./components/action/ble_action.o
  3894. .sbss.can_open_data
  3895. 0x00000000200046b4 0x8 ./components/action/user_sever.o
  3896. .sbss.left_fan_speed
  3897. 0x00000000200046bc 0x1 ./components/action/user_sever.o
  3898. .sbss.offline_stat
  3899. 0x00000000200046bd 0x1 ./components/action/user_sever.o
  3900. .sbss.right_fan_speed
  3901. 0x00000000200046be 0x1 ./components/action/user_sever.o
  3902. *fill* 0x00000000200046bf 0x1
  3903. .sbss.MacAddr 0x00000000200046c0 0x6 ./User/app_main.o
  3904. 0x00000000200046c0 MacAddr
  3905. *fill* 0x00000000200046c6 0x2
  3906. .sbss.Broadcaster_BroadcasterCBs
  3907. 0x00000000200046c8 0x8 ./User/peripheral.o
  3908. .sbss.ble_connect
  3909. 0x00000000200046d0 0x4 ./User/peripheral.o
  3910. .sbss.download_ble_data
  3911. 0x00000000200046d4 0x4 ./User/peripheral.o
  3912. .sbss.download_ble_file
  3913. 0x00000000200046d8 0x4 ./User/peripheral.o
  3914. .sbss.peripheralConnList
  3915. 0x00000000200046dc 0x8 ./User/peripheral.o
  3916. .sbss.NVIC_Priority_Group
  3917. 0x00000000200046e4 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
  3918. 0x00000000200046e4 NVIC_Priority_Group
  3919. .sbss.p_ms 0x00000000200046e8 0x2 ./SRC/Debug/debug.o
  3920. .sbss.p_us 0x00000000200046ea 0x1 ./SRC/Debug/debug.o
  3921. *fill* 0x00000000200046eb 0x1
  3922. .sbss.devInfoSystemId
  3923. 0x00000000200046ec 0x8 ./Profile/devinfoservice.o
  3924. .sbss.simpleProfile_AppCBs
  3925. 0x00000000200046f4 0x4 ./Profile/gattprofile.o
  3926. .sbss.g_LLE_IRQLibHandlerLocation
  3927. 0x00000000200046f8 0x4 ./HAL/MCU.o
  3928. 0x00000000200046f8 g_LLE_IRQLibHandlerLocation
  3929. .sbss.halTaskID
  3930. 0x00000000200046fc 0x1 ./HAL/MCU.o
  3931. 0x00000000200046fc halTaskID
  3932. *fill* 0x00000000200046fd 0x3
  3933. .sbss.RTCTigFlag
  3934. 0x0000000020004700 0x4 ./HAL/RTC.o
  3935. 0x0000000020004700 RTCTigFlag
  3936. .sbss.__malloc_free_list
  3937. 0x0000000020004704 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  3938. 0x0000000020004704 __malloc_free_list
  3939. .sbss.__malloc_sbrk_start
  3940. 0x0000000020004708 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  3941. 0x0000000020004708 __malloc_sbrk_start
  3942. *(.gnu.linkonce.sb.*)
  3943. *(.bss*)
  3944. .bss.user_ws2812b_work
  3945. 0x000000002000470c 0xc ./components/ws2812b/user_ws2812b.o
  3946. .bss.g_roundKeyTable
  3947. 0x0000000020004718 0xb0 ./components/tools/AES_PKCS7.o
  3948. .bss.IDA 0x00000000200047c8 0xf ./components/nfc/user_nfc.o
  3949. *fill* 0x00000000200047d7 0x1
  3950. .bss.nfc_work 0x00000000200047d8 0x4c ./components/nfc/user_nfc.o
  3951. .bss.tmpValue 0x0000000020004824 0x190 ./components/charge/user_adc.o
  3952. .bss.user_can_work
  3953. 0x00000000200049b4 0x20 ./components/can/user_can.o
  3954. *fill* 0x00000000200049d4 0x4
  3955. .bss.block_buf
  3956. 0x00000000200049d8 0x100 ./components/action/ble_action.o
  3957. 0x00000000200049d8 block_buf
  3958. .bss.MEM_BUF 0x0000000020004ad8 0x1c00 ./User/app_main.o
  3959. 0x0000000020004ad8 MEM_BUF
  3960. .bss.Peripheral_BondMgrCBs
  3961. 0x00000000200066d8 0xc ./User/peripheral.o
  3962. .bss.simpleProfileChar1
  3963. 0x00000000200066e4 0x100 ./Profile/gattprofile.o
  3964. .bss.simpleProfileChar2
  3965. 0x00000000200067e4 0x100 ./Profile/gattprofile.o
  3966. .bss.simpleProfileChar3
  3967. 0x00000000200068e4 0x100 ./Profile/gattprofile.o
  3968. .bss.simpleProfileChar4
  3969. 0x00000000200069e4 0x40 ./Profile/gattprofile.o
  3970. .bss.simpleProfileChar4Config
  3971. 0x0000000020006a24 0x10 ./Profile/gattprofile.o
  3972. *(.gnu.linkonce.b.*)
  3973. *(COMMON*)
  3974. COMMON 0x0000000020006a34 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  3975. 0x0000000020006a34 errno
  3976. 0x0000000020006a38 . = ALIGN (0x4)
  3977. 0x0000000020006a38 PROVIDE (_ebss = .)
  3978. 0x0000000020006a38 PROVIDE (_end = _ebss)
  3979. [!provide] PROVIDE (end = .)
  3980. .stack 0x0000000020010000 0x0
  3981. 0x0000000020010000 PROVIDE (_heap_end = .)
  3982. 0x0000000020010000 . = ALIGN (0x4)
  3983. 0x0000000020010000 PROVIDE (_eusrstack = .)
  3984. OUTPUT(mainboard.elf elf32-littleriscv)
  3985. .debug_info 0x0000000000000000 0x39a02
  3986. .debug_info 0x0000000000000000 0xeb6 ./components/ws2812b/user_ws2812b.o
  3987. .debug_info 0x0000000000000eb6 0x12e1 ./components/ws2812b/ws2812b_spi.o
  3988. .debug_info 0x0000000000002197 0x1170 ./components/tools/AES_PKCS7.o
  3989. .debug_info 0x0000000000003307 0x11e2 ./components/tools/_string.o
  3990. .debug_info 0x00000000000044e9 0xb67 ./components/tools/tools.o
  3991. .debug_info 0x0000000000005050 0x2000 ./components/nfc/fm175xx.o
  3992. .debug_info 0x0000000000007050 0x19e7 ./components/nfc/lpcd.o
  3993. .debug_info 0x0000000000008a37 0x15e7 ./components/nfc/type_a.o
  3994. .debug_info 0x000000000000a01e 0x197e ./components/nfc/user_nfc.o
  3995. .debug_info 0x000000000000b99c 0xefe ./components/nfc/user_spi.o
  3996. .debug_info 0x000000000000c89a 0x11d0 ./components/led/user_led.o
  3997. .debug_info 0x000000000000da6a 0xf34 ./components/electlock/elect_sw.o
  3998. .debug_info 0x000000000000e99e 0x125f ./components/electlock/user_elect.o
  3999. .debug_info 0x000000000000fbfd 0xdf9 ./components/config/user_config.o
  4000. .debug_info 0x00000000000109f6 0x18f4 ./components/charge/user_adc.o
  4001. .debug_info 0x00000000000122ea 0x1021 ./components/charge/user_charge.o
  4002. .debug_info 0x000000000001330b 0x1403 ./components/charge/user_fan.o
  4003. .debug_info 0x000000000001470e 0x10c1 ./components/can/dip_sw.o
  4004. .debug_info 0x00000000000157cf 0x19be ./components/can/user_can.o
  4005. .debug_info 0x000000000001718d 0x1ec1 ./components/action/ble_action.o
  4006. .debug_info 0x000000000001904e 0x1d6e ./components/action/user_sever.o
  4007. .debug_info 0x000000000001adbc 0xfae ./User/app_main.o
  4008. .debug_info 0x000000000001bd6a 0x1182 ./User/ch32v20x_it.o
  4009. .debug_info 0x000000000001ceec 0x2de1 ./User/peripheral.o
  4010. .debug_info 0x000000000001fccd 0xb89 ./User/system_ch32v20x.o
  4011. .debug_info 0x0000000000020856 0x22 ./Startup/startup_ch32v20x_D8W.o
  4012. .debug_info 0x0000000000020878 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
  4013. .debug_info 0x0000000000021f60 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
  4014. .debug_info 0x0000000000023766 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4015. .debug_info 0x00000000000241fa 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
  4016. .debug_info 0x0000000000024f1b 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
  4017. .debug_info 0x0000000000025b28 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
  4018. .debug_info 0x0000000000027105 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4019. .debug_info 0x00000000000282a9 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4020. .debug_info 0x0000000000028e1d 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
  4021. .debug_info 0x0000000000029cb3 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4022. .debug_info 0x000000000002ad07 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4023. .debug_info 0x000000000002bf80 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4024. .debug_info 0x000000000002cf42 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
  4025. .debug_info 0x000000000002e203 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
  4026. .debug_info 0x0000000000030cc3 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
  4027. .debug_info 0x0000000000032003 0xf2d ./SRC/Debug/debug.o
  4028. .debug_info 0x0000000000032f30 0x10b9 ./Profile/devinfoservice.o
  4029. .debug_info 0x0000000000033fe9 0x1476 ./Profile/gattprofile.o
  4030. .debug_info 0x000000000003545f 0x22 ./LIB/ble_task_scheduler.o
  4031. .debug_info 0x0000000000035481 0x1a85 ./HAL/MCU.o
  4032. .debug_info 0x0000000000036f06 0xd55 ./HAL/RTC.o
  4033. .debug_info 0x0000000000037c5b 0x107e d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4034. .debug_info 0x0000000000038cd9 0x161 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4035. .debug_info 0x0000000000038e3a 0xbc8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4036. .debug_abbrev 0x0000000000000000 0xa8dd
  4037. .debug_abbrev 0x0000000000000000 0x3e9 ./components/ws2812b/user_ws2812b.o
  4038. .debug_abbrev 0x00000000000003e9 0x29f ./components/ws2812b/ws2812b_spi.o
  4039. .debug_abbrev 0x0000000000000688 0x408 ./components/tools/AES_PKCS7.o
  4040. .debug_abbrev 0x0000000000000a90 0x38e ./components/tools/_string.o
  4041. .debug_abbrev 0x0000000000000e1e 0x30f ./components/tools/tools.o
  4042. .debug_abbrev 0x000000000000112d 0x46e ./components/nfc/fm175xx.o
  4043. .debug_abbrev 0x000000000000159b 0x428 ./components/nfc/lpcd.o
  4044. .debug_abbrev 0x00000000000019c3 0x340 ./components/nfc/type_a.o
  4045. .debug_abbrev 0x0000000000001d03 0x508 ./components/nfc/user_nfc.o
  4046. .debug_abbrev 0x000000000000220b 0x2a4 ./components/nfc/user_spi.o
  4047. .debug_abbrev 0x00000000000024af 0x462 ./components/led/user_led.o
  4048. .debug_abbrev 0x0000000000002911 0x38b ./components/electlock/elect_sw.o
  4049. .debug_abbrev 0x0000000000002c9c 0x409 ./components/electlock/user_elect.o
  4050. .debug_abbrev 0x00000000000030a5 0x377 ./components/config/user_config.o
  4051. .debug_abbrev 0x000000000000341c 0x488 ./components/charge/user_adc.o
  4052. .debug_abbrev 0x00000000000038a4 0x377 ./components/charge/user_charge.o
  4053. .debug_abbrev 0x0000000000003c1b 0x349 ./components/charge/user_fan.o
  4054. .debug_abbrev 0x0000000000003f64 0x3ff ./components/can/dip_sw.o
  4055. .debug_abbrev 0x0000000000004363 0x424 ./components/can/user_can.o
  4056. .debug_abbrev 0x0000000000004787 0x596 ./components/action/ble_action.o
  4057. .debug_abbrev 0x0000000000004d1d 0x494 ./components/action/user_sever.o
  4058. .debug_abbrev 0x00000000000051b1 0x2bc ./User/app_main.o
  4059. .debug_abbrev 0x000000000000546d 0x2e1 ./User/ch32v20x_it.o
  4060. .debug_abbrev 0x000000000000574e 0x4a1 ./User/peripheral.o
  4061. .debug_abbrev 0x0000000000005bef 0x2c0 ./User/system_ch32v20x.o
  4062. .debug_abbrev 0x0000000000005eaf 0x12 ./Startup/startup_ch32v20x_D8W.o
  4063. .debug_abbrev 0x0000000000005ec1 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
  4064. .debug_abbrev 0x000000000000626d 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
  4065. .debug_abbrev 0x000000000000665b 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4066. .debug_abbrev 0x0000000000006952 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
  4067. .debug_abbrev 0x0000000000006c54 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
  4068. .debug_abbrev 0x0000000000006f2e 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
  4069. .debug_abbrev 0x0000000000007396 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4070. .debug_abbrev 0x00000000000076ea 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4071. .debug_abbrev 0x000000000000796c 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
  4072. .debug_abbrev 0x0000000000007c56 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
  4073. .debug_abbrev 0x0000000000007ff2 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4074. .debug_abbrev 0x0000000000008366 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
  4075. .debug_abbrev 0x0000000000008690 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
  4076. .debug_abbrev 0x00000000000089b5 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
  4077. .debug_abbrev 0x0000000000008de6 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
  4078. .debug_abbrev 0x000000000000910b 0x2f0 ./SRC/Debug/debug.o
  4079. .debug_abbrev 0x00000000000093fb 0x310 ./Profile/devinfoservice.o
  4080. .debug_abbrev 0x000000000000970b 0x3b7 ./Profile/gattprofile.o
  4081. .debug_abbrev 0x0000000000009ac2 0x12 ./LIB/ble_task_scheduler.o
  4082. .debug_abbrev 0x0000000000009ad4 0x43e ./HAL/MCU.o
  4083. .debug_abbrev 0x0000000000009f12 0x2b4 ./HAL/RTC.o
  4084. .debug_abbrev 0x000000000000a1c6 0x37f d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4085. .debug_abbrev 0x000000000000a545 0xdd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4086. .debug_abbrev 0x000000000000a622 0x2bb d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4087. .debug_loc 0x0000000000000000 0xeb7d
  4088. .debug_loc 0x0000000000000000 0x1be ./components/ws2812b/user_ws2812b.o
  4089. .debug_loc 0x00000000000001be 0xa5 ./components/ws2812b/ws2812b_spi.o
  4090. .debug_loc 0x0000000000000263 0x753 ./components/tools/AES_PKCS7.o
  4091. .debug_loc 0x00000000000009b6 0xdad ./components/tools/_string.o
  4092. .debug_loc 0x0000000000001763 0x12e ./components/tools/tools.o
  4093. .debug_loc 0x0000000000001891 0xfc8 ./components/nfc/fm175xx.o
  4094. .debug_loc 0x0000000000002859 0x4bb ./components/nfc/lpcd.o
  4095. .debug_loc 0x0000000000002d14 0x9fc ./components/nfc/type_a.o
  4096. .debug_loc 0x0000000000003710 0x472 ./components/nfc/user_nfc.o
  4097. .debug_loc 0x0000000000003b82 0xb8 ./components/nfc/user_spi.o
  4098. .debug_loc 0x0000000000003c3a 0x44c ./components/led/user_led.o
  4099. .debug_loc 0x0000000000004086 0xa8 ./components/electlock/elect_sw.o
  4100. .debug_loc 0x000000000000412e 0x2a2 ./components/electlock/user_elect.o
  4101. .debug_loc 0x00000000000043d0 0x186 ./components/config/user_config.o
  4102. .debug_loc 0x0000000000004556 0x20d ./components/charge/user_adc.o
  4103. .debug_loc 0x0000000000004763 0x1bd ./components/charge/user_charge.o
  4104. .debug_loc 0x0000000000004920 0x12c ./components/charge/user_fan.o
  4105. .debug_loc 0x0000000000004a4c 0xd2 ./components/can/dip_sw.o
  4106. .debug_loc 0x0000000000004b1e 0x35b ./components/can/user_can.o
  4107. .debug_loc 0x0000000000004e79 0x5a2 ./components/action/ble_action.o
  4108. .debug_loc 0x000000000000541b 0x4d6 ./components/action/user_sever.o
  4109. .debug_loc 0x00000000000058f1 0x69e ./User/peripheral.o
  4110. .debug_loc 0x0000000000005f8f 0xc2 ./User/system_ch32v20x.o
  4111. .debug_loc 0x0000000000006051 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
  4112. .debug_loc 0x0000000000006b2b 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
  4113. .debug_loc 0x00000000000074c4 0x6e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4114. .debug_loc 0x0000000000007532 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
  4115. .debug_loc 0x0000000000007687 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
  4116. .debug_loc 0x0000000000007808 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
  4117. .debug_loc 0x00000000000084ca 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4118. .debug_loc 0x0000000000008bd1 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4119. .debug_loc 0x0000000000008c39 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
  4120. .debug_loc 0x0000000000008c66 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
  4121. .debug_loc 0x0000000000008f04 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
  4122. .debug_loc 0x00000000000096b1 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
  4123. .debug_loc 0x0000000000009c00 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
  4124. .debug_loc 0x000000000000a1c9 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
  4125. .debug_loc 0x000000000000bc85 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
  4126. .debug_loc 0x000000000000c3d7 0x1a8 ./SRC/Debug/debug.o
  4127. .debug_loc 0x000000000000c57f 0x419 ./Profile/devinfoservice.o
  4128. .debug_loc 0x000000000000c998 0xb8e ./Profile/gattprofile.o
  4129. .debug_loc 0x000000000000d526 0x40c ./HAL/MCU.o
  4130. .debug_loc 0x000000000000d932 0x8b ./HAL/RTC.o
  4131. .debug_loc 0x000000000000d9bd 0x559 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4132. .debug_loc 0x000000000000df16 0x569 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4133. .debug_loc 0x000000000000e47f 0x6fe d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4134. .debug_aranges 0x0000000000000000 0x1790
  4135. .debug_aranges
  4136. 0x0000000000000000 0x48 ./components/ws2812b/user_ws2812b.o
  4137. .debug_aranges
  4138. 0x0000000000000048 0x30 ./components/ws2812b/ws2812b_spi.o
  4139. .debug_aranges
  4140. 0x0000000000000078 0x58 ./components/tools/AES_PKCS7.o
  4141. .debug_aranges
  4142. 0x00000000000000d0 0xc8 ./components/tools/_string.o
  4143. .debug_aranges
  4144. 0x0000000000000198 0x38 ./components/tools/tools.o
  4145. .debug_aranges
  4146. 0x00000000000001d0 0xc0 ./components/nfc/fm175xx.o
  4147. .debug_aranges
  4148. 0x0000000000000290 0xc8 ./components/nfc/lpcd.o
  4149. .debug_aranges
  4150. 0x0000000000000358 0x70 ./components/nfc/type_a.o
  4151. .debug_aranges
  4152. 0x00000000000003c8 0x80 ./components/nfc/user_nfc.o
  4153. .debug_aranges
  4154. 0x0000000000000448 0x28 ./components/nfc/user_spi.o
  4155. .debug_aranges
  4156. 0x0000000000000470 0x50 ./components/led/user_led.o
  4157. .debug_aranges
  4158. 0x00000000000004c0 0x58 ./components/electlock/elect_sw.o
  4159. .debug_aranges
  4160. 0x0000000000000518 0x58 ./components/electlock/user_elect.o
  4161. .debug_aranges
  4162. 0x0000000000000570 0x50 ./components/config/user_config.o
  4163. .debug_aranges
  4164. 0x00000000000005c0 0x50 ./components/charge/user_adc.o
  4165. .debug_aranges
  4166. 0x0000000000000610 0x40 ./components/charge/user_charge.o
  4167. .debug_aranges
  4168. 0x0000000000000650 0x38 ./components/charge/user_fan.o
  4169. .debug_aranges
  4170. 0x0000000000000688 0x60 ./components/can/dip_sw.o
  4171. .debug_aranges
  4172. 0x00000000000006e8 0x50 ./components/can/user_can.o
  4173. .debug_aranges
  4174. 0x0000000000000738 0x98 ./components/action/ble_action.o
  4175. .debug_aranges
  4176. 0x00000000000007d0 0x80 ./components/action/user_sever.o
  4177. .debug_aranges
  4178. 0x0000000000000850 0x28 ./User/app_main.o
  4179. .debug_aranges
  4180. 0x0000000000000878 0x48 ./User/ch32v20x_it.o
  4181. .debug_aranges
  4182. 0x00000000000008c0 0x70 ./User/peripheral.o
  4183. .debug_aranges
  4184. 0x0000000000000930 0x28 ./User/system_ch32v20x.o
  4185. .debug_aranges
  4186. 0x0000000000000958 0x30 ./Startup/startup_ch32v20x_D8W.o
  4187. .debug_aranges
  4188. 0x0000000000000988 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
  4189. .debug_aranges
  4190. 0x0000000000000ad8 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
  4191. .debug_aranges
  4192. 0x0000000000000bb0 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4193. .debug_aranges
  4194. 0x0000000000000bf8 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
  4195. .debug_aranges
  4196. 0x0000000000000c58 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
  4197. .debug_aranges
  4198. 0x0000000000000ca8 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
  4199. .debug_aranges
  4200. 0x0000000000000db8 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4201. .debug_aranges
  4202. 0x0000000000000e68 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4203. .debug_aranges
  4204. 0x0000000000000eb0 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
  4205. .debug_aranges
  4206. 0x0000000000000ed8 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4207. .debug_aranges
  4208. 0x0000000000000f60 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4209. .debug_aranges
  4210. 0x0000000000001090 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4211. .debug_aranges
  4212. 0x0000000000001118 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4213. .debug_aranges
  4214. 0x00000000000011e8 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
  4215. .debug_aranges
  4216. 0x00000000000014b8 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4217. .debug_aranges
  4218. 0x00000000000015a8 0x50 ./SRC/Debug/debug.o
  4219. .debug_aranges
  4220. 0x00000000000015f8 0x38 ./Profile/devinfoservice.o
  4221. .debug_aranges
  4222. 0x0000000000001630 0x58 ./Profile/gattprofile.o
  4223. .debug_aranges
  4224. 0x0000000000001688 0x28 ./LIB/ble_task_scheduler.o
  4225. .debug_aranges
  4226. 0x00000000000016b0 0x50 ./HAL/MCU.o
  4227. .debug_aranges
  4228. 0x0000000000001700 0x30 ./HAL/RTC.o
  4229. .debug_aranges
  4230. 0x0000000000001730 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4231. .debug_aranges
  4232. 0x0000000000001750 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4233. .debug_aranges
  4234. 0x0000000000001770 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4235. .debug_ranges 0x0000000000000000 0x2390
  4236. .debug_ranges 0x0000000000000000 0xa8 ./components/ws2812b/user_ws2812b.o
  4237. .debug_ranges 0x00000000000000a8 0x20 ./components/ws2812b/ws2812b_spi.o
  4238. .debug_ranges 0x00000000000000c8 0xe0 ./components/tools/AES_PKCS7.o
  4239. .debug_ranges 0x00000000000001a8 0xd8 ./components/tools/_string.o
  4240. .debug_ranges 0x0000000000000280 0x40 ./components/tools/tools.o
  4241. .debug_ranges 0x00000000000002c0 0x2a8 ./components/nfc/fm175xx.o
  4242. .debug_ranges 0x0000000000000568 0x140 ./components/nfc/lpcd.o
  4243. .debug_ranges 0x00000000000006a8 0x60 ./components/nfc/type_a.o
  4244. .debug_ranges 0x0000000000000708 0xe0 ./components/nfc/user_nfc.o
  4245. .debug_ranges 0x00000000000007e8 0x18 ./components/nfc/user_spi.o
  4246. .debug_ranges 0x0000000000000800 0xf8 ./components/led/user_led.o
  4247. .debug_ranges 0x00000000000008f8 0xa0 ./components/electlock/elect_sw.o
  4248. .debug_ranges 0x0000000000000998 0xc8 ./components/electlock/user_elect.o
  4249. .debug_ranges 0x0000000000000a60 0x40 ./components/config/user_config.o
  4250. .debug_ranges 0x0000000000000aa0 0x60 ./components/charge/user_adc.o
  4251. .debug_ranges 0x0000000000000b00 0x50 ./components/charge/user_charge.o
  4252. .debug_ranges 0x0000000000000b50 0x48 ./components/charge/user_fan.o
  4253. .debug_ranges 0x0000000000000b98 0xc0 ./components/can/dip_sw.o
  4254. .debug_ranges 0x0000000000000c58 0x158 ./components/can/user_can.o
  4255. .debug_ranges 0x0000000000000db0 0x1b0 ./components/action/ble_action.o
  4256. .debug_ranges 0x0000000000000f60 0x228 ./components/action/user_sever.o
  4257. .debug_ranges 0x0000000000001188 0x18 ./User/app_main.o
  4258. .debug_ranges 0x00000000000011a0 0x38 ./User/ch32v20x_it.o
  4259. .debug_ranges 0x00000000000011d8 0xf8 ./User/peripheral.o
  4260. .debug_ranges 0x00000000000012d0 0x38 ./User/system_ch32v20x.o
  4261. .debug_ranges 0x0000000000001308 0x28 ./Startup/startup_ch32v20x_D8W.o
  4262. .debug_ranges 0x0000000000001330 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
  4263. .debug_ranges 0x0000000000001470 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
  4264. .debug_ranges 0x0000000000001568 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4265. .debug_ranges 0x00000000000015b8 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
  4266. .debug_ranges 0x0000000000001608 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
  4267. .debug_ranges 0x0000000000001648 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  4268. .debug_ranges 0x0000000000001748 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4269. .debug_ranges 0x00000000000017e8 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4270. .debug_ranges 0x0000000000001820 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
  4271. .debug_ranges 0x0000000000001868 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4272. .debug_ranges 0x00000000000018e0 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4273. .debug_ranges 0x0000000000001a00 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4274. .debug_ranges 0x0000000000001a78 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4275. .debug_ranges 0x0000000000001b38 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
  4276. .debug_ranges 0x0000000000001e40 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4277. .debug_ranges 0x0000000000001f20 0x40 ./SRC/Debug/debug.o
  4278. .debug_ranges 0x0000000000001f60 0x28 ./Profile/devinfoservice.o
  4279. .debug_ranges 0x0000000000001f88 0x128 ./Profile/gattprofile.o
  4280. .debug_ranges 0x00000000000020b0 0x20 ./LIB/ble_task_scheduler.o
  4281. .debug_ranges 0x00000000000020d0 0x88 ./HAL/MCU.o
  4282. .debug_ranges 0x0000000000002158 0x20 ./HAL/RTC.o
  4283. .debug_ranges 0x0000000000002178 0x28 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4284. .debug_ranges 0x00000000000021a0 0x1f0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4285. .debug_line 0x0000000000000000 0x2b91c
  4286. .debug_line 0x0000000000000000 0x98b ./components/ws2812b/user_ws2812b.o
  4287. .debug_line 0x000000000000098b 0x8f4 ./components/ws2812b/ws2812b_spi.o
  4288. .debug_line 0x000000000000127f 0xc31 ./components/tools/AES_PKCS7.o
  4289. .debug_line 0x0000000000001eb0 0x1222 ./components/tools/_string.o
  4290. .debug_line 0x00000000000030d2 0x5c3 ./components/tools/tools.o
  4291. .debug_line 0x0000000000003695 0x1641 ./components/nfc/fm175xx.o
  4292. .debug_line 0x0000000000004cd6 0x132b ./components/nfc/lpcd.o
  4293. .debug_line 0x0000000000006001 0x12f0 ./components/nfc/type_a.o
  4294. .debug_line 0x00000000000072f1 0x156e ./components/nfc/user_nfc.o
  4295. .debug_line 0x000000000000885f 0x7f0 ./components/nfc/user_spi.o
  4296. .debug_line 0x000000000000904f 0xf13 ./components/led/user_led.o
  4297. .debug_line 0x0000000000009f62 0x999 ./components/electlock/elect_sw.o
  4298. .debug_line 0x000000000000a8fb 0xbbb ./components/electlock/user_elect.o
  4299. .debug_line 0x000000000000b4b6 0x7fc ./components/config/user_config.o
  4300. .debug_line 0x000000000000bcb2 0xdeb ./components/charge/user_adc.o
  4301. .debug_line 0x000000000000ca9d 0x89f ./components/charge/user_charge.o
  4302. .debug_line 0x000000000000d33c 0x8e3 ./components/charge/user_fan.o
  4303. .debug_line 0x000000000000dc1f 0xacf ./components/can/dip_sw.o
  4304. .debug_line 0x000000000000e6ee 0xeb4 ./components/can/user_can.o
  4305. .debug_line 0x000000000000f5a2 0x1854 ./components/action/ble_action.o
  4306. .debug_line 0x0000000000010df6 0x18e4 ./components/action/user_sever.o
  4307. .debug_line 0x00000000000126da 0xac7 ./User/app_main.o
  4308. .debug_line 0x00000000000131a1 0x835 ./User/ch32v20x_it.o
  4309. .debug_line 0x00000000000139d6 0xf8f ./User/peripheral.o
  4310. .debug_line 0x0000000000014965 0x7e3 ./User/system_ch32v20x.o
  4311. .debug_line 0x0000000000015148 0x128 ./Startup/startup_ch32v20x_D8W.o
  4312. .debug_line 0x0000000000015270 0x19e7 ./SRC/Peripheral/src/ch32v20x_adc.o
  4313. .debug_line 0x0000000000016c57 0x1b79 ./SRC/Peripheral/src/ch32v20x_can.o
  4314. .debug_line 0x00000000000187d0 0x49e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4315. .debug_line 0x0000000000018c6e 0x8f6 ./SRC/Peripheral/src/ch32v20x_dma.o
  4316. .debug_line 0x0000000000019564 0x715 ./SRC/Peripheral/src/ch32v20x_exti.o
  4317. .debug_line 0x0000000000019c79 0x26a2 ./SRC/Peripheral/src/ch32v20x_flash.o
  4318. .debug_line 0x000000000001c31b 0x11e0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4319. .debug_line 0x000000000001d4fb 0x534 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4320. .debug_line 0x000000000001da2f 0x51c ./SRC/Peripheral/src/ch32v20x_misc.o
  4321. .debug_line 0x000000000001df4b 0xcf4 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4322. .debug_line 0x000000000001ec3f 0x132c ./SRC/Peripheral/src/ch32v20x_rcc.o
  4323. .debug_line 0x000000000001ff6b 0x16ec ./SRC/Peripheral/src/ch32v20x_rtc.o
  4324. .debug_line 0x0000000000021657 0xee0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4325. .debug_line 0x0000000000022537 0x3354 ./SRC/Peripheral/src/ch32v20x_tim.o
  4326. .debug_line 0x000000000002588b 0x1004 ./SRC/Peripheral/src/ch32v20x_usart.o
  4327. .debug_line 0x000000000002688f 0x8ac ./SRC/Debug/debug.o
  4328. .debug_line 0x000000000002713b 0x934 ./Profile/devinfoservice.o
  4329. .debug_line 0x0000000000027a6f 0xc3f ./Profile/gattprofile.o
  4330. .debug_line 0x00000000000286ae 0x2ef ./LIB/ble_task_scheduler.o
  4331. .debug_line 0x000000000002899d 0xf75 ./HAL/MCU.o
  4332. .debug_line 0x0000000000029912 0x7e0 ./HAL/RTC.o
  4333. .debug_line 0x000000000002a0f2 0x60d d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4334. .debug_line 0x000000000002a6ff 0x5f4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4335. .debug_line 0x000000000002acf3 0xc29 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4336. .debug_str 0x0000000000000000 0x8d02
  4337. .debug_str 0x0000000000000000 0x7af ./components/ws2812b/user_ws2812b.o
  4338. 0x88a (size before relaxing)
  4339. .debug_str 0x00000000000007af 0x832 ./components/ws2812b/ws2812b_spi.o
  4340. 0xeed (size before relaxing)
  4341. .debug_str 0x0000000000000fe1 0x14c ./components/tools/AES_PKCS7.o
  4342. 0x738 (size before relaxing)
  4343. .debug_str 0x000000000000112d 0x192 ./components/tools/_string.o
  4344. 0x78b (size before relaxing)
  4345. .debug_str 0x00000000000012bf 0xa2 ./components/tools/tools.o
  4346. 0x6d0 (size before relaxing)
  4347. .debug_str 0x0000000000001361 0x32b ./components/nfc/fm175xx.o
  4348. 0x9a1 (size before relaxing)
  4349. .debug_str 0x000000000000168c 0x2b5 ./components/nfc/lpcd.o
  4350. 0xa8c (size before relaxing)
  4351. .debug_str 0x0000000000001941 0x164 ./components/nfc/type_a.o
  4352. 0x808 (size before relaxing)
  4353. .debug_str 0x0000000000001aa5 0x3a6 ./components/nfc/user_nfc.o
  4354. 0xd14 (size before relaxing)
  4355. .debug_str 0x0000000000001e4b 0x5f ./components/nfc/user_spi.o
  4356. 0x984 (size before relaxing)
  4357. .debug_str 0x0000000000001eaa 0x369 ./components/led/user_led.o
  4358. 0xa54 (size before relaxing)
  4359. .debug_str 0x0000000000002213 0x248 ./components/electlock/elect_sw.o
  4360. 0xa16 (size before relaxing)
  4361. .debug_str 0x000000000000245b 0x1b4 ./components/electlock/user_elect.o
  4362. 0xa80 (size before relaxing)
  4363. .debug_str 0x000000000000260f 0x1ea ./components/config/user_config.o
  4364. 0x858 (size before relaxing)
  4365. .debug_str 0x00000000000027f9 0x406 ./components/charge/user_adc.o
  4366. 0x11b1 (size before relaxing)
  4367. .debug_str 0x0000000000002bff 0xf8 ./components/charge/user_charge.o
  4368. 0xa7e (size before relaxing)
  4369. .debug_str 0x0000000000002cf7 0x40a ./components/charge/user_fan.o
  4370. 0xc5c (size before relaxing)
  4371. .debug_str 0x0000000000003101 0x1d1 ./components/can/dip_sw.o
  4372. 0xadd (size before relaxing)
  4373. .debug_str 0x00000000000032d2 0x424 ./components/can/user_can.o
  4374. 0x11ec (size before relaxing)
  4375. .debug_str 0x00000000000036f6 0x5cf ./components/action/ble_action.o
  4376. 0xfd4 (size before relaxing)
  4377. .debug_str 0x0000000000003cc5 0x46a ./components/action/user_sever.o
  4378. 0x1120 (size before relaxing)
  4379. .debug_str 0x000000000000412f 0x108 ./User/app_main.o
  4380. 0xa98 (size before relaxing)
  4381. .debug_str 0x0000000000004237 0xe7 ./User/ch32v20x_it.o
  4382. 0xa5d (size before relaxing)
  4383. .debug_str 0x000000000000431e 0xe7b ./User/peripheral.o
  4384. 0x1612 (size before relaxing)
  4385. .debug_str 0x0000000000005199 0xf5 ./User/system_ch32v20x.o
  4386. 0x709 (size before relaxing)
  4387. .debug_str 0x000000000000528e 0x2e ./Startup/startup_ch32v20x_D8W.o
  4388. 0x84 (size before relaxing)
  4389. .debug_str 0x00000000000052bc 0x454 ./SRC/Peripheral/src/ch32v20x_adc.o
  4390. 0xca5 (size before relaxing)
  4391. .debug_str 0x0000000000005710 0x2dd ./SRC/Peripheral/src/ch32v20x_can.o
  4392. 0xc49 (size before relaxing)
  4393. .debug_str 0x00000000000059ed 0xcf ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4394. 0x6d4 (size before relaxing)
  4395. .debug_str 0x0000000000005abc 0x10c ./SRC/Peripheral/src/ch32v20x_dma.o
  4396. 0x881 (size before relaxing)
  4397. .debug_str 0x0000000000005bc8 0x1ff ./SRC/Peripheral/src/ch32v20x_exti.o
  4398. 0x81b (size before relaxing)
  4399. .debug_str 0x0000000000005dc7 0x4ca ./SRC/Peripheral/src/ch32v20x_flash.o
  4400. 0xbad (size before relaxing)
  4401. .debug_str 0x0000000000006291 0x24d ./SRC/Peripheral/src/ch32v20x_gpio.o
  4402. 0xa3e (size before relaxing)
  4403. .debug_str 0x00000000000064de 0x108 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4404. 0x792 (size before relaxing)
  4405. .debug_str 0x00000000000065e6 0x106 ./SRC/Peripheral/src/ch32v20x_misc.o
  4406. 0xb5d (size before relaxing)
  4407. .debug_str 0x00000000000066ec 0x1ee ./SRC/Peripheral/src/ch32v20x_pwr.o
  4408. 0x8ea (size before relaxing)
  4409. .debug_str 0x00000000000068da 0x3d3 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4410. 0xb5c (size before relaxing)
  4411. .debug_str 0x0000000000006cad 0x307 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4412. 0x9c3 (size before relaxing)
  4413. .debug_str 0x0000000000006fb4 0x27d ./SRC/Peripheral/src/ch32v20x_spi.o
  4414. 0xb1d (size before relaxing)
  4415. .debug_str 0x0000000000007231 0x903 ./SRC/Peripheral/src/ch32v20x_tim.o
  4416. 0x1347 (size before relaxing)
  4417. .debug_str 0x0000000000007b34 0x42d ./SRC/Peripheral/src/ch32v20x_usart.o
  4418. 0xb78 (size before relaxing)
  4419. .debug_str 0x0000000000007f61 0xe2 ./SRC/Debug/debug.o
  4420. 0x99f (size before relaxing)
  4421. .debug_str 0x0000000000008043 0x37a ./Profile/devinfoservice.o
  4422. 0xaea (size before relaxing)
  4423. .debug_str 0x00000000000083bd 0x2ba ./Profile/gattprofile.o
  4424. 0xb97 (size before relaxing)
  4425. .debug_str 0x0000000000008677 0x69 ./LIB/ble_task_scheduler.o
  4426. 0xcb (size before relaxing)
  4427. .debug_str 0x00000000000086e0 0x306 ./HAL/MCU.o
  4428. 0x1177 (size before relaxing)
  4429. .debug_str 0x00000000000089e6 0xde ./HAL/RTC.o
  4430. 0x850 (size before relaxing)
  4431. .debug_str 0x0000000000008ac4 0x187 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4432. 0x6d2 (size before relaxing)
  4433. .debug_str 0x0000000000008c4b 0x44 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4434. 0x116 (size before relaxing)
  4435. .debug_str 0x0000000000008c8f 0x73 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4436. 0x5d9 (size before relaxing)
  4437. .comment 0x0000000000000000 0x66
  4438. .comment 0x0000000000000000 0x33 ./components/ws2812b/user_ws2812b.o
  4439. 0x34 (size before relaxing)
  4440. .comment 0x0000000000000033 0x34 ./components/ws2812b/ws2812b_spi.o
  4441. .comment 0x0000000000000033 0x34 ./components/tools/AES_PKCS7.o
  4442. .comment 0x0000000000000033 0x34 ./components/tools/_string.o
  4443. .comment 0x0000000000000033 0x34 ./components/tools/tools.o
  4444. .comment 0x0000000000000033 0x34 ./components/nfc/fm175xx.o
  4445. .comment 0x0000000000000033 0x34 ./components/nfc/lpcd.o
  4446. .comment 0x0000000000000033 0x34 ./components/nfc/type_a.o
  4447. .comment 0x0000000000000033 0x34 ./components/nfc/user_nfc.o
  4448. .comment 0x0000000000000033 0x34 ./components/nfc/user_spi.o
  4449. .comment 0x0000000000000033 0x34 ./components/led/user_led.o
  4450. .comment 0x0000000000000033 0x34 ./components/electlock/elect_sw.o
  4451. .comment 0x0000000000000033 0x34 ./components/electlock/user_elect.o
  4452. .comment 0x0000000000000033 0x34 ./components/config/user_config.o
  4453. .comment 0x0000000000000033 0x34 ./components/charge/user_adc.o
  4454. .comment 0x0000000000000033 0x34 ./components/charge/user_charge.o
  4455. .comment 0x0000000000000033 0x34 ./components/charge/user_fan.o
  4456. .comment 0x0000000000000033 0x34 ./components/can/dip_sw.o
  4457. .comment 0x0000000000000033 0x34 ./components/can/user_can.o
  4458. .comment 0x0000000000000033 0x34 ./components/action/ble_action.o
  4459. .comment 0x0000000000000033 0x34 ./components/action/user_sever.o
  4460. .comment 0x0000000000000033 0x34 ./User/app_main.o
  4461. .comment 0x0000000000000033 0x34 ./User/ch32v20x_it.o
  4462. .comment 0x0000000000000033 0x34 ./User/peripheral.o
  4463. .comment 0x0000000000000033 0x34 ./User/system_ch32v20x.o
  4464. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_adc.o
  4465. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
  4466. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4467. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
  4468. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
  4469. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
  4470. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4471. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4472. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
  4473. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4474. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4475. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4476. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
  4477. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
  4478. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
  4479. .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
  4480. .comment 0x0000000000000033 0x34 ./Profile/devinfoservice.o
  4481. .comment 0x0000000000000033 0x34 ./Profile/gattprofile.o
  4482. .comment 0x0000000000000033 0x34 ./HAL/MCU.o
  4483. .comment 0x0000000000000033 0x34 ./HAL/RTC.o
  4484. .comment 0x0000000000000033 0x33 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4485. 0x34 (size before relaxing)
  4486. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4487. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4488. .debug_frame 0x0000000000000000 0x5938
  4489. .debug_frame 0x0000000000000000 0xd0 ./components/ws2812b/user_ws2812b.o
  4490. .debug_frame 0x00000000000000d0 0x78 ./components/ws2812b/ws2812b_spi.o
  4491. .debug_frame 0x0000000000000148 0x15c ./components/tools/AES_PKCS7.o
  4492. .debug_frame 0x00000000000002a4 0x278 ./components/tools/_string.o
  4493. .debug_frame 0x000000000000051c 0x6c ./components/tools/tools.o
  4494. .debug_frame 0x0000000000000588 0x2cc ./components/nfc/fm175xx.o
  4495. .debug_frame 0x0000000000000854 0x2f0 ./components/nfc/lpcd.o
  4496. .debug_frame 0x0000000000000b44 0x1b8 ./components/nfc/type_a.o
  4497. .debug_frame 0x0000000000000cfc 0x1a8 ./components/nfc/user_nfc.o
  4498. .debug_frame 0x0000000000000ea4 0x60 ./components/nfc/user_spi.o
  4499. .debug_frame 0x0000000000000f04 0x104 ./components/led/user_led.o
  4500. .debug_frame 0x0000000000001008 0xfc ./components/electlock/elect_sw.o
  4501. .debug_frame 0x0000000000001104 0x120 ./components/electlock/user_elect.o
  4502. .debug_frame 0x0000000000001224 0xb8 ./components/config/user_config.o
  4503. .debug_frame 0x00000000000012dc 0xe4 ./components/charge/user_adc.o
  4504. .debug_frame 0x00000000000013c0 0x88 ./components/charge/user_charge.o
  4505. .debug_frame 0x0000000000001448 0x78 ./components/charge/user_fan.o
  4506. .debug_frame 0x00000000000014c0 0x114 ./components/can/dip_sw.o
  4507. .debug_frame 0x00000000000015d4 0x11c ./components/can/user_can.o
  4508. .debug_frame 0x00000000000016f0 0x1c0 ./components/action/ble_action.o
  4509. .debug_frame 0x00000000000018b0 0x1a8 ./components/action/user_sever.o
  4510. .debug_frame 0x0000000000001a58 0x40 ./User/app_main.o
  4511. .debug_frame 0x0000000000001a98 0x7c ./User/ch32v20x_it.o
  4512. .debug_frame 0x0000000000001b14 0x160 ./User/peripheral.o
  4513. .debug_frame 0x0000000000001c74 0x3c ./User/system_ch32v20x.o
  4514. .debug_frame 0x0000000000001cb0 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
  4515. .debug_frame 0x0000000000001f6c 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
  4516. .debug_frame 0x000000000000210c 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4517. .debug_frame 0x000000000000217c 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
  4518. .debug_frame 0x000000000000223c 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
  4519. .debug_frame 0x00000000000022cc 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
  4520. .debug_frame 0x000000000000261c 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4521. .debug_frame 0x0000000000002794 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4522. .debug_frame 0x0000000000002804 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
  4523. .debug_frame 0x0000000000002834 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
  4524. .debug_frame 0x0000000000002930 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4525. .debug_frame 0x0000000000002b80 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4526. .debug_frame 0x0000000000002ce8 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
  4527. .debug_frame 0x0000000000002ea0 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
  4528. .debug_frame 0x0000000000003508 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4529. .debug_frame 0x00000000000036f8 0xc0 ./SRC/Debug/debug.o
  4530. .debug_frame 0x00000000000037b8 0x80 ./Profile/devinfoservice.o
  4531. .debug_frame 0x0000000000003838 0x154 ./Profile/gattprofile.o
  4532. .debug_frame 0x000000000000398c 0x11c ./HAL/MCU.o
  4533. .debug_frame 0x0000000000003aa8 0x60 ./HAL/RTC.o
  4534. .debug_frame 0x0000000000003b08 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  4535. .debug_frame 0x0000000000003b4c 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  4536. .debug_frame 0x0000000000003bac 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
  4537. .debug_frame 0x0000000000003bcc 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  4538. .debug_frame 0x0000000000003bec 0x12c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4539. .debug_frame 0x0000000000003d18 0x30 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4540. .debug_frame 0x0000000000003d48 0x4c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4541. .debug_frame 0x0000000000003d94 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
  4542. .debug_frame 0x0000000000003dd8 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  4543. .debug_frame 0x0000000000003e28 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  4544. .debug_frame 0x0000000000003e48 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
  4545. .debug_frame 0x0000000000003e68 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  4546. .debug_frame 0x0000000000003ebc 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
  4547. .debug_frame 0x0000000000003f00 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
  4548. .debug_frame 0x0000000000003f20 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  4549. .debug_frame 0x0000000000003f58 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  4550. .debug_frame 0x0000000000003f98 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  4551. .debug_frame 0x0000000000003fe8 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  4552. .debug_frame 0x0000000000004038 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  4553. .debug_frame 0x0000000000004074 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
  4554. .debug_frame 0x0000000000004094 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
  4555. .debug_frame 0x00000000000040cc 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  4556. .debug_frame 0x0000000000004104 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  4557. .debug_frame 0x0000000000004124 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  4558. .debug_frame 0x0000000000004144 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
  4559. .debug_frame 0x0000000000004164 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
  4560. .debug_frame 0x0000000000004194 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  4561. .debug_frame 0x00000000000041b4 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  4562. .debug_frame 0x00000000000041f4 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  4563. .debug_frame 0x0000000000004234 0xbc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
  4564. .debug_frame 0x00000000000042f0 0x8c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  4565. .debug_frame 0x000000000000437c 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
  4566. .debug_frame 0x00000000000043dc 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  4567. .debug_frame 0x0000000000004430 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  4568. .debug_frame 0x0000000000004484 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  4569. .debug_frame 0x00000000000044b4 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  4570. .debug_frame 0x00000000000044d4 0x48 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  4571. .debug_frame 0x000000000000451c 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  4572. .debug_frame 0x0000000000004570 0xa4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  4573. .debug_frame 0x0000000000004614 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  4574. .debug_frame 0x0000000000004634 0x154 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  4575. .debug_frame 0x0000000000004788 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
  4576. .debug_frame 0x00000000000047f8 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  4577. .debug_frame 0x0000000000004848 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
  4578. .debug_frame 0x0000000000004878 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
  4579. .debug_frame 0x00000000000048b4 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
  4580. .debug_frame 0x00000000000048e4 0x98 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
  4581. .debug_frame 0x000000000000497c 0x7c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
  4582. .debug_frame 0x00000000000049f8 0x148 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  4583. .debug_frame 0x0000000000004b40 0x88 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  4584. .debug_frame 0x0000000000004bc8 0x84 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  4585. .debug_frame 0x0000000000004c4c 0x80 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  4586. .debug_frame 0x0000000000004ccc 0x78 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  4587. .debug_frame 0x0000000000004d44 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
  4588. .debug_frame 0x0000000000004d84 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
  4589. .debug_frame 0x0000000000004db4 0x64 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  4590. .debug_frame 0x0000000000004e18 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
  4591. .debug_frame 0x0000000000004e50 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  4592. .debug_frame 0x0000000000004e70 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  4593. .debug_frame 0x0000000000004ea0 0x2e0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  4594. .debug_frame 0x0000000000005180 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  4595. .debug_frame 0x00000000000051b0 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  4596. .debug_frame 0x00000000000051f0 0xe0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  4597. .debug_frame 0x00000000000052d0 0xb4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  4598. .debug_frame 0x0000000000005384 0xd0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  4599. .debug_frame 0x0000000000005454 0xa0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
  4600. .debug_frame 0x00000000000054f4 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
  4601. .debug_frame 0x0000000000005524 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  4602. .debug_frame 0x0000000000005594 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
  4603. .debug_frame 0x00000000000055b4 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
  4604. .debug_frame 0x00000000000055d4 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
  4605. .debug_frame 0x0000000000005644 0x84 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
  4606. .debug_frame 0x00000000000056c8 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
  4607. .debug_frame 0x00000000000056f8 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
  4608. .debug_frame 0x0000000000005728 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
  4609. .debug_frame 0x0000000000005758 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
  4610. .debug_frame 0x0000000000005778 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
  4611. .debug_frame 0x0000000000005798 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
  4612. .debug_frame 0x00000000000057b8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
  4613. .debug_frame 0x00000000000057d8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  4614. .debug_frame 0x00000000000057f8 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  4615. .debug_frame 0x0000000000005830 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
  4616. .debug_frame 0x000000000000586c 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
  4617. .debug_frame 0x0000000000005898 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  4618. .debug_frame 0x00000000000058b8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  4619. .debug_frame 0x00000000000058d8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  4620. .debug_frame 0x00000000000058f8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  4621. .debug_frame 0x0000000000005918 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  4622. .stab 0x0000000000000000 0x84
  4623. .stab 0x0000000000000000 0x24 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  4624. .stab 0x0000000000000024 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  4625. 0x24 (size before relaxing)
  4626. .stab 0x000000000000003c 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  4627. 0x24 (size before relaxing)
  4628. .stab 0x0000000000000054 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  4629. 0x24 (size before relaxing)
  4630. .stab 0x000000000000006c 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  4631. 0x24 (size before relaxing)
  4632. .stabstr 0x0000000000000000 0x117
  4633. .stabstr 0x0000000000000000 0x117 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)