mainboard.map 408 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533
  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(fixunssfsi.o)
  47. ./components/charge/user_adc.o (__fixunssfsi)
  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. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.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/tools/AES_PKCS7.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/nfc/user_nfc.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/tools/AES_PKCS7.o
  207. .data 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  208. .bss 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  209. .text 0x0000000000000000 0x0 ./components/tools/_string.o
  210. .data 0x0000000000000000 0x0 ./components/tools/_string.o
  211. .bss 0x0000000000000000 0x0 ./components/tools/_string.o
  212. .text.check_number_start
  213. 0x0000000000000000 0x24 ./components/tools/_string.o
  214. .text._strcpynum
  215. 0x0000000000000000 0x1a ./components/tools/_string.o
  216. .text._strcopy
  217. 0x0000000000000000 0x1e ./components/tools/_string.o
  218. .text._strcat 0x0000000000000000 0x4e ./components/tools/_string.o
  219. .text._strcatint
  220. 0x0000000000000000 0x64 ./components/tools/_string.o
  221. .text._strfindnum
  222. 0x0000000000000000 0x22 ./components/tools/_string.o
  223. .text._strfind
  224. 0x0000000000000000 0x1a ./components/tools/_string.o
  225. .text._strfindchar
  226. 0x0000000000000000 0x4c ./components/tools/_string.o
  227. .text._strcount
  228. 0x0000000000000000 0x24 ./components/tools/_string.o
  229. .text._strCompare
  230. 0x0000000000000000 0x22 ./components/tools/_string.o
  231. .text._get_Hex
  232. 0x0000000000000000 0x40 ./components/tools/_string.o
  233. .text._get_HexChar
  234. 0x0000000000000000 0x22 ./components/tools/_string.o
  235. .text._HexToStr
  236. 0x0000000000000000 0x6e ./components/tools/_string.o
  237. .text.getIndexOfSigns
  238. 0x0000000000000000 0x42 ./components/tools/_string.o
  239. .text._get_HexToDec
  240. 0x0000000000000000 0x38 ./components/tools/_string.o
  241. .text.check_no_number
  242. 0x0000000000000000 0x1e ./components/tools/_string.o
  243. .text.check_is_number
  244. 0x0000000000000000 0x1e ./components/tools/_string.o
  245. .text._my_atof
  246. 0x0000000000000000 0x144 ./components/tools/_string.o
  247. .text._my_atoi
  248. 0x0000000000000000 0x76 ./components/tools/_string.o
  249. .text._my_atou32
  250. 0x0000000000000000 0x58 ./components/tools/_string.o
  251. .rodata.CSWTCH.34
  252. 0x0000000000000000 0xf ./components/tools/_string.o
  253. .rodata._my_atof.cst4
  254. 0x0000000000000000 0x4 ./components/tools/_string.o
  255. .rodata._strcatint.str1.4
  256. 0x0000000000000000 0x3 ./components/tools/_string.o
  257. .text 0x0000000000000000 0x0 ./components/tools/my_math.o
  258. .data 0x0000000000000000 0x0 ./components/tools/my_math.o
  259. .bss 0x0000000000000000 0x0 ./components/tools/my_math.o
  260. .text.sqrt_u16
  261. 0x0000000000000000 0x2c ./components/tools/my_math.o
  262. .text.sqrt_u32
  263. 0x0000000000000000 0xa6 ./components/tools/my_math.o
  264. .text.No_MaxMin_Average_short
  265. 0x0000000000000000 0x60 ./components/tools/my_math.o
  266. .text.Average_short
  267. 0x0000000000000000 0x2e ./components/tools/my_math.o
  268. .text.Average_float
  269. 0x0000000000000000 0x54 ./components/tools/my_math.o
  270. .text.get_MaxMinValue
  271. 0x0000000000000000 0x40 ./components/tools/my_math.o
  272. .text.get_MaxFloatArray
  273. 0x0000000000000000 0x56 ./components/tools/my_math.o
  274. .text.get_float_Variance_Sum
  275. 0x0000000000000000 0x96 ./components/tools/my_math.o
  276. .text.get_float_abs
  277. 0x0000000000000000 0x32 ./components/tools/my_math.o
  278. .text.simpson 0x0000000000000000 0xd6 ./components/tools/my_math.o
  279. .text.Integral
  280. 0x0000000000000000 0xbe ./components/tools/my_math.o
  281. .text.get_int_Variance_Sum
  282. 0x0000000000000000 0x3a ./components/tools/my_math.o
  283. .text.get_ushort_Variance_Sum
  284. 0x0000000000000000 0x3a ./components/tools/my_math.o
  285. .text.Base62_convertToDec
  286. 0x0000000000000000 0x42 ./components/tools/my_math.o
  287. .text.Base62_convertFromDec
  288. 0x0000000000000000 0x30 ./components/tools/my_math.o
  289. .rodata.Average_float.cst4
  290. 0x0000000000000000 0x4 ./components/tools/my_math.o
  291. .rodata.simpson.cst8
  292. 0x0000000000000000 0x18 ./components/tools/my_math.o
  293. .debug_info 0x0000000000000000 0x10ac ./components/tools/my_math.o
  294. .debug_abbrev 0x0000000000000000 0x324 ./components/tools/my_math.o
  295. .debug_loc 0x0000000000000000 0xda0 ./components/tools/my_math.o
  296. .debug_aranges
  297. 0x0000000000000000 0x90 ./components/tools/my_math.o
  298. .debug_ranges 0x0000000000000000 0x1b8 ./components/tools/my_math.o
  299. .debug_line 0x0000000000000000 0x11d1 ./components/tools/my_math.o
  300. .debug_str 0x0000000000000000 0x7c8 ./components/tools/my_math.o
  301. .comment 0x0000000000000000 0x34 ./components/tools/my_math.o
  302. .debug_frame 0x0000000000000000 0x1d8 ./components/tools/my_math.o
  303. .text 0x0000000000000000 0x0 ./components/tools/tools.o
  304. .data 0x0000000000000000 0x0 ./components/tools/tools.o
  305. .bss 0x0000000000000000 0x0 ./components/tools/tools.o
  306. .text.ntc_data
  307. 0x0000000000000000 0x100 ./components/tools/tools.o
  308. .text.xor_data
  309. 0x0000000000000000 0x18 ./components/tools/tools.o
  310. .rodata.ntc_data.cst4
  311. 0x0000000000000000 0x4 ./components/tools/tools.o
  312. .rodata.ntc_data.cst8
  313. 0x0000000000000000 0x38 ./components/tools/tools.o
  314. .text 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  315. .data 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  316. .bss 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  317. .text.GetCRC16
  318. 0x0000000000000000 0x44 ./components/tools/user_crc16.o
  319. .data.auchCRCHi
  320. 0x0000000000000000 0x100 ./components/tools/user_crc16.o
  321. .data.auchCRCLo
  322. 0x0000000000000000 0x100 ./components/tools/user_crc16.o
  323. .debug_info 0x0000000000000000 0xa90 ./components/tools/user_crc16.o
  324. .debug_abbrev 0x0000000000000000 0x21b ./components/tools/user_crc16.o
  325. .debug_loc 0x0000000000000000 0xbb ./components/tools/user_crc16.o
  326. .debug_aranges
  327. 0x0000000000000000 0x20 ./components/tools/user_crc16.o
  328. .debug_ranges 0x0000000000000000 0x10 ./components/tools/user_crc16.o
  329. .debug_line 0x0000000000000000 0x4f5 ./components/tools/user_crc16.o
  330. .debug_str 0x0000000000000000 0x682 ./components/tools/user_crc16.o
  331. .comment 0x0000000000000000 0x34 ./components/tools/user_crc16.o
  332. .debug_frame 0x0000000000000000 0x20 ./components/tools/user_crc16.o
  333. .text 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  334. .data 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  335. .bss 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  336. .text.GetReg 0x0000000000000000 0x18 ./components/nfc/fm175xx.o
  337. .text.Read_Reg_All
  338. 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
  339. .text.Read_Ext_Reg
  340. 0x0000000000000000 0x20 ./components/nfc/fm175xx.o
  341. .text.ModifyReg_Ext
  342. 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
  343. .text.Get_FIFODataLenth
  344. 0x0000000000000000 0x58 ./components/nfc/fm175xx.o
  345. .text.FM175X_SoftPowerdown
  346. 0x0000000000000000 0x34 ./components/nfc/fm175xx.o
  347. .text.FM175XX_Initial
  348. 0x0000000000000000 0xe ./components/nfc/fm175xx.o
  349. .text 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  350. .data 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  351. .bss 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  352. .text.Lpcd_Reset_Status
  353. 0x0000000000000000 0x26 ./components/nfc/lpcd.o
  354. .text.Lpcd_Set_Timer
  355. 0x0000000000000000 0x68 ./components/nfc/lpcd.o
  356. .text.Lpcd_Set_Gain
  357. 0x0000000000000000 0x1a ./components/nfc/lpcd.o
  358. .text.Lpcd_Set_Threshold
  359. 0x0000000000000000 0x58 ./components/nfc/lpcd.o
  360. .text.Lpcd_Set_Driver
  361. 0x0000000000000000 0x94 ./components/nfc/lpcd.o
  362. .text.Lpcd_Set_Reference
  363. 0x0000000000000000 0x38 ./components/nfc/lpcd.o
  364. .text.Lpcd_WaitFor_Irq
  365. 0x0000000000000000 0x46 ./components/nfc/lpcd.o
  366. .text.Lpcd_Get_Value
  367. 0x0000000000000000 0x34 ./components/nfc/lpcd.o
  368. .text.Lpcd_Get_Calibration_Value
  369. 0x0000000000000000 0x72 ./components/nfc/lpcd.o
  370. .text.Lpcd_Calibrate_Reference
  371. 0x0000000000000000 0x94 ./components/nfc/lpcd.o
  372. .text.Lpcd_Calibrate_Driver
  373. 0x0000000000000000 0x152 ./components/nfc/lpcd.o
  374. .text.Lpcd_Calibration_Restore
  375. 0x0000000000000000 0x16 ./components/nfc/lpcd.o
  376. .text.Lpcd_Calibration_Backup
  377. 0x0000000000000000 0x16 ./components/nfc/lpcd.o
  378. .text.Lpcd_Get_IRQ
  379. 0x0000000000000000 0x3e ./components/nfc/lpcd.o
  380. .text.Lpcd_Set_IE
  381. 0x0000000000000000 0x22 ./components/nfc/lpcd.o
  382. .text.Lpcd_Set_Mode
  383. 0x0000000000000000 0x110 ./components/nfc/lpcd.o
  384. .text.Lpcd_Set_Aux
  385. 0x0000000000000000 0xd0 ./components/nfc/lpcd.o
  386. .text.Lpcd_Calibration_Event
  387. 0x0000000000000000 0x4c ./components/nfc/lpcd.o
  388. .text.Lpcd_IRQ_Event
  389. 0x0000000000000000 0x4e ./components/nfc/lpcd.o
  390. .bss.Lpcd 0x0000000000000000 0x14 ./components/nfc/lpcd.o
  391. .rodata.LPCD_GAIN
  392. 0x0000000000000000 0xb ./components/nfc/lpcd.o
  393. .sdata2.LPCD_N_DRIVER
  394. 0x0000000000000000 0x7 ./components/nfc/lpcd.o
  395. .sdata2.LPCD_P_DRIVER
  396. 0x0000000000000000 0x7 ./components/nfc/lpcd.o
  397. .text 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  398. .data 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  399. .bss 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  400. .text.Mifare_Auth
  401. 0x0000000000000000 0x94 ./components/nfc/mifare_card.o
  402. .text.Mifare_Blockread
  403. 0x0000000000000000 0x4e ./components/nfc/mifare_card.o
  404. .text.Mifare_Blockwrite
  405. 0x0000000000000000 0x80 ./components/nfc/mifare_card.o
  406. .text.Mifare_Blockset
  407. 0x0000000000000000 0x5a ./components/nfc/mifare_card.o
  408. .text.Mifare_Blockinc
  409. 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
  410. .text.Mifare_Blockdec
  411. 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
  412. .text.Mifare_Transfer
  413. 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
  414. .text.Mifare_Restore
  415. 0x0000000000000000 0x76 ./components/nfc/mifare_card.o
  416. .debug_info 0x0000000000000000 0x1111 ./components/nfc/mifare_card.o
  417. .debug_abbrev 0x0000000000000000 0x25d ./components/nfc/mifare_card.o
  418. .debug_loc 0x0000000000000000 0x30e ./components/nfc/mifare_card.o
  419. .debug_aranges
  420. 0x0000000000000000 0x58 ./components/nfc/mifare_card.o
  421. .debug_ranges 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
  422. .debug_line 0x0000000000000000 0xc17 ./components/nfc/mifare_card.o
  423. .debug_str 0x0000000000000000 0x73e ./components/nfc/mifare_card.o
  424. .comment 0x0000000000000000 0x34 ./components/nfc/mifare_card.o
  425. .debug_frame 0x0000000000000000 0x120 ./components/nfc/mifare_card.o
  426. .text 0x0000000000000000 0x0 ./components/nfc/type_a.o
  427. .data 0x0000000000000000 0x0 ./components/nfc/type_a.o
  428. .bss 0x0000000000000000 0x0 ./components/nfc/type_a.o
  429. .text.TypeA_Save_UID
  430. 0x0000000000000000 0x92 ./components/nfc/type_a.o
  431. .rodata.TypeA_Save_UID
  432. 0x0000000000000000 0x20 ./components/nfc/type_a.o
  433. .text.TypeA_WakeUp
  434. 0x0000000000000000 0x8c ./components/nfc/type_a.o
  435. .text 0x0000000000000000 0x0 ./components/nfc/type_b.o
  436. .data 0x0000000000000000 0x0 ./components/nfc/type_b.o
  437. .bss 0x0000000000000000 0x0 ./components/nfc/type_b.o
  438. .text.TypeB_Halt
  439. 0x0000000000000000 0x3e ./components/nfc/type_b.o
  440. .text.TypeB_WUP
  441. 0x0000000000000000 0x5a ./components/nfc/type_b.o
  442. .text.TypeB_Request
  443. 0x0000000000000000 0x56 ./components/nfc/type_b.o
  444. .text.TypeB_Select
  445. 0x0000000000000000 0x4e ./components/nfc/type_b.o
  446. .text.TypeB_GetUID
  447. 0x0000000000000000 0x38 ./components/nfc/type_b.o
  448. .debug_info 0x0000000000000000 0xe16 ./components/nfc/type_b.o
  449. .debug_abbrev 0x0000000000000000 0x274 ./components/nfc/type_b.o
  450. .debug_loc 0x0000000000000000 0x230 ./components/nfc/type_b.o
  451. .debug_aranges
  452. 0x0000000000000000 0x40 ./components/nfc/type_b.o
  453. .debug_ranges 0x0000000000000000 0x30 ./components/nfc/type_b.o
  454. .debug_line 0x0000000000000000 0x7a5 ./components/nfc/type_b.o
  455. .debug_str 0x0000000000000000 0x6ce ./components/nfc/type_b.o
  456. .comment 0x0000000000000000 0x34 ./components/nfc/type_b.o
  457. .debug_frame 0x0000000000000000 0xb4 ./components/nfc/type_b.o
  458. .text 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  459. .data 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  460. .bss 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  461. .text.NFC_HardReset
  462. 0x0000000000000000 0x6c ./components/nfc/user_nfc.o
  463. .text.NFC_HardPowerdown
  464. 0x0000000000000000 0x2c ./components/nfc/user_nfc.o
  465. .text.SetBitMask
  466. 0x0000000000000000 0x2a ./components/nfc/user_nfc.o
  467. .text.ClearBitMask
  468. 0x0000000000000000 0x2e ./components/nfc/user_nfc.o
  469. .text 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  470. .data 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  471. .bss 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  472. .text 0x0000000000000000 0x0 ./components/led/user_led.o
  473. .data 0x0000000000000000 0x0 ./components/led/user_led.o
  474. .bss 0x0000000000000000 0x0 ./components/led/user_led.o
  475. .text 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  476. .data 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  477. .bss 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  478. .text 0x0000000000000000 0x0 ./components/config/user_config.o
  479. .data 0x0000000000000000 0x0 ./components/config/user_config.o
  480. .bss 0x0000000000000000 0x0 ./components/config/user_config.o
  481. .text 0x0000000000000000 0x0 ./components/charge/user_adc.o
  482. .data 0x0000000000000000 0x0 ./components/charge/user_adc.o
  483. .bss 0x0000000000000000 0x0 ./components/charge/user_adc.o
  484. .text.set_adc_upload_func
  485. 0x0000000000000000 0xa ./components/charge/user_adc.o
  486. .sdata2.Bx 0x0000000000000000 0x4 ./components/charge/user_adc.o
  487. .sdata2.Ka 0x0000000000000000 0x4 ./components/charge/user_adc.o
  488. .sdata2.Rp 0x0000000000000000 0x4 ./components/charge/user_adc.o
  489. .sdata2.T2 0x0000000000000000 0x4 ./components/charge/user_adc.o
  490. .text 0x0000000000000000 0x0 ./components/charge/user_charge.o
  491. .data 0x0000000000000000 0x0 ./components/charge/user_charge.o
  492. .bss 0x0000000000000000 0x0 ./components/charge/user_charge.o
  493. .text 0x0000000000000000 0x0 ./components/can/dip_sw.o
  494. .data 0x0000000000000000 0x0 ./components/can/dip_sw.o
  495. .bss 0x0000000000000000 0x0 ./components/can/dip_sw.o
  496. .text 0x0000000000000000 0x0 ./components/can/user_can.o
  497. .data 0x0000000000000000 0x0 ./components/can/user_can.o
  498. .bss 0x0000000000000000 0x0 ./components/can/user_can.o
  499. .text 0x0000000000000000 0x0 ./components/action/ble_action.o
  500. .data 0x0000000000000000 0x0 ./components/action/ble_action.o
  501. .bss 0x0000000000000000 0x0 ./components/action/ble_action.o
  502. .text.get_unixTime
  503. 0x0000000000000000 0xa ./components/action/ble_action.o
  504. .text.set_unixTime
  505. 0x0000000000000000 0xa ./components/action/ble_action.o
  506. .text 0x0000000000000000 0x0 ./components/action/user_sever.o
  507. .data 0x0000000000000000 0x0 ./components/action/user_sever.o
  508. .bss 0x0000000000000000 0x0 ./components/action/user_sever.o
  509. .text 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  510. .data 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  511. .bss 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  512. .text.app_drv_fifo_length
  513. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  514. .text.app_drv_fifo_init
  515. 0x0000000000000000 0x22 ./User/app_drv_fifo/app_drv_fifo.o
  516. .text.app_drv_fifo_push
  517. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  518. .text.app_drv_fifo_pop
  519. 0x0000000000000000 0x16 ./User/app_drv_fifo/app_drv_fifo.o
  520. .text.app_drv_fifo_flush
  521. 0x0000000000000000 0x6 ./User/app_drv_fifo/app_drv_fifo.o
  522. .text.app_drv_fifo_is_empty
  523. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  524. .text.app_drv_fifo_is_full
  525. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  526. .text.app_drv_fifo_write
  527. 0x0000000000000000 0x62 ./User/app_drv_fifo/app_drv_fifo.o
  528. .text.app_drv_fifo_write_from_same_addr
  529. 0x0000000000000000 0x52 ./User/app_drv_fifo/app_drv_fifo.o
  530. .text.app_drv_fifo_read
  531. 0x0000000000000000 0x54 ./User/app_drv_fifo/app_drv_fifo.o
  532. .text.app_drv_fifo_read_to_same_addr
  533. 0x0000000000000000 0x3e ./User/app_drv_fifo/app_drv_fifo.o
  534. .debug_info 0x0000000000000000 0x5db ./User/app_drv_fifo/app_drv_fifo.o
  535. .debug_abbrev 0x0000000000000000 0x1a8 ./User/app_drv_fifo/app_drv_fifo.o
  536. .debug_loc 0x0000000000000000 0x3a4 ./User/app_drv_fifo/app_drv_fifo.o
  537. .debug_aranges
  538. 0x0000000000000000 0x70 ./User/app_drv_fifo/app_drv_fifo.o
  539. .debug_ranges 0x0000000000000000 0xa8 ./User/app_drv_fifo/app_drv_fifo.o
  540. .debug_line 0x0000000000000000 0x8ac ./User/app_drv_fifo/app_drv_fifo.o
  541. .debug_str 0x0000000000000000 0x476 ./User/app_drv_fifo/app_drv_fifo.o
  542. .comment 0x0000000000000000 0x34 ./User/app_drv_fifo/app_drv_fifo.o
  543. .debug_frame 0x0000000000000000 0xc0 ./User/app_drv_fifo/app_drv_fifo.o
  544. .text 0x0000000000000000 0x0 ./User/app_main.o
  545. .data 0x0000000000000000 0x0 ./User/app_main.o
  546. .bss 0x0000000000000000 0x0 ./User/app_main.o
  547. .text 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  548. .data 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  549. .bss 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  550. .text 0x0000000000000000 0x0 ./User/peripheral.o
  551. .data 0x0000000000000000 0x0 ./User/peripheral.o
  552. .bss 0x0000000000000000 0x0 ./User/peripheral.o
  553. .text 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  554. .data 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  555. .bss 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  556. .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  557. .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  558. .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  559. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  560. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  561. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  562. .text.ADC_StructInit
  563. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  564. .text.ADC_ITConfig
  565. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
  566. .text.ADC_GetSoftwareStartConvStatus
  567. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  568. .text.ADC_DiscModeChannelCountConfig
  569. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  570. .text.ADC_DiscModeCmd
  571. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  572. .text.ADC_ExternalTrigConvCmd
  573. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  574. .text.ADC_GetDualModeConversionValue
  575. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  576. .text.ADC_AutoInjectedConvCmd
  577. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  578. .text.ADC_InjectedDiscModeCmd
  579. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  580. .text.ADC_ExternalTrigInjectedConvConfig
  581. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
  582. .text.ADC_ExternalTrigInjectedConvCmd
  583. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  584. .text.ADC_SoftwareStartInjectedConvCmd
  585. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  586. .text.ADC_GetSoftwareStartInjectedConvCmdStatus
  587. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  588. .text.ADC_InjectedChannelConfig
  589. 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
  590. .text.ADC_InjectedSequencerLengthConfig
  591. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  592. .text.ADC_SetInjectedOffset
  593. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  594. .text.ADC_GetInjectedConversionValue
  595. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  596. .text.ADC_AnalogWatchdogCmd
  597. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  598. .text.ADC_AnalogWatchdogThresholdsConfig
  599. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
  600. .text.ADC_AnalogWatchdogSingleChannelConfig
  601. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  602. .text.ADC_ClearFlag
  603. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  604. .text.ADC_GetITStatus
  605. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  606. .text.ADC_ClearITPendingBit
  607. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  608. .text.TempSensor_Volt_To_Temper
  609. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
  610. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  611. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  612. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  613. .text.BKP_DeInit
  614. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  615. .text.BKP_TamperPinLevelConfig
  616. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  617. .text.BKP_TamperPinCmd
  618. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  619. .text.BKP_ITConfig
  620. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  621. .text.BKP_RTCOutputConfig
  622. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  623. .text.BKP_SetRTCCalibrationValue
  624. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  625. .text.BKP_WriteBackupRegister
  626. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  627. .text.BKP_ReadBackupRegister
  628. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  629. .text.BKP_GetFlagStatus
  630. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  631. .text.BKP_ClearFlag
  632. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  633. .text.BKP_GetITStatus
  634. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  635. .text.BKP_ClearITPendingBit
  636. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  637. .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
  638. .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
  639. .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
  640. .debug_aranges
  641. 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
  642. .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
  643. .debug_line 0x0000000000000000 0x7e3 ./SRC/Peripheral/src/ch32v20x_bkp.o
  644. .debug_str 0x0000000000000000 0xb33 ./SRC/Peripheral/src/ch32v20x_bkp.o
  645. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
  646. .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
  647. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  648. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  649. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  650. .text.CAN_DeInit
  651. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
  652. .text.CAN_StructInit
  653. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
  654. .text.CAN_SlaveStartBank
  655. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
  656. .text.CAN_DBGFreeze
  657. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
  658. .text.CAN_TTComModeCmd
  659. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
  660. .text.CAN_CancelTransmit
  661. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
  662. .text.CAN_FIFORelease
  663. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  664. .text.CAN_MessagePending
  665. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  666. .text.CAN_OperatingModeRequest
  667. 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
  668. .text.CAN_Sleep
  669. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  670. .text.CAN_WakeUp
  671. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
  672. .text.CAN_GetLastErrorCode
  673. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
  674. .text.CAN_GetReceiveErrorCounter
  675. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
  676. .text.CAN_GetLSBTransmitErrorCounter
  677. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
  678. .text.CAN_GetFlagStatus
  679. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
  680. .text.CAN_ClearFlag
  681. 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
  682. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  683. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  684. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  685. .text.CRC_ResetDR
  686. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  687. .text.CRC_CalcCRC
  688. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  689. .text.CRC_CalcBlockCRC
  690. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
  691. .text.CRC_GetCRC
  692. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  693. .text.CRC_SetIDRegister
  694. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  695. .text.CRC_GetIDRegister
  696. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  697. .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
  698. .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
  699. .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
  700. .debug_aranges
  701. 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
  702. .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
  703. .debug_line 0x0000000000000000 0x4db ./SRC/Peripheral/src/ch32v20x_crc.o
  704. .debug_str 0x0000000000000000 0x709 ./SRC/Peripheral/src/ch32v20x_crc.o
  705. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
  706. .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
  707. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  708. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  709. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  710. .text.DBGMCU_GetREVID
  711. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  712. .text.DBGMCU_GetDEVID
  713. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  714. .text.__get_DEBUG_CR
  715. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  716. .text.__set_DEBUG_CR
  717. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  718. .text.DBGMCU_Config
  719. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  720. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  721. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  722. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  723. .text.DMA_StructInit
  724. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
  725. .text.DMA_GetCurrDataCounter
  726. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  727. .text.DMA_ClearFlag
  728. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  729. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  730. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  731. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  732. .text.EXTI_DeInit
  733. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
  734. .text.EXTI_Init
  735. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
  736. .text.EXTI_StructInit
  737. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  738. .text.EXTI_GenerateSWInterrupt
  739. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
  740. .text.EXTI_GetFlagStatus
  741. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  742. .text.EXTI_ClearFlag
  743. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  744. .text.EXTI_GetITStatus
  745. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
  746. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  747. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  748. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  749. .text.ROM_ERASE
  750. 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
  751. .text.FLASH_Unlock
  752. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
  753. .text.FLASH_UnlockBank1
  754. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  755. .text.FLASH_Lock
  756. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  757. .text.FLASH_LockBank1
  758. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  759. .text.FLASH_GetUserOptionByte
  760. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
  761. .text.FLASH_GetWriteProtectionOptionByte
  762. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  763. .text.FLASH_GetReadOutProtectionStatus
  764. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
  765. .text.FLASH_ITConfig
  766. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  767. .text.FLASH_GetFlagStatus
  768. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  769. .text.FLASH_ClearFlag
  770. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  771. .text.FLASH_GetStatus
  772. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  773. .text.FLASH_GetBank1Status
  774. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  775. .text.FLASH_WaitForLastOperation
  776. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_flash.o
  777. .text.FLASH_ErasePage
  778. 0x0000000000000000 0x4e ./SRC/Peripheral/src/ch32v20x_flash.o
  779. .text.FLASH_EraseAllPages
  780. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  781. .text.FLASH_EraseAllBank1Pages
  782. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  783. .text.FLASH_EraseOptionBytes
  784. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
  785. .text.FLASH_ProgramWord
  786. 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
  787. .text.FLASH_ProgramHalfWord
  788. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  789. .text.FLASH_ProgramOptionByteData
  790. 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
  791. .text.FLASH_EnableWriteProtection
  792. 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  793. .text.FLASH_ReadOutProtection
  794. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
  795. .text.FLASH_UserOptionByteConfig
  796. 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
  797. .text.FLASH_WaitForLastBank1Operation
  798. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  799. .text.FLASH_EraseBlock_32K_Fast
  800. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
  801. .text.FLASH_Access_Clock_Cfg
  802. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  803. .text.FLASH_Enhance_Mode
  804. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  805. .text.FLASH_ROM_ERASE
  806. 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
  807. .text.FLASH_ROM_WRITE
  808. 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
  809. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  810. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  811. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  812. .text.GPIO_DeInit
  813. 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  814. .text.GPIO_AFIODeInit
  815. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
  816. .text.GPIO_StructInit
  817. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
  818. .text.GPIO_ReadInputData
  819. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  820. .text.GPIO_ReadOutputDataBit
  821. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  822. .text.GPIO_ReadOutputData
  823. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  824. .text.GPIO_SetBits
  825. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  826. .text.GPIO_ResetBits
  827. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  828. .text.GPIO_Write
  829. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  830. .text.GPIO_PinLockConfig
  831. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
  832. .text.GPIO_EventOutputConfig
  833. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
  834. .text.GPIO_EventOutputCmd
  835. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
  836. .text.GPIO_EXTILineConfig
  837. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
  838. .text.GPIO_ETH_MediaInterfaceConfig
  839. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
  840. .text.GPIO_IPD_Unused
  841. 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
  842. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  843. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  844. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  845. .text.I2C_DeInit
  846. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
  847. .text.I2C_Init
  848. 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
  849. .text.I2C_StructInit
  850. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  851. .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  852. .text.I2C_DMACmd
  853. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
  854. .text.I2C_DMALastTransferCmd
  855. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  856. .text.I2C_GenerateSTART
  857. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  858. .text.I2C_GenerateSTOP
  859. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  860. .text.I2C_AcknowledgeConfig
  861. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  862. .text.I2C_OwnAddress2Config
  863. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  864. .text.I2C_DualAddressCmd
  865. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  866. .text.I2C_GeneralCallCmd
  867. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  868. .text.I2C_ITConfig
  869. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  870. .text.I2C_SendData
  871. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  872. .text.I2C_ReceiveData
  873. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  874. .text.I2C_Send7bitAddress
  875. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  876. .text.I2C_ReadRegister
  877. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  878. .text.I2C_SoftwareResetCmd
  879. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  880. .text.I2C_NACKPositionConfig
  881. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
  882. .text.I2C_SMBusAlertConfig
  883. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  884. .text.I2C_TransmitPEC
  885. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  886. .text.I2C_PECPositionConfig
  887. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  888. .text.I2C_CalculatePEC
  889. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  890. .text.I2C_GetPEC
  891. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
  892. .text.I2C_ARPCmd
  893. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  894. .text.I2C_StretchClockCmd
  895. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  896. .text.I2C_FastModeDutyCycleConfig
  897. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  898. .text.I2C_CheckEvent
  899. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  900. .text.I2C_GetLastEvent
  901. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
  902. .text.I2C_GetFlagStatus
  903. 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
  904. .text.I2C_ClearFlag
  905. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  906. .text.I2C_GetITStatus
  907. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
  908. .text.I2C_ClearITPendingBit
  909. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  910. .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
  911. .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
  912. .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  913. .debug_aranges
  914. 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
  915. .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
  916. .debug_line 0x0000000000000000 0x12c4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  917. .debug_str 0x0000000000000000 0xb6e ./SRC/Peripheral/src/ch32v20x_i2c.o
  918. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
  919. .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
  920. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  921. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  922. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  923. .text.IWDG_WriteAccessCmd
  924. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  925. .text.IWDG_SetPrescaler
  926. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  927. .text.IWDG_SetReload
  928. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  929. .text.IWDG_Enable
  930. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  931. .text.IWDG_GetFlagStatus
  932. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  933. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  934. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  935. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  936. .text.NVIC_PriorityGroupConfig
  937. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
  938. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  939. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  940. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  941. .text.OPA_DeInit
  942. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
  943. .text.OPA_Init
  944. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
  945. .text.OPA_StructInit
  946. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
  947. .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
  948. .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
  949. .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
  950. .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
  951. .debug_aranges
  952. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
  953. .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
  954. .debug_line 0x0000000000000000 0x59d ./SRC/Peripheral/src/ch32v20x_opa.o
  955. .debug_str 0x0000000000000000 0x749 ./SRC/Peripheral/src/ch32v20x_opa.o
  956. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
  957. .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
  958. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  959. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  960. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  961. .text.PWR_DeInit
  962. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
  963. .text.PWR_PVDCmd
  964. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
  965. .text.PWR_PVDLevelConfig
  966. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
  967. .text.PWR_WakeUpPinCmd
  968. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  969. .text.PWR_EnterSTOPMode
  970. 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
  971. .text.PWR_EnterSTANDBYMode
  972. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  973. .text.PWR_GetFlagStatus
  974. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  975. .text.PWR_ClearFlag
  976. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  977. .text.PWR_EnterSTANDBYMode_RAM
  978. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  979. .text.PWR_EnterSTANDBYMode_RAM_LV
  980. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  981. .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
  982. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  983. .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
  984. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  985. .text.PWR_EnterSTOPMode_RAM_LV
  986. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
  987. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  988. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  989. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  990. .text.RCC_DeInit
  991. 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
  992. .text.RCC_HSEConfig
  993. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  994. .text.RCC_AdjustHSICalibrationValue
  995. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  996. .text.RCC_HSICmd
  997. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  998. .text.RCC_PLLConfig
  999. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1000. .text.RCC_PLLCmd
  1001. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1002. .text.RCC_SYSCLKConfig
  1003. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  1004. .text.RCC_GetSYSCLKSource
  1005. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
  1006. .text.RCC_HCLKConfig
  1007. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1008. .text.RCC_PCLK1Config
  1009. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1010. .text.RCC_PCLK2Config
  1011. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1012. .text.RCC_ITConfig
  1013. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1014. .text.RCC_USBCLKConfig
  1015. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  1016. .text.RCC_LSICmd
  1017. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1018. .text.RCC_APB1PeriphResetCmd
  1019. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1020. .text.RCC_BackupResetCmd
  1021. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1022. .text.RCC_ClockSecuritySystemCmd
  1023. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1024. .text.RCC_MCOConfig
  1025. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1026. .text.RCC_WaitForHSEStartUp
  1027. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  1028. .text.RCC_ClearFlag
  1029. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1030. .text.RCC_GetITStatus
  1031. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  1032. .text.RCC_ClearITPendingBit
  1033. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1034. .text.RCC_ADCCLKADJcmd
  1035. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1036. .text.RCC_ETHDIVConfig
  1037. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  1038. .text.RCC_USB5PRE_JUDGE
  1039. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1040. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1041. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1042. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1043. .text.RTC_ITConfig
  1044. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
  1045. .text.RTC_SetAlarm
  1046. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1047. .text.RTC_GetDivider
  1048. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1049. .text.RTC_WaitForSynchro
  1050. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1051. .text.RTC_GetFlagStatus
  1052. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1053. .text.RTC_GetITStatus
  1054. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1055. .text.Calibration_LSI
  1056. 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1057. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1058. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1059. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1060. .text.SPI_I2S_DeInit
  1061. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
  1062. .text.I2S_Init
  1063. 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
  1064. .text.SPI_StructInit
  1065. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
  1066. .text.I2S_StructInit
  1067. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  1068. .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  1069. .text.SPI_I2S_ITConfig
  1070. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
  1071. .text.SPI_I2S_DMACmd
  1072. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  1073. .text.SPI_NSSInternalSoftwareConfig
  1074. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
  1075. .text.SPI_SSOutputCmd
  1076. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
  1077. .text.SPI_DataSizeConfig
  1078. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  1079. .text.SPI_TransmitCRC
  1080. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  1081. .text.SPI_CalculateCRC
  1082. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
  1083. .text.SPI_GetCRC
  1084. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  1085. .text.SPI_GetCRCPolynomial
  1086. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  1087. .text.SPI_BiDirectionalLineConfig
  1088. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  1089. .text.SPI_I2S_ClearFlag
  1090. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
  1091. .text.SPI_I2S_GetITStatus
  1092. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
  1093. .text.SPI_I2S_ClearITPendingBit
  1094. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  1095. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1096. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1097. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1098. .text.TI1_Config
  1099. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  1100. .text.TI2_Config
  1101. 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
  1102. .text.TIM_DeInit
  1103. 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1104. .text.TIM_TimeBaseStructInit
  1105. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1106. .text.TIM_OCStructInit
  1107. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
  1108. .text.TIM_ICStructInit
  1109. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1110. .text.TIM_BDTRStructInit
  1111. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
  1112. .text.TIM_CtrlPWMOutputs
  1113. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1114. .text.TIM_ITConfig
  1115. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1116. .text.TIM_GenerateEvent
  1117. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1118. .text.TIM_DMAConfig
  1119. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  1120. .text.TIM_DMACmd
  1121. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  1122. .text.TIM_InternalClockConfig
  1123. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1124. .text.TIM_ITRxExternalClockConfig
  1125. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1126. .text.TIM_TIxExternalClockConfig
  1127. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
  1128. .text.TIM_ETRConfig
  1129. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1130. .text.TIM_ETRClockMode1Config
  1131. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
  1132. .text.TIM_ETRClockMode2Config
  1133. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1134. .text.TIM_PrescalerConfig
  1135. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1136. .text.TIM_CounterModeConfig
  1137. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1138. .text.TIM_SelectInputTrigger
  1139. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1140. .text.TIM_EncoderInterfaceConfig
  1141. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
  1142. .text.TIM_ForcedOC1Config
  1143. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1144. .text.TIM_ForcedOC2Config
  1145. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1146. .text.TIM_ForcedOC3Config
  1147. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1148. .text.TIM_ForcedOC4Config
  1149. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1150. .text.TIM_ARRPreloadConfig
  1151. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1152. .text.TIM_SelectCOM
  1153. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1154. .text.TIM_SelectCCDMA
  1155. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1156. .text.TIM_CCPreloadControl
  1157. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1158. .text.TIM_OC1FastConfig
  1159. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1160. .text.TIM_OC2FastConfig
  1161. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1162. .text.TIM_OC3FastConfig
  1163. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1164. .text.TIM_OC4FastConfig
  1165. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1166. .text.TIM_ClearOC1Ref
  1167. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1168. .text.TIM_ClearOC2Ref
  1169. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1170. .text.TIM_ClearOC3Ref
  1171. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1172. .text.TIM_ClearOC4Ref
  1173. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1174. .text.TIM_OC1PolarityConfig
  1175. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1176. .text.TIM_OC1NPolarityConfig
  1177. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1178. .text.TIM_OC2PolarityConfig
  1179. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1180. .text.TIM_OC2NPolarityConfig
  1181. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1182. .text.TIM_OC3PolarityConfig
  1183. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1184. .text.TIM_OC3NPolarityConfig
  1185. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1186. .text.TIM_OC4PolarityConfig
  1187. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1188. .text.TIM_CCxCmd
  1189. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1190. .text.TIM_CCxNCmd
  1191. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1192. .text.TIM_SelectOCxM
  1193. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
  1194. .text.TIM_UpdateDisableConfig
  1195. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1196. .text.TIM_UpdateRequestConfig
  1197. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1198. .text.TIM_SelectHallSensor
  1199. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1200. .text.TIM_SelectOnePulseMode
  1201. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1202. .text.TIM_SelectOutputTrigger
  1203. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1204. .text.TIM_SelectSlaveMode
  1205. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1206. .text.TIM_SelectMasterSlaveMode
  1207. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1208. .text.TIM_SetCounter
  1209. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1210. .text.TIM_SetAutoreload
  1211. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1212. .text.TIM_SetIC1Prescaler
  1213. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1214. .text.TIM_SetIC2Prescaler
  1215. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1216. .text.TIM_PWMIConfig
  1217. 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1218. .text.TIM_SetIC3Prescaler
  1219. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1220. .text.TIM_SetIC4Prescaler
  1221. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1222. .text.TIM_ICInit
  1223. 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
  1224. .text.TIM_SetClockDivision
  1225. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1226. .text.TIM_GetCapture1
  1227. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1228. .text.TIM_GetCapture2
  1229. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1230. .text.TIM_GetCapture3
  1231. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1232. .text.TIM_GetCapture4
  1233. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1234. .text.TIM_GetCounter
  1235. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1236. .text.TIM_GetPrescaler
  1237. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1238. .text.TIM_GetFlagStatus
  1239. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
  1240. .text.TIM_ClearFlag
  1241. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1242. .text.TIM_GetITStatus
  1243. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1244. .text.TIM_ClearITPendingBit
  1245. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1246. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1247. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1248. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1249. .text.TI1_Config
  1250. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1251. .text.TI2_Config
  1252. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1253. .text.TIM5_DeInit
  1254. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1255. .text.TIM5_OC1Init
  1256. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1257. .text.TIM5_OC2Init
  1258. 0x0000000000000000 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1259. .text.TIM5_OC4Init
  1260. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1261. .text.TIM5_TimeBaseStructInit
  1262. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1263. .text.TIM5_OCStructInit
  1264. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1265. .text.TIM5_ICStructInit
  1266. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1267. .text.TIM5_BDTRStructInit
  1268. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1269. .text.TIM5_Cmd
  1270. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1271. .text.TIM5_CtrlPWMOutputs
  1272. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1273. .text.TIM5_ITConfig
  1274. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1275. .text.TIM5_GenerateEvent
  1276. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1277. .text.TIM5_DMAConfig
  1278. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
  1279. .text.TIM5_DMACmd
  1280. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1281. .text.TIM5_InternalClockConfig
  1282. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1283. .text.TIM5_ITRxExternalClockConfig
  1284. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1285. .text.TIM5_TIxExternalClockConfig
  1286. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1287. .text.TIM5_ETRClockMode1Config
  1288. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1289. .text.TIM5_ETRClockMode2Config
  1290. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1291. .text.TIM5_ETRConfig
  1292. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1293. .text.TIM5_PrescalerConfig
  1294. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
  1295. .text.TIM5_CounterModeConfig
  1296. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1297. .text.TIM5_SelectInputTrigger
  1298. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1299. .text.TIM5_EncoderInterfaceConfig
  1300. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1301. .text.TIM5_ForcedOC1Config
  1302. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1303. .text.TIM5_ForcedOC2Config
  1304. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1305. .text.TIM5_ForcedOC3Config
  1306. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1307. .text.TIM5_ForcedOC4Config
  1308. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1309. .text.TIM5_ARRPreloadConfig
  1310. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1311. .text.TIM5_SelectCOM
  1312. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1313. .text.TIM5_SelectCCDMA
  1314. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1315. .text.TIM5_CCPreloadControl
  1316. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1317. .text.TIM5_OC1PreloadConfig
  1318. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1319. .text.TIM5_OC2PreloadConfig
  1320. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1321. .text.TIM5_OC4PreloadConfig
  1322. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1323. .text.TIM5_OC1FastConfig
  1324. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1325. .text.TIM5_OC2FastConfig
  1326. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1327. .text.TIM5_OC3FastConfig
  1328. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1329. .text.TIM5_OC4FastConfig
  1330. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1331. .text.TIM5_ClearOC1Ref
  1332. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1333. .text.TIM5_ClearOC2Ref
  1334. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1335. .text.TIM5_ClearOC3Ref
  1336. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1337. .text.TIM5_ClearOC4Ref
  1338. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1339. .text.TIM5_OC1PolarityConfig
  1340. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1341. .text.TIM5_OC1NPolarityConfig
  1342. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1343. .text.TIM5_OC2PolarityConfig
  1344. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1345. .text.TIM5_OC2NPolarityConfig
  1346. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1347. .text.TIM5_OC3PolarityConfig
  1348. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1349. .text.TIM5_OC3NPolarityConfig
  1350. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1351. .text.TIM5_OC4PolarityConfig
  1352. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1353. .text.TIM5_CCxCmd
  1354. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1355. .text.TIM5_CCxNCmd
  1356. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1357. .text.TIM5_SelectOCxM
  1358. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1359. .text.TIM5_UpdateDisableConfig
  1360. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1361. .text.TIM5_UpdateRequestConfig
  1362. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1363. .text.TIM5_SelectHallSensor
  1364. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1365. .text.TIM5_SelectOnePulseMode
  1366. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1367. .text.TIM5_SelectOutputTrigger
  1368. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1369. .text.TIM5_SelectSlaveMode
  1370. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1371. .text.TIM5_SelectMasterSlaveMode
  1372. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1373. .text.TIM5_SetCounter
  1374. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1375. .text.TIM5_SetAutoreload
  1376. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1377. .text.TIM5_SetCompare1
  1378. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1379. .text.TIM5_SetCompare2
  1380. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1381. .text.TIM5_SetCompare4
  1382. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1383. .text.TIM5_SetIC1Prescaler
  1384. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1385. .text.TIM5_SetIC2Prescaler
  1386. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1387. .text.TIM5_PWMIConfig
  1388. 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1389. .text.TIM5_SetIC3Prescaler
  1390. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1391. .text.TIM5_SetIC4Prescaler
  1392. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1393. .text.TIM5_ICInit
  1394. 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1395. .text.TIM5_SetClockDivision
  1396. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1397. .text.TIM5_GetCapture1
  1398. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1399. .text.TIM5_GetCapture2
  1400. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1401. .text.TIM5_GetCapture3
  1402. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1403. .text.TIM5_GetCapture4
  1404. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1405. .text.TIM5_GetCounter
  1406. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1407. .text.TIM5_GetPrescaler
  1408. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1409. .text.TIM5_GetFlagStatus
  1410. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1411. .text.TIM5_ClearFlag
  1412. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1413. .text.TIM5_GetITStatus
  1414. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1415. .text.TIM5_ClearITPendingBit
  1416. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1417. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1418. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1419. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1420. .text.USART_DeInit
  1421. 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
  1422. .text.USART_StructInit
  1423. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1424. .text.USART_ClockInit
  1425. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
  1426. .text.USART_ClockStructInit
  1427. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1428. .text.USART_ITConfig
  1429. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
  1430. .text.USART_DMACmd
  1431. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1432. .text.USART_SetAddress
  1433. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1434. .text.USART_WakeUpConfig
  1435. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1436. .text.USART_ReceiverWakeUpCmd
  1437. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1438. .text.USART_LINBreakDetectLengthConfig
  1439. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1440. .text.USART_LINCmd
  1441. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1442. .text.USART_ReceiveData
  1443. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1444. .text.USART_SendBreak
  1445. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1446. .text.USART_SetGuardTime
  1447. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1448. .text.USART_SetPrescaler
  1449. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1450. .text.USART_SmartCardCmd
  1451. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
  1452. .text.USART_SmartCardNACKCmd
  1453. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1454. .text.USART_HalfDuplexCmd
  1455. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1456. .text.USART_IrDAConfig
  1457. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1458. .text.USART_IrDACmd
  1459. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1460. .text.USART_ClearFlag
  1461. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
  1462. .text.USART_GetITStatus
  1463. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
  1464. .text.USART_ClearITPendingBit
  1465. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1466. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1467. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1468. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1469. .text.WWDG_DeInit
  1470. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1471. .text.WWDG_SetPrescaler
  1472. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1473. .text.WWDG_SetWindowValue
  1474. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1475. .text.WWDG_EnableIT
  1476. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1477. .text.WWDG_SetCounter
  1478. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1479. .text.WWDG_Enable
  1480. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1481. .text.WWDG_GetFlagStatus
  1482. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1483. .text.WWDG_ClearFlag
  1484. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1485. .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1486. .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1487. .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1488. .debug_aranges
  1489. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1490. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1491. .debug_line 0x0000000000000000 0x612 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1492. .debug_str 0x0000000000000000 0x740 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1493. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1494. .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1495. .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1496. .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1497. .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1498. .text.SDI_Printf_Enable
  1499. 0x0000000000000000 0x22 ./SRC/Debug/debug.o
  1500. .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1501. .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1502. .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1503. .text.__get_MSTATUS
  1504. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1505. .text.__set_MSTATUS
  1506. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1507. .text.__get_MISA
  1508. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1509. .text.__set_MISA
  1510. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1511. .text.__get_MTVEC
  1512. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1513. .text.__set_MTVEC
  1514. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1515. .text.__get_MSCRATCH
  1516. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1517. .text.__set_MSCRATCH
  1518. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1519. .text.__get_MEPC
  1520. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1521. .text.__set_MEPC
  1522. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1523. .text.__get_MCAUSE
  1524. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1525. .text.__set_MCAUSE
  1526. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1527. .text.__get_MTVAL
  1528. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1529. .text.__set_MTVAL
  1530. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1531. .text.__get_MVENDORID
  1532. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1533. .text.__get_MARCHID
  1534. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1535. .text.__get_MIMPID
  1536. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1537. .text.__get_MHARTID
  1538. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1539. .text.__get_SP
  1540. 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
  1541. .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
  1542. .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
  1543. .debug_aranges
  1544. 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
  1545. .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
  1546. .debug_line 0x0000000000000000 0x4f3 ./SRC/Core/core_riscv.o
  1547. .debug_str 0x0000000000000000 0x32a ./SRC/Core/core_riscv.o
  1548. .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
  1549. .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
  1550. .text 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1551. .data 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1552. .bss 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1553. .text.DevInfo_SetParameter
  1554. 0x0000000000000000 0x28 ./Profile/devinfoservice.o
  1555. .text.DevInfo_GetParameter
  1556. 0x0000000000000000 0xce ./Profile/devinfoservice.o
  1557. .rodata.DevInfo_GetParameter
  1558. 0x0000000000000000 0x24 ./Profile/devinfoservice.o
  1559. .text 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1560. .data 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1561. .bss 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1562. .text.SimpleProfile_GetParameter
  1563. 0x0000000000000000 0x78 ./Profile/gattprofile.o
  1564. .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1565. .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1566. .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1567. .text 0x0000000000000000 0x0 ./HAL/MCU.o
  1568. .data 0x0000000000000000 0x0 ./HAL/MCU.o
  1569. .bss 0x0000000000000000 0x0 ./HAL/MCU.o
  1570. .text.Lib_Calibration_LSI
  1571. 0x0000000000000000 0xa ./HAL/MCU.o
  1572. .text 0x0000000000000000 0x0 ./HAL/RTC.o
  1573. .data 0x0000000000000000 0x0 ./HAL/RTC.o
  1574. .bss 0x0000000000000000 0x0 ./HAL/RTC.o
  1575. .text.RTC_SetTignTime
  1576. 0x0000000000000000 0x2e ./HAL/RTC.o
  1577. .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1578. .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1579. .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1580. .text.BLE_LowPower
  1581. 0x0000000000000000 0x4 ./HAL/SLEEP.o
  1582. .text.HAL_SleepInit
  1583. 0x0000000000000000 0x2 ./HAL/SLEEP.o
  1584. .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
  1585. .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
  1586. .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
  1587. .debug_aranges
  1588. 0x0000000000000000 0x28 ./HAL/SLEEP.o
  1589. .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
  1590. .debug_line 0x0000000000000000 0x3fb ./HAL/SLEEP.o
  1591. .debug_str 0x0000000000000000 0x685 ./HAL/SLEEP.o
  1592. .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
  1593. .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
  1594. .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)
  1595. .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)
  1596. .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)
  1597. .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)
  1598. .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)
  1599. .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)
  1600. .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)
  1601. .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)
  1602. .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)
  1603. .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)
  1604. .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)
  1605. .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)
  1606. .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)
  1607. .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)
  1608. .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)
  1609. .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)
  1610. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  1611. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  1612. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1613. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1614. .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)
  1615. .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)
  1616. .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)
  1617. .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)
  1618. .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)
  1619. .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)
  1620. .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)
  1621. .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)
  1622. .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)
  1623. .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)
  1624. .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)
  1625. .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)
  1626. .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)
  1627. .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)
  1628. .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)
  1629. .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)
  1630. .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)
  1631. .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)
  1632. .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)
  1633. .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)
  1634. .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)
  1635. .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)
  1636. .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)
  1637. .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)
  1638. .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)
  1639. .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)
  1640. .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)
  1641. .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)
  1642. .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)
  1643. .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)
  1644. .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)
  1645. .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)
  1646. .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)
  1647. .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)
  1648. .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)
  1649. .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)
  1650. .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)
  1651. .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)
  1652. .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)
  1653. .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)
  1654. .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)
  1655. .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)
  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(subsf3.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(subsf3.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(subsf3.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(fixunssfsi.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(fixunssfsi.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(fixunssfsi.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(floatsisf.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(floatsisf.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(floatsisf.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(floatunsisf.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(floatunsisf.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(floatunsisf.o)
  1668. .text.__floatunsisf
  1669. 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)
  1670. .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)
  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(extendsfdf2.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(extendsfdf2.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(extendsfdf2.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(truncdfsf2.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(truncdfsf2.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(truncdfsf2.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(_clz.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(_clz.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(_clz.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(_clzsi2.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(_clzsi2.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(_clzsi2.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  1689. .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)
  1690. .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)
  1691. .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)
  1692. .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)
  1693. .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)
  1694. .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)
  1695. .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)
  1696. .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)
  1697. .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)
  1698. .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)
  1699. .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)
  1700. .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)
  1701. .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)
  1702. .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)
  1703. .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)
  1704. .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)
  1705. .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)
  1706. .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)
  1707. .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)
  1708. .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)
  1709. .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)
  1710. .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)
  1711. .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)
  1712. .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)
  1713. .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)
  1714. .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)
  1715. .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)
  1716. .text._printf_r
  1717. 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)
  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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.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-realloc.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-realloc.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-realloc.o)
  1724. .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)
  1725. .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)
  1726. .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)
  1727. .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)
  1728. .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)
  1729. .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)
  1730. .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)
  1731. .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)
  1732. .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)
  1733. .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)
  1734. .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)
  1735. .text._sprintf_r
  1736. 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)
  1737. .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)
  1738. .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)
  1739. .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)
  1740. .text._sscanf_r
  1741. 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)
  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-stdio.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-stdio.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-stdio.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-strlen.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-strlen.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-strlen.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-strtod.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-strtod.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-strtod.o)
  1751. .text.strtod_l
  1752. 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)
  1753. .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)
  1754. .text.strtof_l
  1755. 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)
  1756. .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)
  1757. .rodata.strtof_l.cst4
  1758. 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)
  1759. .rodata.strtof_l.cst8
  1760. 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)
  1761. .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)
  1762. .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)
  1763. .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)
  1764. .text.strtol_l
  1765. 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)
  1766. .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)
  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-wbuf.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-wbuf.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-wbuf.o)
  1770. .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)
  1771. .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)
  1772. .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)
  1773. .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)
  1774. .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)
  1775. .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)
  1776. .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)
  1777. .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)
  1778. .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)
  1779. .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)
  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-dtoa.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-dtoa.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-dtoa.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-fflush.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-fflush.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-fflush.o)
  1786. .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)
  1787. .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)
  1788. .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)
  1789. .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)
  1790. .text.__fp_lock
  1791. 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)
  1792. .text.__fp_unlock
  1793. 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)
  1794. .text._cleanup
  1795. 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)
  1796. .text.__sfp_lock_acquire
  1797. 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)
  1798. .text.__sfp_lock_release
  1799. 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)
  1800. .text.__sinit_lock_acquire
  1801. 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)
  1802. .text.__sinit_lock_release
  1803. 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)
  1804. .text.__fp_lock_all
  1805. 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)
  1806. .text.__fp_unlock_all
  1807. 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)
  1808. .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)
  1809. .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)
  1810. .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)
  1811. .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)
  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-gdtoa-gethex.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-gdtoa-gethex.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-gdtoa-gethex.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-gdtoa-hexnan.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-gdtoa-hexnan.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-gdtoa-hexnan.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-locale.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-locale.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-locale.o)
  1821. .text._setlocale_r
  1822. 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)
  1823. .text.__locale_mb_cur_max
  1824. 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)
  1825. .text.setlocale
  1826. 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)
  1827. .sbss._PathLocale
  1828. 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)
  1829. .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)
  1830. .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)
  1831. .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)
  1832. .text.localeconv
  1833. 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)
  1834. .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)
  1835. .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)
  1836. .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)
  1837. .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)
  1838. .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)
  1839. .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)
  1840. .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)
  1841. .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)
  1842. .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)
  1843. .text._mbtowc_r
  1844. 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)
  1845. .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)
  1846. .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)
  1847. .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)
  1848. .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)
  1849. .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)
  1850. .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)
  1851. .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)
  1852. .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)
  1853. .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)
  1854. .text._mprec_log10
  1855. 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)
  1856. .rodata.__mprec_tinytens
  1857. 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)
  1858. .rodata._mprec_log10.cst8
  1859. 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)
  1860. .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)
  1861. .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)
  1862. .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)
  1863. .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)
  1864. .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)
  1865. .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)
  1866. .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)
  1867. .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)
  1868. .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)
  1869. .text.__ssprint_r
  1870. 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)
  1871. .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)
  1872. .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)
  1873. .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)
  1874. .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)
  1875. .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)
  1876. .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)
  1877. .text.__sprint_r
  1878. 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)
  1879. .text.vfprintf
  1880. 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)
  1881. .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)
  1882. .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)
  1883. .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)
  1884. .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)
  1885. .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)
  1886. .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)
  1887. .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)
  1888. .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)
  1889. .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)
  1890. .text.cleanup_glue
  1891. 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)
  1892. .text._reclaim_reent
  1893. 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)
  1894. .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)
  1895. .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)
  1896. .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)
  1897. .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)
  1898. .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)
  1899. .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)
  1900. .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)
  1901. .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)
  1902. .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)
  1903. .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)
  1904. .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)
  1905. .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)
  1906. .text.strtoul_l
  1907. 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)
  1908. .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)
  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-ungetc.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-ungetc.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-ungetc.o)
  1912. .text._ungetc_r
  1913. 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)
  1914. .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)
  1915. .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)
  1916. .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)
  1917. .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)
  1918. .text._wctomb_r
  1919. 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)
  1920. .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)
  1921. .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)
  1922. .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)
  1923. .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)
  1924. .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)
  1925. .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)
  1926. .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)
  1927. .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)
  1928. .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)
  1929. .text.__sfvwrite_r
  1930. 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)
  1931. .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)
  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-isattyr.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-isattyr.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-isattyr.o)
  1935. .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)
  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-memmove.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-memmove.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-nano-msizer.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-nano-msizer.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-nano-msizer.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/rv32imacxw/ilp32\libgcc.a(ledf2.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/rv32imacxw/ilp32\libgcc.a(ledf2.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/rv32imacxw/ilp32\libgcc.a(ledf2.o)
  1944. .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)
  1945. .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)
  1946. .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)
  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/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.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/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.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/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  1950. .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)
  1951. .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)
  1952. .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)
  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/rv32imacxw/ilp32\libgcc.a(unordsf2.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/rv32imacxw/ilp32\libgcc.a(unordsf2.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/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1956. .text.__unordsf2
  1957. 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)
  1958. .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)
  1959. .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)
  1960. .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)
  1961. .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)
  1962. .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)
  1963. .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)
  1964. .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)
  1965. .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)
  1966. .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)
  1967. .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)
  1968. .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)
  1969. .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)
  1970. .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)
  1971. .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)
  1972. .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)
  1973. .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)
  1974. .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)
  1975. .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)
  1976. .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)
  1977. .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)
  1978. .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)
  1979. .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)
  1980. Memory Configuration
  1981. Name Origin Length Attributes
  1982. FLASH 0x0000000000005000 0x000000000003b000 xr
  1983. RAM 0x0000000020004000 0x000000000000c000 xrw
  1984. *default* 0x0000000000000000 0xffffffffffffffff
  1985. Linker script and memory map
  1986. LOAD ./components/tools/AES_PKCS7.o
  1987. LOAD ./components/tools/_string.o
  1988. LOAD ./components/tools/my_math.o
  1989. LOAD ./components/tools/tools.o
  1990. LOAD ./components/tools/user_crc16.o
  1991. LOAD ./components/nfc/fm175xx.o
  1992. LOAD ./components/nfc/lpcd.o
  1993. LOAD ./components/nfc/mifare_card.o
  1994. LOAD ./components/nfc/type_a.o
  1995. LOAD ./components/nfc/type_b.o
  1996. LOAD ./components/nfc/user_nfc.o
  1997. LOAD ./components/nfc/user_spi.o
  1998. LOAD ./components/led/user_led.o
  1999. LOAD ./components/electlock/user_elect.o
  2000. LOAD ./components/config/user_config.o
  2001. LOAD ./components/charge/user_adc.o
  2002. LOAD ./components/charge/user_charge.o
  2003. LOAD ./components/can/dip_sw.o
  2004. LOAD ./components/can/user_can.o
  2005. LOAD ./components/action/ble_action.o
  2006. LOAD ./components/action/user_sever.o
  2007. LOAD ./User/app_drv_fifo/app_drv_fifo.o
  2008. LOAD ./User/app_main.o
  2009. LOAD ./User/ch32v20x_it.o
  2010. LOAD ./User/peripheral.o
  2011. LOAD ./User/system_ch32v20x.o
  2012. LOAD ./Startup/startup_ch32v20x_D8W.o
  2013. LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
  2014. LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
  2015. LOAD ./SRC/Peripheral/src/ch32v20x_can.o
  2016. LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
  2017. LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2018. LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
  2019. LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
  2020. LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
  2021. LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
  2022. LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
  2023. LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2024. LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
  2025. LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
  2026. LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
  2027. LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
  2028. LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
  2029. LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
  2030. LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
  2031. LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
  2032. LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
  2033. LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
  2034. LOAD ./SRC/Debug/debug.o
  2035. LOAD ./SRC/Core/core_riscv.o
  2036. LOAD ./Profile/devinfoservice.o
  2037. LOAD ./Profile/gattprofile.o
  2038. LOAD ./LIB/ble_task_scheduler.o
  2039. LOAD ./HAL/MCU.o
  2040. LOAD ./HAL/RTC.o
  2041. LOAD ./HAL/SLEEP.o
  2042. 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
  2043. LOAD d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a
  2044. 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
  2045. 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
  2046. 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
  2047. 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
  2048. 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
  2049. START GROUP
  2050. 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
  2051. 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
  2052. 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
  2053. END GROUP
  2054. START GROUP
  2055. 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
  2056. 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
  2057. 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
  2058. END GROUP
  2059. 0x0000000000000800 __stack_size = 0x800
  2060. [!provide] PROVIDE (_stack_size = __stack_size)
  2061. 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
  2062. .init 0x0000000000005000 0x3c
  2063. 0x0000000000005000 _sinit = .
  2064. 0x0000000000005000 . = ALIGN (0x4)
  2065. *(SORT_NONE(.init))
  2066. .init 0x0000000000005000 0x38 ./Startup/startup_ch32v20x_D8W.o
  2067. 0x0000000000005000 _start
  2068. *(.ImageFlag)
  2069. .ImageFlag 0x0000000000005038 0x4 ./User/app_main.o
  2070. 0x0000000000005038 Image_Flag
  2071. *(.ImageFlag.*)
  2072. 0x000000000000503c . = ALIGN (0x4)
  2073. 0x000000000000503c _einit = .
  2074. .vector 0x000000000000503c 0x144
  2075. *(.vector)
  2076. .vector 0x000000000000503c 0x118 ./Startup/startup_ch32v20x_D8W.o
  2077. 0x0000000000005180 . = ALIGN (0x40)
  2078. *fill* 0x0000000000005154 0x2c
  2079. *(SORT_NONE(.handle_reset))
  2080. .highcode 0x0000000000005180 0xec
  2081. 0x0000000000005180 . = ALIGN (0x4)
  2082. *(.highcode)
  2083. .highcode 0x0000000000005180 0x14 ./User/app_main.o
  2084. 0x0000000000005180 Main_Circulation
  2085. .highcode 0x0000000000005194 0x4e ./LIB/ble_task_scheduler.o
  2086. 0x0000000000005194 Ecall_U_Mode_Handler
  2087. 0x0000000000005194 Ecall_M_Mode_Handler
  2088. *(.highcode.*)
  2089. *fill* 0x00000000000051e2 0x2
  2090. .highcode.LLE_IRQHandler
  2091. 0x00000000000051e4 0x86 ./LIB/ble_task_scheduler.o
  2092. 0x00000000000051e4 LLE_IRQHandler
  2093. 0x000000000000526c . = ALIGN (0x4)
  2094. *fill* 0x000000000000526a 0x2
  2095. .text 0x0000000000005270 0x108d0
  2096. 0x0000000000005270 . = ALIGN (0x4)
  2097. *(.text)
  2098. .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)
  2099. 0x0000000000005270 get_gb_token
  2100. 0x00000000000052a6 wch_base64_decode
  2101. 0x00000000000052a8 wch_base64_encode
  2102. 0x00000000000052aa Wch_AES_get_length
  2103. 0x00000000000052ae device_encrypt
  2104. 0x000000000000530e device_decrypt
  2105. 0x00000000000053d6 production_lic_set
  2106. 0x000000000000540c check_lic_stat
  2107. .text 0x0000000000005480 0x26c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  2108. 0x0000000000005480 base64_encode
  2109. 0x00000000000055ce base64_decode
  2110. .text 0x00000000000056ec 0x4b8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  2111. 0x00000000000056ec set_production_lic_key
  2112. 0x00000000000059a4 get_AesKey
  2113. .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)
  2114. 0x0000000000005ba4 memset
  2115. *(.text.*)
  2116. .text.XorBytes
  2117. 0x0000000000005c4c 0x22 ./components/tools/AES_PKCS7.o
  2118. .text.ShiftRows
  2119. 0x0000000000005c6e 0x60 ./components/tools/AES_PKCS7.o
  2120. .text.GfMultBy02
  2121. 0x0000000000005cce 0x18 ./components/tools/AES_PKCS7.o
  2122. .text.MixColumns
  2123. 0x0000000000005ce6 0xee ./components/tools/AES_PKCS7.o
  2124. .text.AES_Init
  2125. 0x0000000000005dd4 0x96 ./components/tools/AES_PKCS7.o
  2126. 0x0000000000005dd4 AES_Init
  2127. .text.AES_get_length
  2128. 0x0000000000005e6a 0x6 ./components/tools/AES_PKCS7.o
  2129. 0x0000000000005e6a AES_get_length
  2130. .text.AES_Encrypt_PKCS7
  2131. 0x0000000000005e70 0xfa ./components/tools/AES_PKCS7.o
  2132. 0x0000000000005e70 AES_Encrypt_PKCS7
  2133. .text.AES_Decrypt
  2134. 0x0000000000005f6a 0xb2 ./components/tools/AES_PKCS7.o
  2135. 0x0000000000005f6a AES_Decrypt
  2136. .text._strlen 0x000000000000601c 0x14 ./components/tools/_string.o
  2137. 0x000000000000601c _strlen
  2138. .text._strstr 0x0000000000006030 0x6c ./components/tools/_string.o
  2139. 0x0000000000006030 _strstr
  2140. .text.rng_init
  2141. 0x000000000000609c 0x2 ./components/tools/tools.o
  2142. 0x000000000000609c rng_init
  2143. .text.Get_Rand
  2144. 0x000000000000609e 0xa ./components/tools/tools.o
  2145. 0x000000000000609e Get_Rand
  2146. .text.SetReg 0x00000000000060a8 0x10 ./components/nfc/fm175xx.o
  2147. 0x00000000000060a8 SetReg
  2148. .text.Read_Reg
  2149. 0x00000000000060b8 0x4 ./components/nfc/fm175xx.o
  2150. 0x00000000000060b8 Read_Reg
  2151. .text.Write_Reg
  2152. 0x00000000000060bc 0x10 ./components/nfc/fm175xx.o
  2153. 0x00000000000060bc Write_Reg
  2154. .text.Read_FIFO
  2155. 0x00000000000060cc 0x2c ./components/nfc/fm175xx.o
  2156. 0x00000000000060cc Read_FIFO
  2157. .text.Write_FIFO
  2158. 0x00000000000060f8 0x2c ./components/nfc/fm175xx.o
  2159. 0x00000000000060f8 Write_FIFO
  2160. .text.Set_BitMask
  2161. 0x0000000000006124 0x26 ./components/nfc/fm175xx.o
  2162. 0x0000000000006124 Set_BitMask
  2163. .text.Clear_FIFO
  2164. 0x000000000000614a 0x1c ./components/nfc/fm175xx.o
  2165. 0x000000000000614a Clear_FIFO
  2166. .text.Clear_BitMask
  2167. 0x0000000000006166 0x2a ./components/nfc/fm175xx.o
  2168. 0x0000000000006166 Clear_BitMask
  2169. .text.Write_Ext_Reg
  2170. 0x0000000000006190 0x2e ./components/nfc/fm175xx.o
  2171. 0x0000000000006190 Write_Ext_Reg
  2172. .text.Set_Rf 0x00000000000061be 0x78 ./components/nfc/fm175xx.o
  2173. 0x00000000000061be Set_Rf
  2174. .text.Pcd_Comm
  2175. 0x0000000000006236 0x16e ./components/nfc/fm175xx.o
  2176. 0x0000000000006236 Pcd_Comm
  2177. .text.Pcd_SetTimer
  2178. 0x00000000000063a4 0x74 ./components/nfc/fm175xx.o
  2179. 0x00000000000063a4 Pcd_SetTimer
  2180. .text.Pcd_ConfigISOType
  2181. 0x0000000000006418 0xd4 ./components/nfc/fm175xx.o
  2182. 0x0000000000006418 Pcd_ConfigISOType
  2183. .text.FM175X_SoftReset
  2184. 0x00000000000064ec 0x1c ./components/nfc/fm175xx.o
  2185. 0x00000000000064ec FM175X_SoftReset
  2186. .text.Lpcd_Set_IRQ_pin
  2187. 0x0000000000006508 0x18 ./components/nfc/lpcd.o
  2188. 0x0000000000006508 Lpcd_Set_IRQ_pin
  2189. .text.Lpcd_Init_Register
  2190. 0x0000000000006520 0x2a ./components/nfc/lpcd.o
  2191. 0x0000000000006520 Lpcd_Init_Register
  2192. .text.TyteA_Read
  2193. 0x000000000000654a 0x5e ./components/nfc/lpcd.o
  2194. 0x000000000000654a TyteA_Read
  2195. .text.RightMoveBit
  2196. 0x00000000000065a8 0x1a ./components/nfc/type_a.o
  2197. 0x00000000000065a8 RightMoveBit
  2198. .text.LeftMoveBit
  2199. 0x00000000000065c2 0x1c ./components/nfc/type_a.o
  2200. 0x00000000000065c2 LeftMoveBit
  2201. .text.CollSaveUID
  2202. 0x00000000000065de 0xd4 ./components/nfc/type_a.o
  2203. 0x00000000000065de CollSaveUID
  2204. .text.TypeA_Set_BitFraming
  2205. 0x00000000000066b2 0xf4 ./components/nfc/type_a.o
  2206. 0x00000000000066b2 TypeA_Set_BitFraming
  2207. .text.TypeA_Request
  2208. 0x00000000000067a6 0x72 ./components/nfc/type_a.o
  2209. 0x00000000000067a6 TypeA_Request
  2210. .text.TypeA_Anticollision
  2211. 0x0000000000006818 0xb2 ./components/nfc/type_a.o
  2212. 0x0000000000006818 TypeA_Anticollision
  2213. .text.TypeA_Select
  2214. 0x00000000000068ca 0x94 ./components/nfc/type_a.o
  2215. 0x00000000000068ca TypeA_Select
  2216. .text.TypeA_CardActive
  2217. 0x000000000000695e 0xfe ./components/nfc/type_a.o
  2218. 0x000000000000695e TypeA_CardActive
  2219. .text.TypeA_Halt
  2220. 0x0000000000006a5c 0x54 ./components/nfc/type_a.o
  2221. 0x0000000000006a5c TypeA_Halt
  2222. .text.prvUser_nfc_upload_card_stat
  2223. 0x0000000000006ab0 0x76 ./components/nfc/user_nfc.o
  2224. .text.Card_Check.part.0
  2225. 0x0000000000006b26 0xc8 ./components/nfc/user_nfc.o
  2226. .text.user_nfc_task_process_event
  2227. 0x0000000000006bee 0x23e ./components/nfc/user_nfc.o
  2228. .text.ReadRawRC
  2229. 0x0000000000006e2c 0x58 ./components/nfc/user_nfc.o
  2230. 0x0000000000006e2c ReadRawRC
  2231. .text.WriteRawRC
  2232. 0x0000000000006e84 0x50 ./components/nfc/user_nfc.o
  2233. 0x0000000000006e84 WriteRawRC
  2234. .text.vUser_nfc_set_upload_key_stat_func
  2235. 0x0000000000006ed4 0x6 ./components/nfc/user_nfc.o
  2236. 0x0000000000006ed4 vUser_nfc_set_upload_key_stat_func
  2237. .text.vUser_nfc_task_start
  2238. 0x0000000000006eda 0x28 ./components/nfc/user_nfc.o
  2239. 0x0000000000006eda vUser_nfc_task_start
  2240. .text.vUser_nfc_init
  2241. 0x0000000000006f02 0xf4 ./components/nfc/user_nfc.o
  2242. 0x0000000000006f02 vUser_nfc_init
  2243. .text.vUser_nfc_set_charge_stat
  2244. 0x0000000000006ff6 0x14 ./components/nfc/user_nfc.o
  2245. 0x0000000000006ff6 vUser_nfc_set_charge_stat
  2246. .text.user_spi_Init
  2247. 0x000000000000700a 0x9c ./components/nfc/user_spi.o
  2248. 0x000000000000700a user_spi_Init
  2249. .text.SPI_ReadWriteByte
  2250. 0x00000000000070a6 0x60 ./components/nfc/user_spi.o
  2251. 0x00000000000070a6 SPI_ReadWriteByte
  2252. .text.led_task_process_event
  2253. 0x0000000000007106 0x118 ./components/led/user_led.o
  2254. .text.led_dev_duty
  2255. 0x000000000000721e 0x4 ./components/led/user_led.o
  2256. .text.right_dev_duty
  2257. 0x0000000000007222 0x5c ./components/led/user_led.o
  2258. .text.left_dev_duty
  2259. 0x000000000000727e 0x5a ./components/led/user_led.o
  2260. .text.set_led_indication
  2261. 0x00000000000072d8 0xaa ./components/led/user_led.o
  2262. 0x00000000000072d8 set_led_indication
  2263. .text.led_task_init
  2264. 0x0000000000007382 0x212 ./components/led/user_led.o
  2265. 0x0000000000007382 led_task_init
  2266. .text.led_task_start
  2267. 0x0000000000007594 0x12 ./components/led/user_led.o
  2268. 0x0000000000007594 led_task_start
  2269. .text.vUser_led_set_view_stat
  2270. 0x00000000000075a6 0xa6 ./components/led/user_led.o
  2271. 0x00000000000075a6 vUser_led_set_view_stat
  2272. .text.vUser_led_set_alarm_view
  2273. 0x000000000000764c 0x122 ./components/led/user_led.o
  2274. 0x000000000000764c vUser_led_set_alarm_view
  2275. .text.elect_task_process_event
  2276. 0x000000000000776e 0xa4 ./components/electlock/user_elect.o
  2277. .text.elect_right_work_stat
  2278. 0x0000000000007812 0x6a ./components/electlock/user_elect.o
  2279. .text.elect_left_work_stat
  2280. 0x000000000000787c 0x5a ./components/electlock/user_elect.o
  2281. .text.set_elect_work_stat
  2282. 0x00000000000078d6 0x14 ./components/electlock/user_elect.o
  2283. 0x00000000000078d6 set_elect_work_stat
  2284. .text.elect_start
  2285. 0x00000000000078ea 0x28 ./components/electlock/user_elect.o
  2286. 0x00000000000078ea elect_start
  2287. .text.elect_task_init
  2288. 0x0000000000007912 0xce ./components/electlock/user_elect.o
  2289. 0x0000000000007912 elect_task_init
  2290. .text.elect_task_start
  2291. 0x00000000000079e0 0x12 ./components/electlock/user_elect.o
  2292. 0x00000000000079e0 elect_task_start
  2293. .text.vUser_elect_set_upload_stat_func
  2294. 0x00000000000079f2 0x6 ./components/electlock/user_elect.o
  2295. 0x00000000000079f2 vUser_elect_set_upload_stat_func
  2296. .text.set_user_config_param_init
  2297. 0x00000000000079f8 0x1c ./components/config/user_config.o
  2298. 0x00000000000079f8 set_user_config_param_init
  2299. .text.check_can_baud
  2300. 0x0000000000007a14 0x66 ./components/config/user_config.o
  2301. 0x0000000000007a14 check_can_baud
  2302. .text.FLASH_read
  2303. 0x0000000000007a7a 0x18 ./components/config/user_config.o
  2304. 0x0000000000007a7a FLASH_read
  2305. .text.User_Config_Write_Config
  2306. 0x0000000000007a92 0x50 ./components/config/user_config.o
  2307. 0x0000000000007a92 User_Config_Write_Config
  2308. .text.User_Config_Read_Config
  2309. 0x0000000000007ae2 0x94 ./components/config/user_config.o
  2310. 0x0000000000007ae2 User_Config_Read_Config
  2311. .text.user_config_save_can_baud
  2312. 0x0000000000007b76 0x3c ./components/config/user_config.o
  2313. 0x0000000000007b76 user_config_save_can_baud
  2314. .text.user_config_init
  2315. 0x0000000000007bb2 0x2 ./components/config/user_config.o
  2316. 0x0000000000007bb2 user_config_init
  2317. .text.Get_ConversionVal
  2318. 0x0000000000007bb4 0x2c ./components/charge/user_adc.o
  2319. 0x0000000000007bb4 Get_ConversionVal
  2320. .text.Get_Temp
  2321. 0x0000000000007be0 0x5e ./components/charge/user_adc.o
  2322. 0x0000000000007be0 Get_Temp
  2323. .text.adc_task_start
  2324. 0x0000000000007c3e 0x2a ./components/charge/user_adc.o
  2325. 0x0000000000007c3e adc_task_start
  2326. .text.adc_task_process_event
  2327. 0x0000000000007c68 0x136 ./components/charge/user_adc.o
  2328. 0x0000000000007c68 adc_task_process_event
  2329. .text.adc_init
  2330. 0x0000000000007d9e 0x180 ./components/charge/user_adc.o
  2331. 0x0000000000007d9e adc_init
  2332. .text.vUser_adc_dma_finish
  2333. 0x0000000000007f1e 0x36 ./components/charge/user_adc.o
  2334. 0x0000000000007f1e vUser_adc_dma_finish
  2335. .text.prvUser_charge_upload_stat
  2336. 0x0000000000007f54 0x10 ./components/charge/user_charge.o
  2337. .text.user_charge_task_process_event
  2338. 0x0000000000007f64 0x9a ./components/charge/user_charge.o
  2339. .text.set_user_charge_Queue
  2340. 0x0000000000007ffe 0x1a ./components/charge/user_charge.o
  2341. 0x0000000000007ffe set_user_charge_Queue
  2342. .text.user_charge_init
  2343. 0x0000000000008018 0x8c ./components/charge/user_charge.o
  2344. 0x0000000000008018 user_charge_init
  2345. .text.vUser_charge_set_upload_stat_func
  2346. 0x00000000000080a4 0x6 ./components/charge/user_charge.o
  2347. 0x00000000000080a4 vUser_charge_set_upload_stat_func
  2348. .text.set_dispsw_addr
  2349. 0x00000000000080aa 0x52 ./components/can/dip_sw.o
  2350. .text.get_dipsw04_level
  2351. 0x00000000000080fc 0x1a ./components/can/dip_sw.o
  2352. .text.get_dipsw03_level
  2353. 0x0000000000008116 0x1a ./components/can/dip_sw.o
  2354. .text.get_dipsw02_level
  2355. 0x0000000000008130 0x1a ./components/can/dip_sw.o
  2356. .text.get_dipsw01_level
  2357. 0x000000000000814a 0x1a ./components/can/dip_sw.o
  2358. .text.vDipsw_init
  2359. 0x0000000000008164 0x68 ./components/can/dip_sw.o
  2360. 0x0000000000008164 vDipsw_init
  2361. .text.dipsw_task_process_event
  2362. 0x00000000000081cc 0xac ./components/can/dip_sw.o
  2363. 0x00000000000081cc dipsw_task_process_event
  2364. .text.dipsw_task_start
  2365. 0x0000000000008278 0x12 ./components/can/dip_sw.o
  2366. 0x0000000000008278 dipsw_task_start
  2367. .text.vDipsw_set_upload_func
  2368. 0x000000000000828a 0x6 ./components/can/dip_sw.o
  2369. 0x000000000000828a vDipsw_set_upload_func
  2370. .text.ucCAN_Send_Msg
  2371. 0x0000000000008290 0x98 ./components/can/user_can.o
  2372. 0x0000000000008290 ucCAN_Send_Msg
  2373. .text.user_can_task_process_event
  2374. 0x0000000000008328 0x7a ./components/can/user_can.o
  2375. .text.vUser_can_send_data
  2376. 0x00000000000083a2 0x4e ./components/can/user_can.o
  2377. 0x00000000000083a2 vUser_can_send_data
  2378. .text.vUser_can_recv_data
  2379. 0x00000000000083f0 0x36 ./components/can/user_can.o
  2380. 0x00000000000083f0 vUser_can_recv_data
  2381. .text.vUser_can_set_recv_data_func
  2382. 0x0000000000008426 0x6 ./components/can/user_can.o
  2383. 0x0000000000008426 vUser_can_set_recv_data_func
  2384. .text.vUser_can_set_addr
  2385. 0x000000000000842c 0x6c ./components/can/user_can.o
  2386. 0x000000000000842c vUser_can_set_addr
  2387. .text.vUser_can_init
  2388. 0x0000000000008498 0x1ba ./components/can/user_can.o
  2389. 0x0000000000008498 vUser_can_init
  2390. .text.ble_owned_data_send
  2391. 0x0000000000008652 0x10 ./components/action/ble_action.o
  2392. .text.ble_action_set_rst
  2393. 0x0000000000008662 0x24 ./components/action/ble_action.o
  2394. .text.set_token
  2395. 0x0000000000008686 0x20 ./components/action/ble_action.o
  2396. .text.Set_ble_data_s_sendData
  2397. 0x00000000000086a6 0x7a ./components/action/ble_action.o
  2398. .text.ble_devRst_set_stat_send
  2399. 0x0000000000008720 0x2e ./components/action/ble_action.o
  2400. .text.Check_UnixTime_Token
  2401. 0x000000000000874e 0x3a ./components/action/ble_action.o
  2402. .text.ble_Return_Stat_Send.constprop.3
  2403. 0x0000000000008788 0x1e ./components/action/ble_action.o
  2404. .text.Jump_OTA
  2405. 0x00000000000087a6 0x48 ./components/action/ble_action.o
  2406. 0x00000000000087a6 Jump_OTA
  2407. .text.ble_connect_act
  2408. 0x00000000000087ee 0x18 ./components/action/ble_action.o
  2409. 0x00000000000087ee ble_connect_act
  2410. .text.ble_get_nfc_send
  2411. 0x0000000000008806 0x86 ./components/action/ble_action.o
  2412. 0x0000000000008806 ble_get_nfc_send
  2413. .text.download_ble_data_callback
  2414. 0x000000000000888c 0x37e ./components/action/ble_action.o
  2415. 0x000000000000888c download_ble_data_callback
  2416. .text.vBle_action_init
  2417. 0x0000000000008c0a 0x4 ./components/action/ble_action.o
  2418. 0x0000000000008c0a vBle_action_init
  2419. .text.download_ble_file_callback
  2420. 0x0000000000008c0e 0x4 ./components/action/ble_action.o
  2421. 0x0000000000008c0e download_ble_file_callback
  2422. .text.set_upload_ble_data_func
  2423. 0x0000000000008c12 0x6 ./components/action/ble_action.o
  2424. 0x0000000000008c12 set_upload_ble_data_func
  2425. .text.prvUser_can_recv_data_callback
  2426. 0x0000000000008c18 0x26 ./components/action/user_sever.o
  2427. .text.vUser_charge_upload_stat_callback
  2428. 0x0000000000008c3e 0x62 ./components/action/user_sever.o
  2429. .text.vUser_server_set_led_stat
  2430. 0x0000000000008ca0 0x40 ./components/action/user_sever.o
  2431. .text.vUser_elect_upload_stat_callback
  2432. 0x0000000000008ce0 0x36 ./components/action/user_sever.o
  2433. .text.prvUser_nfc_upload_card_callback
  2434. 0x0000000000008d16 0x78 ./components/action/user_sever.o
  2435. .text.user_server_task_process_event
  2436. 0x0000000000008d8e 0x28c ./components/action/user_sever.o
  2437. .text.prvDipsw_upload_callback
  2438. 0x000000000000901a 0x38 ./components/action/user_sever.o
  2439. .text.vUser_server_task_start
  2440. 0x0000000000009052 0x12 ./components/action/user_sever.o
  2441. 0x0000000000009052 vUser_server_task_start
  2442. .text.vUser_server_get_key_data
  2443. 0x0000000000009064 0xa ./components/action/user_sever.o
  2444. 0x0000000000009064 vUser_server_get_key_data
  2445. .text.vUser_server_init
  2446. 0x000000000000906e 0x68 ./components/action/user_sever.o
  2447. 0x000000000000906e vUser_server_init
  2448. .text.startup.main
  2449. 0x00000000000090d6 0xee ./User/app_main.o
  2450. 0x00000000000090d6 main
  2451. .text.NMI_Handler
  2452. 0x00000000000091c4 0x4 ./User/ch32v20x_it.o
  2453. 0x00000000000091c4 NMI_Handler
  2454. .text.HardFault_Handler
  2455. 0x00000000000091c8 0x2 ./User/ch32v20x_it.o
  2456. 0x00000000000091c8 HardFault_Handler
  2457. .text.BB_IRQHandler
  2458. 0x00000000000091ca 0xc ./User/ch32v20x_it.o
  2459. 0x00000000000091ca BB_IRQHandler
  2460. .text.DMA1_Channel1_IRQHandler
  2461. 0x00000000000091d6 0x16 ./User/ch32v20x_it.o
  2462. 0x00000000000091d6 DMA1_Channel1_IRQHandler
  2463. .text.USB_LP_CAN1_RX0_IRQHandler
  2464. 0x00000000000091ec 0x38 ./User/ch32v20x_it.o
  2465. 0x00000000000091ec USB_LP_CAN1_RX0_IRQHandler
  2466. .text.peripheralRssiCB
  2467. 0x0000000000009224 0x2 ./User/peripheral.o
  2468. .text.simpleProfileChangeCB
  2469. 0x0000000000009226 0x2a ./User/peripheral.o
  2470. .text.Peripheral_ProcessEvent
  2471. 0x0000000000009250 0x14e ./User/peripheral.o
  2472. 0x0000000000009250 Peripheral_ProcessEvent
  2473. .text.peripheralParamUpdateCB
  2474. 0x000000000000939e 0x30 ./User/peripheral.o
  2475. .text.Peripheral_LinkTerminated
  2476. 0x00000000000093ce 0x5e ./User/peripheral.o
  2477. .text.peripheralStateNotificationCB
  2478. 0x000000000000942c 0x19e ./User/peripheral.o
  2479. .text.Peripheral_Init
  2480. 0x00000000000095ca 0x202 ./User/peripheral.o
  2481. 0x00000000000095ca Peripheral_Init
  2482. .text.ble_data_send
  2483. 0x00000000000097cc 0x6a ./User/peripheral.o
  2484. 0x00000000000097cc ble_data_send
  2485. .text.set_download_ble_data_func
  2486. 0x0000000000009836 0x6 ./User/peripheral.o
  2487. 0x0000000000009836 set_download_ble_data_func
  2488. .text.set_download_ble_file_func
  2489. 0x000000000000983c 0x6 ./User/peripheral.o
  2490. 0x000000000000983c set_download_ble_file_func
  2491. .text.set_ble_connect_evtfunc
  2492. 0x0000000000009842 0x6 ./User/peripheral.o
  2493. 0x0000000000009842 set_ble_connect_evtfunc
  2494. .text.SystemInit
  2495. 0x0000000000009848 0xea ./User/system_ch32v20x.o
  2496. 0x0000000000009848 SystemInit
  2497. .text.SystemCoreClockUpdate
  2498. 0x0000000000009932 0xac ./User/system_ch32v20x.o
  2499. 0x0000000000009932 SystemCoreClockUpdate
  2500. .text.vector_handler
  2501. 0x00000000000099de 0x2 ./Startup/startup_ch32v20x_D8W.o
  2502. 0x00000000000099de EXTI2_IRQHandler
  2503. 0x00000000000099de TIM1_CC_IRQHandler
  2504. 0x00000000000099de SysTick_Handler
  2505. 0x00000000000099de PVD_IRQHandler
  2506. 0x00000000000099de EXTI3_IRQHandler
  2507. 0x00000000000099de USBFS_IRQHandler
  2508. 0x00000000000099de EXTI0_IRQHandler
  2509. 0x00000000000099de I2C2_EV_IRQHandler
  2510. 0x00000000000099de ADC1_2_IRQHandler
  2511. 0x00000000000099de Break_Point_Handler
  2512. 0x00000000000099de SPI1_IRQHandler
  2513. 0x00000000000099de TAMPER_IRQHandler
  2514. 0x00000000000099de OSCWakeUp_IRQHandler
  2515. 0x00000000000099de DMA1_Channel4_IRQHandler
  2516. 0x00000000000099de USART3_IRQHandler
  2517. 0x00000000000099de RTC_IRQHandler
  2518. 0x00000000000099de DMA1_Channel7_IRQHandler
  2519. 0x00000000000099de CAN1_RX1_IRQHandler
  2520. 0x00000000000099de TIM4_IRQHandler
  2521. 0x00000000000099de I2C1_EV_IRQHandler
  2522. 0x00000000000099de DMA1_Channel6_IRQHandler
  2523. 0x00000000000099de UART4_IRQHandler
  2524. 0x00000000000099de TIM3_IRQHandler
  2525. 0x00000000000099de RCC_IRQHandler
  2526. 0x00000000000099de TIM1_TRG_COM_IRQHandler
  2527. 0x00000000000099de EXTI15_10_IRQHandler
  2528. 0x00000000000099de DMA1_Channel8_IRQHandler
  2529. 0x00000000000099de TIM5_IRQHandler
  2530. 0x00000000000099de EXTI9_5_IRQHandler
  2531. 0x00000000000099de SPI2_IRQHandler
  2532. 0x00000000000099de OSC32KCal_IRQHandler
  2533. 0x00000000000099de DMA1_Channel5_IRQHandler
  2534. 0x00000000000099de EXTI4_IRQHandler
  2535. 0x00000000000099de USB_HP_CAN1_TX_IRQHandler
  2536. 0x00000000000099de DMA1_Channel3_IRQHandler
  2537. 0x00000000000099de ETH_IRQHandler
  2538. 0x00000000000099de TIM1_UP_IRQHandler
  2539. 0x00000000000099de WWDG_IRQHandler
  2540. 0x00000000000099de TIM2_IRQHandler
  2541. 0x00000000000099de SW_Handler
  2542. 0x00000000000099de TIM1_BRK_IRQHandler
  2543. 0x00000000000099de EXTI1_IRQHandler
  2544. 0x00000000000099de USART2_IRQHandler
  2545. 0x00000000000099de ETHWakeUp_IRQHandler
  2546. 0x00000000000099de I2C2_ER_IRQHandler
  2547. 0x00000000000099de DMA1_Channel2_IRQHandler
  2548. 0x00000000000099de CAN1_SCE_IRQHandler
  2549. 0x00000000000099de FLASH_IRQHandler
  2550. 0x00000000000099de USBFSWakeUp_IRQHandler
  2551. 0x00000000000099de USART1_IRQHandler
  2552. 0x00000000000099de I2C1_ER_IRQHandler
  2553. 0x00000000000099de USBWakeUp_IRQHandler
  2554. .text.handle_reset
  2555. 0x00000000000099e0 0x8a ./Startup/startup_ch32v20x_D8W.o
  2556. 0x00000000000099e0 handle_reset
  2557. .text.ADC_DeInit
  2558. 0x0000000000009a6a 0x4c ./SRC/Peripheral/src/ch32v20x_adc.o
  2559. 0x0000000000009a6a ADC_DeInit
  2560. .text.ADC_Init
  2561. 0x0000000000009ab6 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
  2562. 0x0000000000009ab6 ADC_Init
  2563. .text.ADC_Cmd 0x0000000000009b0c 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
  2564. 0x0000000000009b0c ADC_Cmd
  2565. .text.ADC_DMACmd
  2566. 0x0000000000009b1c 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  2567. 0x0000000000009b1c ADC_DMACmd
  2568. .text.ADC_ResetCalibration
  2569. 0x0000000000009b2e 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2570. 0x0000000000009b2e ADC_ResetCalibration
  2571. .text.ADC_GetResetCalibrationStatus
  2572. 0x0000000000009b38 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2573. 0x0000000000009b38 ADC_GetResetCalibrationStatus
  2574. .text.ADC_StartCalibration
  2575. 0x0000000000009b40 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2576. 0x0000000000009b40 ADC_StartCalibration
  2577. .text.ADC_GetCalibrationStatus
  2578. 0x0000000000009b4a 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2579. 0x0000000000009b4a ADC_GetCalibrationStatus
  2580. .text.ADC_SoftwareStartConvCmd
  2581. 0x0000000000009b52 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2582. 0x0000000000009b52 ADC_SoftwareStartConvCmd
  2583. .text.ADC_RegularChannelConfig
  2584. 0x0000000000009b6a 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2585. 0x0000000000009b6a ADC_RegularChannelConfig
  2586. .text.ADC_GetConversionValue
  2587. 0x0000000000009c22 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2588. 0x0000000000009c22 ADC_GetConversionValue
  2589. .text.ADC_TempSensorVrefintCmd
  2590. 0x0000000000009c2a 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
  2591. 0x0000000000009c2a ADC_TempSensorVrefintCmd
  2592. .text.ADC_GetFlagStatus
  2593. 0x0000000000009c4a 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2594. 0x0000000000009c4a ADC_GetFlagStatus
  2595. .text.ADC_BufferCmd
  2596. 0x0000000000009c54 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2597. 0x0000000000009c54 ADC_BufferCmd
  2598. .text.Get_CalibrationValue
  2599. 0x0000000000009c6c 0x13a ./SRC/Peripheral/src/ch32v20x_adc.o
  2600. 0x0000000000009c6c Get_CalibrationValue
  2601. .text.CAN_Init
  2602. 0x0000000000009da6 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
  2603. 0x0000000000009da6 CAN_Init
  2604. .text.CAN_FilterInit
  2605. 0x0000000000009e8e 0xee ./SRC/Peripheral/src/ch32v20x_can.o
  2606. 0x0000000000009e8e CAN_FilterInit
  2607. .text.CAN_Transmit
  2608. 0x0000000000009f7c 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
  2609. 0x0000000000009f7c CAN_Transmit
  2610. .text.CAN_TransmitStatus
  2611. 0x000000000000a038 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
  2612. 0x000000000000a038 CAN_TransmitStatus
  2613. .text.CAN_Receive
  2614. 0x000000000000a09a 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
  2615. 0x000000000000a09a CAN_Receive
  2616. .text.CAN_ITConfig
  2617. 0x000000000000a126 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
  2618. 0x000000000000a126 CAN_ITConfig
  2619. .text.CAN_GetITStatus
  2620. 0x000000000000a138 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
  2621. 0x000000000000a138 CAN_GetITStatus
  2622. .text.CAN_ClearITPendingBit
  2623. 0x000000000000a208 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
  2624. 0x000000000000a208 CAN_ClearITPendingBit
  2625. .text.DBGMCU_GetCHIPID
  2626. 0x000000000000a29c 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2627. 0x000000000000a29c DBGMCU_GetCHIPID
  2628. .text.DMA_DeInit
  2629. 0x000000000000a2a6 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
  2630. 0x000000000000a2a6 DMA_DeInit
  2631. .text.DMA_Init
  2632. 0x000000000000a342 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
  2633. 0x000000000000a342 DMA_Init
  2634. .text.DMA_Cmd 0x000000000000a37a 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
  2635. 0x000000000000a37a DMA_Cmd
  2636. .text.DMA_ITConfig
  2637. 0x000000000000a38e 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
  2638. 0x000000000000a38e DMA_ITConfig
  2639. .text.DMA_SetCurrDataCounter
  2640. 0x000000000000a3a0 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  2641. 0x000000000000a3a0 DMA_SetCurrDataCounter
  2642. .text.DMA_GetFlagStatus
  2643. 0x000000000000a3a4 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
  2644. 0x000000000000a3a4 DMA_GetFlagStatus
  2645. .text.DMA_GetITStatus
  2646. 0x000000000000a3b2 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  2647. 0x000000000000a3b2 DMA_GetITStatus
  2648. .text.DMA_ClearITPendingBit
  2649. 0x000000000000a3b6 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  2650. 0x000000000000a3b6 DMA_ClearITPendingBit
  2651. .text.EXTI_ClearITPendingBit
  2652. 0x000000000000a3be 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  2653. 0x000000000000a3be EXTI_ClearITPendingBit
  2654. .text.FLASH_Unlock_Fast
  2655. 0x000000000000a3c8 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  2656. 0x000000000000a3c8 FLASH_Unlock_Fast
  2657. .text.FLASH_Lock_Fast
  2658. 0x000000000000a3e6 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  2659. 0x000000000000a3e6 FLASH_Lock_Fast
  2660. .text.FLASH_ErasePage_Fast
  2661. 0x000000000000a3f4 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  2662. 0x000000000000a3f4 FLASH_ErasePage_Fast
  2663. .text.FLASH_ProgramPage_Fast
  2664. 0x000000000000a422 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
  2665. 0x000000000000a422 FLASH_ProgramPage_Fast
  2666. .text.FLASH_GetMACAddress
  2667. 0x000000000000a486 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
  2668. 0x000000000000a486 FLASH_GetMACAddress
  2669. .text.GPIO_Init
  2670. 0x000000000000a4ac 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2671. 0x000000000000a4ac GPIO_Init
  2672. .text.GPIO_ReadInputDataBit
  2673. 0x000000000000a56c 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2674. 0x000000000000a56c GPIO_ReadInputDataBit
  2675. .text.GPIO_WriteBit
  2676. 0x000000000000a576 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2677. 0x000000000000a576 GPIO_WriteBit
  2678. .text.GPIO_PinRemapConfig
  2679. 0x000000000000a580 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2680. 0x000000000000a580 GPIO_PinRemapConfig
  2681. .text.IWDG_ReloadCounter
  2682. 0x000000000000a672 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2683. 0x000000000000a672 IWDG_ReloadCounter
  2684. .text.NVIC_Init
  2685. 0x000000000000a680 0x56 ./SRC/Peripheral/src/ch32v20x_misc.o
  2686. 0x000000000000a680 NVIC_Init
  2687. .text.PWR_BackupAccessCmd
  2688. 0x000000000000a6d6 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2689. 0x000000000000a6d6 PWR_BackupAccessCmd
  2690. .text.RCC_ADCCLKConfig
  2691. 0x000000000000a6ec 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2692. 0x000000000000a6ec RCC_ADCCLKConfig
  2693. .text.RCC_LSEConfig
  2694. 0x000000000000a6fe 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2695. 0x000000000000a6fe RCC_LSEConfig
  2696. .text.RCC_RTCCLKConfig
  2697. 0x000000000000a726 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
  2698. 0x000000000000a726 RCC_RTCCLKConfig
  2699. .text.RCC_RTCCLKCmd
  2700. 0x000000000000a732 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2701. 0x000000000000a732 RCC_RTCCLKCmd
  2702. .text.RCC_GetClocksFreq
  2703. 0x000000000000a752 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2704. 0x000000000000a752 RCC_GetClocksFreq
  2705. .text.RCC_AHBPeriphClockCmd
  2706. 0x000000000000a82a 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2707. 0x000000000000a82a RCC_AHBPeriphClockCmd
  2708. .text.RCC_APB2PeriphClockCmd
  2709. 0x000000000000a848 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2710. 0x000000000000a848 RCC_APB2PeriphClockCmd
  2711. .text.RCC_APB1PeriphClockCmd
  2712. 0x000000000000a866 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2713. 0x000000000000a866 RCC_APB1PeriphClockCmd
  2714. .text.RCC_APB2PeriphResetCmd
  2715. 0x000000000000a884 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2716. 0x000000000000a884 RCC_APB2PeriphResetCmd
  2717. .text.RCC_GetFlagStatus
  2718. 0x000000000000a8a2 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2719. 0x000000000000a8a2 RCC_GetFlagStatus
  2720. .text.RTC_EnterConfigMode
  2721. 0x000000000000a8d0 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2722. 0x000000000000a8d0 RTC_EnterConfigMode
  2723. .text.RTC_ExitConfigMode
  2724. 0x000000000000a8e2 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2725. 0x000000000000a8e2 RTC_ExitConfigMode
  2726. .text.RTC_GetCounter
  2727. 0x000000000000a8fa 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2728. 0x000000000000a8fa RTC_GetCounter
  2729. .text.RTC_SetCounter
  2730. 0x000000000000a954 0x28 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2731. 0x000000000000a954 RTC_SetCounter
  2732. .text.RTC_SetPrescaler
  2733. 0x000000000000a97c 0x2a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2734. 0x000000000000a97c RTC_SetPrescaler
  2735. .text.RTC_WaitForLastTask
  2736. 0x000000000000a9a6 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2737. 0x000000000000a9a6 RTC_WaitForLastTask
  2738. .text.RTC_ClearFlag
  2739. 0x000000000000a9b6 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2740. 0x000000000000a9b6 RTC_ClearFlag
  2741. .text.RTC_ClearITPendingBit
  2742. 0x000000000000a9ca 0x4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2743. 0x000000000000a9ca RTC_ClearITPendingBit
  2744. .text.SPI_Init
  2745. 0x000000000000a9ce 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
  2746. 0x000000000000a9ce SPI_Init
  2747. .text.SPI_Cmd 0x000000000000aa0c 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  2748. 0x000000000000aa0c SPI_Cmd
  2749. .text.SPI_I2S_SendData
  2750. 0x000000000000aa26 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  2751. 0x000000000000aa26 SPI_I2S_SendData
  2752. .text.SPI_I2S_ReceiveData
  2753. 0x000000000000aa2a 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  2754. 0x000000000000aa2a SPI_I2S_ReceiveData
  2755. .text.SPI_I2S_GetFlagStatus
  2756. 0x000000000000aa2e 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  2757. 0x000000000000aa2e SPI_I2S_GetFlagStatus
  2758. .text.TIM_TimeBaseInit
  2759. 0x000000000000aa38 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  2760. 0x000000000000aa38 TIM_TimeBaseInit
  2761. .text.TIM_OC1Init
  2762. 0x000000000000aaa2 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  2763. 0x000000000000aaa2 TIM_OC1Init
  2764. .text.TIM_OC2Init
  2765. 0x000000000000ab0c 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
  2766. 0x000000000000ab0c TIM_OC2Init
  2767. .text.TIM_OC3Init
  2768. 0x000000000000aba2 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
  2769. 0x000000000000aba2 TIM_OC3Init
  2770. .text.TIM_OC4Init
  2771. 0x000000000000ac36 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
  2772. 0x000000000000ac36 TIM_OC4Init
  2773. .text.TIM_BDTRConfig
  2774. 0x000000000000aca2 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  2775. 0x000000000000aca2 TIM_BDTRConfig
  2776. .text.TIM_Cmd 0x000000000000acc2 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  2777. 0x000000000000acc2 TIM_Cmd
  2778. .text.TIM_OC1PreloadConfig
  2779. 0x000000000000acda 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  2780. 0x000000000000acda TIM_OC1PreloadConfig
  2781. .text.TIM_OC2PreloadConfig
  2782. 0x000000000000ace8 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  2783. 0x000000000000ace8 TIM_OC2PreloadConfig
  2784. .text.TIM_OC3PreloadConfig
  2785. 0x000000000000acfe 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  2786. 0x000000000000acfe TIM_OC3PreloadConfig
  2787. .text.TIM_OC4PreloadConfig
  2788. 0x000000000000ad0c 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  2789. 0x000000000000ad0c TIM_OC4PreloadConfig
  2790. .text.TIM_SetCompare1
  2791. 0x000000000000ad22 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2792. 0x000000000000ad22 TIM_SetCompare1
  2793. .text.TIM_SetCompare2
  2794. 0x000000000000ad26 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2795. 0x000000000000ad26 TIM_SetCompare2
  2796. .text.TIM_SetCompare3
  2797. 0x000000000000ad2a 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2798. 0x000000000000ad2a TIM_SetCompare3
  2799. .text.TIM_SetCompare4
  2800. 0x000000000000ad2e 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  2801. 0x000000000000ad2e TIM_SetCompare4
  2802. .text.TIM5_TimeBaseInit
  2803. 0x000000000000ad34 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2804. 0x000000000000ad34 TIM5_TimeBaseInit
  2805. .text.TIM5_OC3Init
  2806. 0x000000000000ad68 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2807. 0x000000000000ad68 TIM5_OC3Init
  2808. .text.TIM5_BDTRConfig
  2809. 0x000000000000adca 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2810. 0x000000000000adca TIM5_BDTRConfig
  2811. .text.TIM5_OC3PreloadConfig
  2812. 0x000000000000adee 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2813. 0x000000000000adee TIM5_OC3PreloadConfig
  2814. .text.TIM5_SetCompare3
  2815. 0x000000000000ae04 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  2816. 0x000000000000ae04 TIM5_SetCompare3
  2817. .text.USART_Init
  2818. 0x000000000000ae0e 0x92 ./SRC/Peripheral/src/ch32v20x_usart.o
  2819. 0x000000000000ae0e USART_Init
  2820. .text.USART_Cmd
  2821. 0x000000000000aea0 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  2822. 0x000000000000aea0 USART_Cmd
  2823. .text.USART_SendData
  2824. 0x000000000000aeb6 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  2825. 0x000000000000aeb6 USART_SendData
  2826. .text.USART_GetFlagStatus
  2827. 0x000000000000aebe 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  2828. 0x000000000000aebe USART_GetFlagStatus
  2829. .text.Delay_Init
  2830. 0x000000000000aec8 0x28 ./SRC/Debug/debug.o
  2831. 0x000000000000aec8 Delay_Init
  2832. .text.Delay_Us
  2833. 0x000000000000aef0 0x36 ./SRC/Debug/debug.o
  2834. 0x000000000000aef0 Delay_Us
  2835. .text.Delay_Ms
  2836. 0x000000000000af26 0x36 ./SRC/Debug/debug.o
  2837. 0x000000000000af26 Delay_Ms
  2838. .text.USART_Printf_Init
  2839. 0x000000000000af5c 0x5c ./SRC/Debug/debug.o
  2840. 0x000000000000af5c USART_Printf_Init
  2841. .text._write 0x000000000000afb8 0x50 ./SRC/Debug/debug.o
  2842. 0x000000000000afb8 _write
  2843. .text._sbrk 0x000000000000b008 0x2c ./SRC/Debug/debug.o
  2844. 0x000000000000b008 _sbrk
  2845. .text.devInfo_ReadAttrCB
  2846. 0x000000000000b034 0x1b0 ./Profile/devinfoservice.o
  2847. .text.DevInfo_AddService
  2848. 0x000000000000b1e4 0x16 ./Profile/devinfoservice.o
  2849. 0x000000000000b1e4 DevInfo_AddService
  2850. .text.simpleProfile_ReadAttrCB
  2851. 0x000000000000b1fa 0x7c ./Profile/gattprofile.o
  2852. .text.simpleProfile_WriteAttrCB
  2853. 0x000000000000b276 0x110 ./Profile/gattprofile.o
  2854. .text.simpleProfile_HandleConnStatusCB
  2855. 0x000000000000b386 0x4e ./Profile/gattprofile.o
  2856. .text.SimpleProfile_AddService
  2857. 0x000000000000b3d4 0x58 ./Profile/gattprofile.o
  2858. 0x000000000000b3d4 SimpleProfile_AddService
  2859. .text.SimpleProfile_RegisterAppCBs
  2860. 0x000000000000b42c 0xe ./Profile/gattprofile.o
  2861. 0x000000000000b42c SimpleProfile_RegisterAppCBs
  2862. .text.SimpleProfile_SetParameter
  2863. 0x000000000000b43a 0xa0 ./Profile/gattprofile.o
  2864. 0x000000000000b43a SimpleProfile_SetParameter
  2865. .text.simpleProfileChar4_Notify
  2866. 0x000000000000b4da 0x52 ./Profile/gattprofile.o
  2867. 0x000000000000b4da simpleProfileChar4_Notify
  2868. .text.Lib_Read_Flash
  2869. 0x000000000000b52c 0x1e ./HAL/MCU.o
  2870. 0x000000000000b52c Lib_Read_Flash
  2871. .text.Lib_Write_Flash
  2872. 0x000000000000b54a 0x32 ./HAL/MCU.o
  2873. 0x000000000000b54a Lib_Write_Flash
  2874. .text.HAL_GetInterTempValue
  2875. 0x000000000000b57c 0x16c ./HAL/MCU.o
  2876. 0x000000000000b57c HAL_GetInterTempValue
  2877. .text.HAL_ProcessEvent
  2878. 0x000000000000b6e8 0x8e ./HAL/MCU.o
  2879. 0x000000000000b6e8 HAL_ProcessEvent
  2880. .text.WCHBLE_Init
  2881. 0x000000000000b776 0x134 ./HAL/MCU.o
  2882. 0x000000000000b776 WCHBLE_Init
  2883. .text.HAL_Init
  2884. 0x000000000000b8aa 0x3c ./HAL/MCU.o
  2885. 0x000000000000b8aa HAL_Init
  2886. .text.HAL_TimeInit
  2887. 0x000000000000b8e6 0xb2 ./HAL/RTC.o
  2888. 0x000000000000b8e6 HAL_TimeInit
  2889. .text.RTCAlarm_IRQHandler
  2890. 0x000000000000b998 0x1c ./HAL/RTC.o
  2891. 0x000000000000b998 RTCAlarm_IRQHandler
  2892. .text.log 0x000000000000b9b4 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)
  2893. 0x000000000000b9b4 log
  2894. .text.__ieee754_log
  2895. 0x000000000000bac6 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)
  2896. 0x000000000000bac6 __ieee754_log
  2897. .text.matherr 0x000000000000be9e 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)
  2898. 0x000000000000be9e matherr
  2899. .text.nan 0x000000000000bea2 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)
  2900. 0x000000000000bea2 nan
  2901. .text.__umoddi3
  2902. 0x000000000000beb0 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)
  2903. 0x000000000000beb0 __umoddi3
  2904. .text.__adddf3
  2905. 0x000000000000c23a 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)
  2906. 0x000000000000c23a __adddf3
  2907. .text.__divdf3
  2908. 0x000000000000c96a 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)
  2909. 0x000000000000c96a __divdf3
  2910. .text.__eqdf2 0x000000000000cf1e 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)
  2911. 0x000000000000cf1e __nedf2
  2912. 0x000000000000cf1e __eqdf2
  2913. .text.__gedf2 0x000000000000cf88 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)
  2914. 0x000000000000cf88 __gedf2
  2915. 0x000000000000cf88 __gtdf2
  2916. .text.__muldf3
  2917. 0x000000000000d036 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)
  2918. 0x000000000000d036 __muldf3
  2919. .text.__subdf3
  2920. 0x000000000000d4ee 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)
  2921. 0x000000000000d4ee __subdf3
  2922. .text.__unorddf2
  2923. 0x000000000000dc2c 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)
  2924. 0x000000000000dc2c __unorddf2
  2925. .text.__floatsidf
  2926. 0x000000000000dc68 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)
  2927. 0x000000000000dc68 __floatsidf
  2928. .text.__addsf3
  2929. 0x000000000000dcda 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)
  2930. 0x000000000000dcda __addsf3
  2931. .text.__divsf3
  2932. 0x000000000000e044 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)
  2933. 0x000000000000e044 __divsf3
  2934. .text.__mulsf3
  2935. 0x000000000000e2f6 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)
  2936. 0x000000000000e2f6 __mulsf3
  2937. .text.__subsf3
  2938. 0x000000000000e58a 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)
  2939. 0x000000000000e58a __subsf3
  2940. .text.__fixunssfsi
  2941. 0x000000000000e912 0x56 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(fixunssfsi.o)
  2942. 0x000000000000e912 __fixunssfsi
  2943. .text.__floatsisf
  2944. 0x000000000000e968 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)
  2945. 0x000000000000e968 __floatsisf
  2946. .text.__extendsfdf2
  2947. 0x000000000000ea2e 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)
  2948. 0x000000000000ea2e __extendsfdf2
  2949. .text.__truncdfsf2
  2950. 0x000000000000eada 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)
  2951. 0x000000000000eada __truncdfsf2
  2952. .text.__clzsi2
  2953. 0x000000000000ec44 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)
  2954. 0x000000000000ec44 __clzsi2
  2955. .text.__errno 0x000000000000ecb2 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)
  2956. 0x000000000000ecb2 __errno
  2957. .text.malloc 0x000000000000ecba 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)
  2958. 0x000000000000ecba malloc
  2959. .text.memcpy 0x000000000000ecc4 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)
  2960. 0x000000000000ecc4 memcpy
  2961. .text._free_r 0x000000000000ed76 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)
  2962. 0x000000000000ed76 _free_r
  2963. .text._malloc_r
  2964. 0x000000000000ee1e 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)
  2965. 0x000000000000ee1e _malloc_r
  2966. .text.__cvt 0x000000000000eef8 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)
  2967. 0x000000000000eef8 __cvt
  2968. .text.__exponent
  2969. 0x000000000000efe2 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)
  2970. 0x000000000000efe2 __exponent
  2971. .text._printf_float
  2972. 0x000000000000f066 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)
  2973. 0x000000000000f066 _printf_float
  2974. .text._printf_common
  2975. 0x000000000000f52a 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)
  2976. 0x000000000000f52a _printf_common
  2977. .text._printf_i
  2978. 0x000000000000f636 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)
  2979. 0x000000000000f636 _printf_i
  2980. .text._scanf_float
  2981. 0x000000000000f8da 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)
  2982. 0x000000000000f8da _scanf_float
  2983. .text.printf 0x000000000000fd46 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)
  2984. 0x000000000000fd46 iprintf
  2985. 0x000000000000fd46 printf
  2986. .text._puts_r 0x000000000000fd88 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)
  2987. 0x000000000000fd88 _puts_r
  2988. .text.puts 0x000000000000fe66 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)
  2989. 0x000000000000fe66 puts
  2990. .text._sbrk_r 0x000000000000fe72 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)
  2991. 0x000000000000fe72 _sbrk_r
  2992. .text.nanf 0x000000000000fea4 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)
  2993. 0x000000000000fea4 nanf
  2994. .text.sprintf 0x000000000000feb0 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)
  2995. 0x000000000000feb0 siprintf
  2996. 0x000000000000feb0 sprintf
  2997. .text.sscanf 0x000000000000fef6 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)
  2998. 0x000000000000fef6 siscanf
  2999. 0x000000000000fef6 sscanf
  3000. .text.__sread 0x000000000000ff48 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)
  3001. 0x000000000000ff48 __sread
  3002. .text.__seofread
  3003. 0x000000000000ff76 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)
  3004. 0x000000000000ff76 __seofread
  3005. .text.__swrite
  3006. 0x000000000000ff7a 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)
  3007. 0x000000000000ff7a __swrite
  3008. .text.__sseek 0x000000000000ffc6 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)
  3009. 0x000000000000ffc6 __sseek
  3010. .text.__sclose
  3011. 0x000000000000fff8 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)
  3012. 0x000000000000fff8 __sclose
  3013. .text.strlen 0x0000000000010000 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)
  3014. 0x0000000000010000 strlen
  3015. .text.sulp 0x0000000000010012 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)
  3016. .text._strtod_l
  3017. 0x0000000000010060 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)
  3018. 0x0000000000010060 _strtod_l
  3019. .text._strtod_r
  3020. 0x0000000000010ccc 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)
  3021. 0x0000000000010ccc _strtod_r
  3022. .text._strtol_l.isra.0
  3023. 0x0000000000010cde 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)
  3024. .text._strtol_r
  3025. 0x0000000000010e18 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)
  3026. 0x0000000000010e18 _strtol_r
  3027. .text.__swbuf_r
  3028. 0x0000000000010e2a 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)
  3029. 0x0000000000010e2a __swbuf_r
  3030. .text._write_r
  3031. 0x0000000000010eec 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)
  3032. 0x0000000000010eec _write_r
  3033. .text.__swsetup_r
  3034. 0x0000000000010f22 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)
  3035. 0x0000000000010f22 __swsetup_r
  3036. .text._close_r
  3037. 0x0000000000011024 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)
  3038. 0x0000000000011024 _close_r
  3039. .text.quorem 0x0000000000011056 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)
  3040. .text._dtoa_r 0x0000000000011190 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)
  3041. 0x0000000000011190 _dtoa_r
  3042. .text.__sflush_r
  3043. 0x0000000000011da6 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)
  3044. 0x0000000000011da6 __sflush_r
  3045. .text._fflush_r
  3046. 0x0000000000011ed8 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)
  3047. 0x0000000000011ed8 _fflush_r
  3048. .text.std 0x0000000000011f3e 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)
  3049. .text._cleanup_r
  3050. 0x0000000000011fa4 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)
  3051. 0x0000000000011fa4 _cleanup_r
  3052. .text.__sfmoreglue
  3053. 0x0000000000011fae 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)
  3054. 0x0000000000011fae __sfmoreglue
  3055. .text.__sinit 0x0000000000011ff6 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)
  3056. 0x0000000000011ff6 __sinit
  3057. .text.__sfp 0x0000000000012066 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)
  3058. 0x0000000000012066 __sfp
  3059. .text._fwalk_reent
  3060. 0x000000000001210a 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)
  3061. 0x000000000001210a _fwalk_reent
  3062. .text.rshift 0x0000000000012174 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)
  3063. .text.__hexdig_fun
  3064. 0x00000000000121ea 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)
  3065. 0x00000000000121ea __hexdig_fun
  3066. .text.__gethex
  3067. 0x000000000001222a 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)
  3068. 0x000000000001222a __gethex
  3069. .text.L_shift 0x00000000000126f6 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)
  3070. .text.__match 0x0000000000012722 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)
  3071. 0x0000000000012722 __match
  3072. .text.__hexnan
  3073. 0x0000000000012750 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)
  3074. 0x0000000000012750 __hexnan
  3075. .text.__locale_ctype_ptr_l
  3076. 0x00000000000128ae 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)
  3077. 0x00000000000128ae __locale_ctype_ptr_l
  3078. .text.__locale_ctype_ptr
  3079. 0x00000000000128b4 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)
  3080. 0x00000000000128b4 __locale_ctype_ptr
  3081. .text.__localeconv_l
  3082. 0x00000000000128c8 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)
  3083. 0x00000000000128c8 __localeconv_l
  3084. .text._localeconv_r
  3085. 0x00000000000128ce 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)
  3086. 0x00000000000128ce _localeconv_r
  3087. .text._lseek_r
  3088. 0x00000000000128e2 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)
  3089. 0x00000000000128e2 _lseek_r
  3090. .text.__swhatbuf_r
  3091. 0x0000000000012918 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)
  3092. 0x0000000000012918 __swhatbuf_r
  3093. .text.__smakebuf_r
  3094. 0x0000000000012970 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)
  3095. 0x0000000000012970 __smakebuf_r
  3096. .text.__ascii_mbtowc
  3097. 0x0000000000012a04 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)
  3098. 0x0000000000012a04 __ascii_mbtowc
  3099. .text.memchr 0x0000000000012a36 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)
  3100. 0x0000000000012a36 memchr
  3101. .text.__malloc_lock
  3102. 0x0000000000012a4e 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)
  3103. 0x0000000000012a4e __malloc_lock
  3104. .text.__malloc_unlock
  3105. 0x0000000000012a50 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)
  3106. 0x0000000000012a50 __malloc_unlock
  3107. .text._Balloc 0x0000000000012a52 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)
  3108. 0x0000000000012a52 _Balloc
  3109. .text._Bfree 0x0000000000012ade 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)
  3110. 0x0000000000012ade _Bfree
  3111. .text.__multadd
  3112. 0x0000000000012b22 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)
  3113. 0x0000000000012b22 __multadd
  3114. .text.__s2b 0x0000000000012bba 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)
  3115. 0x0000000000012bba __s2b
  3116. .text.__hi0bits
  3117. 0x0000000000012c5e 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)
  3118. 0x0000000000012c5e __hi0bits
  3119. .text.__lo0bits
  3120. 0x0000000000012ca4 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)
  3121. 0x0000000000012ca4 __lo0bits
  3122. .text.__i2b 0x0000000000012d0e 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)
  3123. 0x0000000000012d0e __i2b
  3124. .text.__multiply
  3125. 0x0000000000012d2a 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)
  3126. 0x0000000000012d2a __multiply
  3127. .text.__pow5mult
  3128. 0x0000000000012e6e 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)
  3129. 0x0000000000012e6e __pow5mult
  3130. .text.__lshift
  3131. 0x0000000000012f2c 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)
  3132. 0x0000000000012f2c __lshift
  3133. .text.__mcmp 0x0000000000012ffa 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)
  3134. 0x0000000000012ffa __mcmp
  3135. .text.__mdiff 0x000000000001302c 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)
  3136. 0x000000000001302c __mdiff
  3137. .text.__ulp 0x000000000001311e 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)
  3138. 0x000000000001311e __ulp
  3139. .text.__b2d 0x0000000000013164 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)
  3140. 0x0000000000013164 __b2d
  3141. .text.__d2b 0x0000000000013218 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)
  3142. 0x0000000000013218 __d2b
  3143. .text.__ratio 0x00000000000132ec 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)
  3144. 0x00000000000132ec __ratio
  3145. .text.__copybits
  3146. 0x0000000000013360 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)
  3147. 0x0000000000013360 __copybits
  3148. .text.__any_on
  3149. 0x0000000000013396 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)
  3150. 0x0000000000013396 __any_on
  3151. .text._calloc_r
  3152. 0x00000000000133dc 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)
  3153. 0x00000000000133dc _calloc_r
  3154. .text._realloc_r
  3155. 0x0000000000013404 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)
  3156. 0x0000000000013404 _realloc_r
  3157. .text.__ssputs_r
  3158. 0x000000000001345e 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)
  3159. 0x000000000001345e __ssputs_r
  3160. .text._svfprintf_r
  3161. 0x0000000000013542 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)
  3162. 0x0000000000013542 _svfiprintf_r
  3163. 0x0000000000013542 _svfprintf_r
  3164. .text._sungetc_r
  3165. 0x00000000000137aa 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)
  3166. 0x00000000000137aa _sungetc_r
  3167. .text.__ssrefill_r
  3168. 0x0000000000013840 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)
  3169. 0x0000000000013840 __ssrefill_r
  3170. .text.__ssvfscanf_r
  3171. 0x0000000000013884 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)
  3172. 0x0000000000013884 __ssvfiscanf_r
  3173. 0x0000000000013884 __ssvfscanf_r
  3174. .text.__sfputc_r
  3175. 0x0000000000013c22 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)
  3176. .text.__sfputs_r
  3177. 0x0000000000013c4a 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)
  3178. 0x0000000000013c4a __sfputs_r
  3179. .text._vfprintf_r
  3180. 0x0000000000013c8c 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)
  3181. 0x0000000000013c8c _vfprintf_r
  3182. 0x0000000000013c8c _vfiprintf_r
  3183. .text._scanf_chars
  3184. 0x0000000000013f18 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)
  3185. 0x0000000000013f18 _scanf_chars
  3186. .text._scanf_i
  3187. 0x0000000000013ffa 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)
  3188. 0x0000000000013ffa _scanf_i
  3189. .text._read_r 0x0000000000014252 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)
  3190. 0x0000000000014252 _read_r
  3191. .text.__sccl 0x0000000000014288 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)
  3192. 0x0000000000014288 __sccl
  3193. .text.strncmp 0x000000000001430a 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)
  3194. 0x000000000001430a strncmp
  3195. .text._strtoul_l.isra.0
  3196. 0x0000000000014332 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)
  3197. .text._strtoul_r
  3198. 0x0000000000014462 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)
  3199. 0x0000000000014462 _strtoul_r
  3200. .text.__submore
  3201. 0x0000000000014474 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)
  3202. 0x0000000000014474 __submore
  3203. .text.__ascii_wctomb
  3204. 0x00000000000144fa 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)
  3205. 0x00000000000144fa __ascii_wctomb
  3206. .text._fstat_r
  3207. 0x0000000000014518 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)
  3208. 0x0000000000014518 _fstat_r
  3209. .text._isatty_r
  3210. 0x000000000001454a 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)
  3211. 0x000000000001454a _isatty_r
  3212. .text.memmove 0x000000000001457a 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)
  3213. 0x000000000001457a memmove
  3214. .text._malloc_usable_size_r
  3215. 0x00000000000145c0 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)
  3216. 0x00000000000145c0 _malloc_usable_size_r
  3217. .text.__ledf2 0x00000000000145d4 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)
  3218. 0x00000000000145d4 __ledf2
  3219. 0x00000000000145d4 __ltdf2
  3220. .text.__fixdfsi
  3221. 0x000000000001468a 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)
  3222. 0x000000000001468a __fixdfsi
  3223. .text.__fixunsdfsi
  3224. 0x00000000000146f2 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)
  3225. 0x00000000000146f2 __fixunsdfsi
  3226. .text.__floatunsidf
  3227. 0x000000000001474e 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)
  3228. 0x000000000001474e __floatunsidf
  3229. .text.__extenddftf2
  3230. 0x00000000000147b6 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)
  3231. 0x00000000000147b6 __extenddftf2
  3232. .text.__trunctfdf2
  3233. 0x0000000000014956 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)
  3234. 0x0000000000014956 __trunctfdf2
  3235. .text._close 0x0000000000014b74 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)
  3236. 0x0000000000014b74 _close
  3237. .text._fstat 0x0000000000014b84 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)
  3238. 0x0000000000014b84 _fstat
  3239. .text._isatty 0x0000000000014b94 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)
  3240. 0x0000000000014b94 _isatty
  3241. .text._lseek 0x0000000000014ba4 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)
  3242. 0x0000000000014ba4 _lseek
  3243. .text._read 0x0000000000014bb4 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)
  3244. 0x0000000000014bb4 _read
  3245. *(.rodata)
  3246. .rodata 0x0000000000014bc4 0x100 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3247. *(.rodata*)
  3248. .rodata.InvSBox
  3249. 0x0000000000014cc4 0x100 ./components/tools/AES_PKCS7.o
  3250. .rodata.SBox 0x0000000000014dc4 0x100 ./components/tools/AES_PKCS7.o
  3251. .rodata.TypeA_Set_BitFraming
  3252. 0x0000000000014ec4 0x34 ./components/nfc/type_a.o
  3253. .rodata.user_nfc_task_process_event
  3254. 0x0000000000014ef8 0x1c ./components/nfc/user_nfc.o
  3255. .rodata.prvUser_nfc_upload_card_stat.str1.4
  3256. 0x0000000000014f14 0x44 ./components/nfc/user_nfc.o
  3257. .rodata.user_nfc_task_process_event.str1.4
  3258. 0x0000000000014f58 0x5f ./components/nfc/user_nfc.o
  3259. *fill* 0x0000000000014fb7 0x1
  3260. .rodata.vUser_nfc_init.str1.4
  3261. 0x0000000000014fb8 0x15 ./components/nfc/user_nfc.o
  3262. *fill* 0x0000000000014fcd 0x3
  3263. .rodata.vUser_nfc_task_start.str1.4
  3264. 0x0000000000014fd0 0x13 ./components/nfc/user_nfc.o
  3265. *fill* 0x0000000000014fe3 0x1
  3266. .rodata.vUser_led_set_view_stat
  3267. 0x0000000000014fe4 0x18 ./components/led/user_led.o
  3268. .rodata.led_task_init.str1.4
  3269. 0x0000000000014ffc 0x10 ./components/led/user_led.o
  3270. .rodata.elect_task_init.str1.4
  3271. 0x000000000001500c 0x12 ./components/electlock/user_elect.o
  3272. *fill* 0x000000000001501e 0x2
  3273. .rodata.User_Config_Read_Config.str1.4
  3274. 0x0000000000015020 0x31 ./components/config/user_config.o
  3275. *fill* 0x0000000000015051 0x3
  3276. .rodata.Get_Temp.cst4
  3277. 0x0000000000015054 0x14 ./components/charge/user_adc.o
  3278. .rodata.adc_init.str1.4
  3279. 0x0000000000015068 0x15 ./components/charge/user_adc.o
  3280. *fill* 0x000000000001507d 0x3
  3281. .rodata.adc_task_process_event.cst4
  3282. 0x0000000000015080 0x8 ./components/charge/user_adc.o
  3283. .rodata.user_charge_init.str1.4
  3284. 0x0000000000015088 0x18 ./components/charge/user_charge.o
  3285. .rodata.vUser_can_init.str1.4
  3286. 0x00000000000150a0 0x15 ./components/can/user_can.o
  3287. *fill* 0x00000000000150b5 0x3
  3288. .rodata.vUser_can_set_addr.str1.4
  3289. 0x00000000000150b8 0xc ./components/can/user_can.o
  3290. .rodata.download_ble_data_callback.str1.4
  3291. 0x00000000000150c4 0x81 ./components/action/ble_action.o
  3292. *fill* 0x0000000000015145 0x3
  3293. .rodata.user_server_task_process_event.str1.4
  3294. 0x0000000000015148 0x1d ./components/action/user_sever.o
  3295. *fill* 0x0000000000015165 0x3
  3296. .rodata.vUser_server_init.str1.4
  3297. 0x0000000000015168 0x18 ./components/action/user_sever.o
  3298. .rodata.main.str1.4
  3299. 0x0000000000015180 0x22 ./User/app_main.o
  3300. *fill* 0x00000000000151a2 0x2
  3301. .rodata.peripheralStateNotificationCB
  3302. 0x00000000000151a4 0x18 ./User/peripheral.o
  3303. .rodata.Peripheral_ProcessEvent.str1.4
  3304. 0x00000000000151bc 0x42 ./User/peripheral.o
  3305. *fill* 0x00000000000151fe 0x2
  3306. .rodata.ble_data_send.str1.4
  3307. 0x0000000000015200 0xf ./User/peripheral.o
  3308. *fill* 0x000000000001520f 0x1
  3309. .rodata.peripheralParamUpdateCB.str1.4
  3310. 0x0000000000015210 0x1e ./User/peripheral.o
  3311. *fill* 0x000000000001522e 0x2
  3312. .rodata.peripheralStateNotificationCB.str1.4
  3313. 0x0000000000015230 0xb7 ./User/peripheral.o
  3314. *fill* 0x00000000000152e7 0x1
  3315. .rodata.devInfo11073Cert
  3316. 0x00000000000152e8 0xe ./Profile/devinfoservice.o
  3317. *fill* 0x00000000000152f6 0x2
  3318. .rodata.devInfoFirmwareRev
  3319. 0x00000000000152f8 0x12 ./Profile/devinfoservice.o
  3320. *fill* 0x000000000001530a 0x2
  3321. .rodata.devInfoHardwareRev
  3322. 0x000000000001530c 0x12 ./Profile/devinfoservice.o
  3323. *fill* 0x000000000001531e 0x2
  3324. .rodata.devInfoMfrName
  3325. 0x0000000000015320 0x12 ./Profile/devinfoservice.o
  3326. *fill* 0x0000000000015332 0x2
  3327. .rodata.devInfoModelNumber
  3328. 0x0000000000015334 0xd ./Profile/devinfoservice.o
  3329. *fill* 0x0000000000015341 0x3
  3330. .rodata.devInfoSerialNumber
  3331. 0x0000000000015344 0xe ./Profile/devinfoservice.o
  3332. *fill* 0x0000000000015352 0x2
  3333. .rodata.devInfoSoftwareRev
  3334. 0x0000000000015354 0x12 ./Profile/devinfoservice.o
  3335. *fill* 0x0000000000015366 0x2
  3336. .rodata.HAL_ProcessEvent.str1.4
  3337. 0x0000000000015368 0x3 ./HAL/MCU.o
  3338. *fill* 0x000000000001536b 0x1
  3339. .rodata.WCHBLE_Init.str1.4
  3340. 0x000000000001536c 0x49 ./HAL/MCU.o
  3341. *fill* 0x00000000000153b5 0x3
  3342. .rodata.HAL_TimeInit.str1.4
  3343. 0x00000000000153b8 0x27 ./HAL/RTC.o
  3344. *fill* 0x00000000000153df 0x1
  3345. .rodata.log.cst8
  3346. 0x00000000000153e0 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)
  3347. .rodata.log.str1.4
  3348. 0x00000000000153f0 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)
  3349. 0x5 (size before relaxing)
  3350. *fill* 0x00000000000153f4 0x4
  3351. .rodata.__ieee754_log.cst8
  3352. 0x00000000000153f8 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)
  3353. .rodata.nan.cst8
  3354. 0x0000000000015470 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)
  3355. .rodata.str1.4
  3356. 0x0000000000015478 0x1a d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3357. *fill* 0x0000000000015492 0x2
  3358. .rodata.str1.4
  3359. 0x0000000000015494 0x41 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3360. *fill* 0x00000000000154d5 0x3
  3361. .rodata.__divdf3
  3362. 0x00000000000154d8 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)
  3363. .rodata.__muldf3
  3364. 0x0000000000015518 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)
  3365. .rodata.__divsf3
  3366. 0x0000000000015558 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)
  3367. .rodata.__mulsf3
  3368. 0x00000000000155d8 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)
  3369. .rodata.__clz_tab
  3370. 0x0000000000015618 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)
  3371. 0x0000000000015618 __clz_tab
  3372. .rodata._printf_float.cst8
  3373. 0x0000000000015718 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)
  3374. .rodata._printf_float.str1.4
  3375. 0x0000000000015720 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)
  3376. *fill* 0x0000000000015732 0x2
  3377. .rodata._printf_i.str1.4
  3378. 0x0000000000015734 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)
  3379. *fill* 0x0000000000015759 0x3
  3380. .rodata._scanf_float.str1.4
  3381. 0x000000000001575c 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)
  3382. *fill* 0x0000000000015761 0x3
  3383. .rodata.nanf.cst4
  3384. 0x0000000000015764 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)
  3385. .rodata._strtod_l
  3386. 0x0000000000015768 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)
  3387. *fill* 0x000000000001577c 0x4
  3388. .rodata._strtod_l.cst8
  3389. 0x0000000000015780 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)
  3390. 0x38 (size before relaxing)
  3391. .rodata._strtod_l.str1.4
  3392. 0x00000000000157a0 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)
  3393. *fill* 0x00000000000157af 0x1
  3394. .rodata.fpi.3395
  3395. 0x00000000000157b0 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)
  3396. .rodata.fpinan.3431
  3397. 0x00000000000157c4 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)
  3398. .rodata.tinytens
  3399. 0x00000000000157d8 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)
  3400. .rodata._dtoa_r.cst8
  3401. 0x0000000000015800 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)
  3402. 0x48 (size before relaxing)
  3403. .rodata._dtoa_r.str1.4
  3404. 0x0000000000015838 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)
  3405. 0x12 (size before relaxing)
  3406. .rodata.__sf_fake_stderr
  3407. 0x0000000000015848 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)
  3408. 0x0000000000015848 __sf_fake_stderr
  3409. .rodata.__sf_fake_stdin
  3410. 0x0000000000015868 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)
  3411. 0x0000000000015868 __sf_fake_stdin
  3412. .rodata.__sf_fake_stdout
  3413. 0x0000000000015888 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)
  3414. 0x0000000000015888 __sf_fake_stdout
  3415. .rodata._setlocale_r.str1.4
  3416. 0x00000000000158a8 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)
  3417. 0xd (size before relaxing)
  3418. .rodata.str1.4
  3419. 0x00000000000158b2 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)
  3420. 0x2 (size before relaxing)
  3421. *fill* 0x00000000000158b2 0x6
  3422. .rodata.__mprec_bigtens
  3423. 0x00000000000158b8 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)
  3424. 0x00000000000158b8 __mprec_bigtens
  3425. .rodata.__mprec_tens
  3426. 0x00000000000158e0 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)
  3427. 0x00000000000158e0 __mprec_tens
  3428. .rodata.p05.3319
  3429. 0x00000000000159a8 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)
  3430. .rodata._svfprintf_r.str1.4
  3431. 0x00000000000159b4 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)
  3432. .rodata.__ssvfscanf_r.str1.4
  3433. 0x00000000000159c7 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)
  3434. .rodata._vfprintf_r.str1.4
  3435. 0x00000000000159c7 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)
  3436. *fill* 0x00000000000159c7 0x1
  3437. .rodata._scanf_i.str1.4
  3438. 0x00000000000159c8 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)
  3439. *fill* 0x00000000000159da 0x2
  3440. .rodata.str1.4
  3441. 0x00000000000159dc 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)
  3442. 0xb (size before relaxing)
  3443. .rodata._ctype_
  3444. 0x00000000000159e8 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)
  3445. 0x00000000000159e8 _ctype_
  3446. *(.sdata2.*)
  3447. *fill* 0x0000000000015ae9 0x3
  3448. .sdata2.Address
  3449. 0x0000000000015aec 0x4 ./User/app_main.o
  3450. 0x0000000000015aec Address
  3451. .sdata2.devInfo11073CertUUID
  3452. 0x0000000000015af0 0x2 ./Profile/devinfoservice.o
  3453. 0x0000000000015af0 devInfo11073CertUUID
  3454. *fill* 0x0000000000015af2 0x2
  3455. .sdata2.devInfoFirmwareRevUUID
  3456. 0x0000000000015af4 0x2 ./Profile/devinfoservice.o
  3457. 0x0000000000015af4 devInfoFirmwareRevUUID
  3458. *fill* 0x0000000000015af6 0x2
  3459. .sdata2.devInfoHardwareRevUUID
  3460. 0x0000000000015af8 0x2 ./Profile/devinfoservice.o
  3461. 0x0000000000015af8 devInfoHardwareRevUUID
  3462. *fill* 0x0000000000015afa 0x2
  3463. .sdata2.devInfoMfrNameUUID
  3464. 0x0000000000015afc 0x2 ./Profile/devinfoservice.o
  3465. 0x0000000000015afc devInfoMfrNameUUID
  3466. *fill* 0x0000000000015afe 0x2
  3467. .sdata2.devInfoModelNumberUUID
  3468. 0x0000000000015b00 0x2 ./Profile/devinfoservice.o
  3469. 0x0000000000015b00 devInfoModelNumberUUID
  3470. *fill* 0x0000000000015b02 0x2
  3471. .sdata2.devInfoPnpIdUUID
  3472. 0x0000000000015b04 0x2 ./Profile/devinfoservice.o
  3473. 0x0000000000015b04 devInfoPnpIdUUID
  3474. *fill* 0x0000000000015b06 0x2
  3475. .sdata2.devInfoSerialNumberUUID
  3476. 0x0000000000015b08 0x2 ./Profile/devinfoservice.o
  3477. 0x0000000000015b08 devInfoSerialNumberUUID
  3478. *fill* 0x0000000000015b0a 0x2
  3479. .sdata2.devInfoServUUID
  3480. 0x0000000000015b0c 0x2 ./Profile/devinfoservice.o
  3481. 0x0000000000015b0c devInfoServUUID
  3482. *fill* 0x0000000000015b0e 0x2
  3483. .sdata2.devInfoService
  3484. 0x0000000000015b10 0x8 ./Profile/devinfoservice.o
  3485. .sdata2.devInfoSoftwareRevUUID
  3486. 0x0000000000015b18 0x2 ./Profile/devinfoservice.o
  3487. 0x0000000000015b18 devInfoSoftwareRevUUID
  3488. *fill* 0x0000000000015b1a 0x2
  3489. .sdata2.devInfoSystemIdUUID
  3490. 0x0000000000015b1c 0x2 ./Profile/devinfoservice.o
  3491. 0x0000000000015b1c devInfoSystemIdUUID
  3492. *fill* 0x0000000000015b1e 0x2
  3493. .sdata2.simpleProfileServUUID
  3494. 0x0000000000015b20 0x2 ./Profile/gattprofile.o
  3495. 0x0000000000015b20 simpleProfileServUUID
  3496. *fill* 0x0000000000015b22 0x2
  3497. .sdata2.simpleProfileService
  3498. 0x0000000000015b24 0x8 ./Profile/gattprofile.o
  3499. .sdata2.simpleProfilechar1UUID
  3500. 0x0000000000015b2c 0x2 ./Profile/gattprofile.o
  3501. 0x0000000000015b2c simpleProfilechar1UUID
  3502. *fill* 0x0000000000015b2e 0x2
  3503. .sdata2.simpleProfilechar2UUID
  3504. 0x0000000000015b30 0x2 ./Profile/gattprofile.o
  3505. 0x0000000000015b30 simpleProfilechar2UUID
  3506. *fill* 0x0000000000015b32 0x2
  3507. .sdata2.simpleProfilechar3UUID
  3508. 0x0000000000015b34 0x2 ./Profile/gattprofile.o
  3509. 0x0000000000015b34 simpleProfilechar3UUID
  3510. *fill* 0x0000000000015b36 0x2
  3511. .sdata2.simpleProfilechar4UUID
  3512. 0x0000000000015b38 0x2 ./Profile/gattprofile.o
  3513. 0x0000000000015b38 simpleProfilechar4UUID
  3514. *fill* 0x0000000000015b3a 0x2
  3515. .sdata2._global_impure_ptr
  3516. 0x0000000000015b3c 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)
  3517. 0x0000000000015b3c _global_impure_ptr
  3518. *(.gnu.linkonce.t.*)
  3519. 0x0000000000015b40 . = ALIGN (0x4)
  3520. .rela.dyn 0x0000000000015b40 0x0
  3521. .rela.init 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3522. .rela.vector 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3523. .rela.text.handle_reset
  3524. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3525. .rela.text._sbrk
  3526. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3527. .rela.sdata.curbrk.4953
  3528. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3529. .rela.got 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3530. .rela.text._sbrk_r
  3531. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3532. .rela.text._write_r
  3533. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3534. .rela.text._close_r
  3535. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3536. .rela.text._lseek_r
  3537. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3538. .rela.text._svfprintf_r
  3539. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3540. .rela.text.__ssvfscanf_r
  3541. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3542. .rela.text._vfprintf_r
  3543. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3544. .rela.text._read_r
  3545. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3546. .rela.text._fstat_r
  3547. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3548. .rela.text._isatty_r
  3549. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3550. .rela.text._close
  3551. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3552. .rela.text._fstat
  3553. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3554. .rela.text._isatty
  3555. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3556. .rela.text._lseek
  3557. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3558. .rela.text._read
  3559. 0x0000000000015b40 0x0 ./components/tools/AES_PKCS7.o
  3560. .fini 0x0000000000015b40 0x0
  3561. *(SORT_NONE(.fini))
  3562. 0x0000000000015b40 . = ALIGN (0x4)
  3563. [!provide] PROVIDE (_etext = .)
  3564. [!provide] PROVIDE (_eitcm = .)
  3565. .preinit_array 0x0000000000015b40 0x0
  3566. [!provide] PROVIDE (__preinit_array_start = .)
  3567. *(.preinit_array)
  3568. [!provide] PROVIDE (__preinit_array_end = .)
  3569. .init_array 0x0000000000015b40 0x0
  3570. [!provide] PROVIDE (__init_array_start = .)
  3571. *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
  3572. *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
  3573. [!provide] PROVIDE (__init_array_end = .)
  3574. .fini_array 0x0000000000015b40 0x0
  3575. [!provide] PROVIDE (__fini_array_start = .)
  3576. *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
  3577. *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
  3578. [!provide] PROVIDE (__fini_array_end = .)
  3579. .ctors
  3580. *crtbegin.o(.ctors)
  3581. *crtbegin?.o(.ctors)
  3582. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
  3583. *(SORT_BY_NAME(.ctors.*))
  3584. *(.ctors)
  3585. .dtors
  3586. *crtbegin.o(.dtors)
  3587. *crtbegin?.o(.dtors)
  3588. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
  3589. *(SORT_BY_NAME(.dtors.*))
  3590. *(.dtors)
  3591. .dalign 0x0000000020004000 0x0 load address 0x0000000000015b40
  3592. 0x0000000020004000 . = ALIGN (0x4)
  3593. 0x0000000020004000 PROVIDE (_data_vma = .)
  3594. .dlalign 0x0000000000015b40 0x0
  3595. 0x0000000000015b40 . = ALIGN (0x4)
  3596. 0x0000000000015b40 PROVIDE (_data_lma = .)
  3597. .data 0x0000000020004000 0x628 load address 0x0000000000015b40
  3598. *(.gnu.linkonce.r.*)
  3599. *(.data .data.*)
  3600. .data.led_work
  3601. 0x0000000020004000 0xc0 ./components/led/user_led.o
  3602. .data.elect_work
  3603. 0x00000000200040c0 0x20 ./components/electlock/user_elect.o
  3604. .data.dipsw_work
  3605. 0x00000000200040e0 0x30 ./components/can/dip_sw.o
  3606. .data.Peripheral_PeripheralCBs
  3607. 0x0000000020004110 0xc ./User/peripheral.o
  3608. .data.advertData
  3609. 0x000000002000411c 0x15 ./User/peripheral.o
  3610. *fill* 0x0000000020004131 0x3
  3611. .data.attDeviceName
  3612. 0x0000000020004134 0x15 ./User/peripheral.o
  3613. *fill* 0x0000000020004149 0x3
  3614. .data.scanRspData
  3615. 0x000000002000414c 0x12 ./User/peripheral.o
  3616. *fill* 0x000000002000415e 0x2
  3617. .data.AHBPrescTable
  3618. 0x0000000020004160 0x10 ./User/system_ch32v20x.o
  3619. 0x0000000020004160 AHBPrescTable
  3620. .data.APBAHBPrescTable
  3621. 0x0000000020004170 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3622. .data.devInfoAttrTbl
  3623. 0x0000000020004180 0x130 ./Profile/devinfoservice.o
  3624. .data.devInfoCBs
  3625. 0x00000000200042b0 0xc ./Profile/devinfoservice.o
  3626. 0x00000000200042b0 devInfoCBs
  3627. .data.simpleProfileAttrTbl
  3628. 0x00000000200042bc 0xe0 ./Profile/gattprofile.o
  3629. .data.simpleProfileCBs
  3630. 0x000000002000439c 0xc ./Profile/gattprofile.o
  3631. 0x000000002000439c simpleProfileCBs
  3632. .data.simpleProfileChar1UserDesp
  3633. 0x00000000200043a8 0x12 ./Profile/gattprofile.o
  3634. *fill* 0x00000000200043ba 0x2
  3635. .data.simpleProfileChar2UserDesp
  3636. 0x00000000200043bc 0x12 ./Profile/gattprofile.o
  3637. *fill* 0x00000000200043ce 0x2
  3638. .data.simpleProfileChar3UserDesp
  3639. 0x00000000200043d0 0x12 ./Profile/gattprofile.o
  3640. *fill* 0x00000000200043e2 0x2
  3641. .data.simpleProfileChar4UserDesp
  3642. 0x00000000200043e4 0x12 ./Profile/gattprofile.o
  3643. *fill* 0x00000000200043f6 0x2
  3644. .data 0x00000000200043f8 0xd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3645. *fill* 0x0000000020004405 0x3
  3646. .data.rel.local
  3647. 0x0000000020004408 0x4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3648. 0x0000000020004408 base64char
  3649. .data.impure_data
  3650. 0x000000002000440c 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)
  3651. .data.__global_locale
  3652. 0x000000002000446c 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)
  3653. 0x000000002000446c __global_locale
  3654. *(.gnu.linkonce.d.*)
  3655. 0x00000000200045d8 . = ALIGN (0x8)
  3656. *(.sdata .sdata.*)
  3657. .sdata.user_nfc_task_id
  3658. 0x00000000200045d8 0x1 ./components/nfc/user_nfc.o
  3659. 0x00000000200045d8 user_nfc_task_id
  3660. .sdata.led_task_id
  3661. 0x00000000200045d9 0x1 ./components/led/user_led.o
  3662. 0x00000000200045d9 led_task_id
  3663. .sdata.elect_task_id
  3664. 0x00000000200045da 0x1 ./components/electlock/user_elect.o
  3665. 0x00000000200045da elect_task_id
  3666. *fill* 0x00000000200045db 0x1
  3667. .sdata.user_config_param
  3668. 0x00000000200045dc 0x6 ./components/config/user_config.o
  3669. 0x00000000200045dc user_config_param
  3670. .sdata.user_charge_task_id
  3671. 0x00000000200045e2 0x1 ./components/charge/user_charge.o
  3672. 0x00000000200045e2 user_charge_task_id
  3673. .sdata.user_can_task_id
  3674. 0x00000000200045e3 0x1 ./components/can/user_can.o
  3675. 0x00000000200045e3 user_can_task_id
  3676. .sdata.can_idx
  3677. 0x00000000200045e4 0x1 ./components/action/user_sever.o
  3678. *fill* 0x00000000200045e5 0x3
  3679. .sdata.offline_timeout
  3680. 0x00000000200045e8 0x4 ./components/action/user_sever.o
  3681. .sdata.rst_timeout
  3682. 0x00000000200045ec 0x1 ./components/action/user_sever.o
  3683. .sdata.user_server_task_id
  3684. 0x00000000200045ed 0x1 ./components/action/user_sever.o
  3685. 0x00000000200045ed user_server_task_id
  3686. *fill* 0x00000000200045ee 0x2
  3687. .sdata.Peripheral_SimpleProfileCBs
  3688. 0x00000000200045f0 0x4 ./User/peripheral.o
  3689. .sdata.Peripheral_TaskID
  3690. 0x00000000200045f4 0x1 ./User/peripheral.o
  3691. .sdata.peripheralMTU
  3692. 0x00000000200045f5 0x1 ./User/peripheral.o
  3693. *fill* 0x00000000200045f6 0x2
  3694. .sdata.SystemCoreClock
  3695. 0x00000000200045f8 0x4 ./User/system_ch32v20x.o
  3696. 0x00000000200045f8 SystemCoreClock
  3697. .sdata.ADCPrescTable
  3698. 0x00000000200045fc 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3699. .sdata.curbrk.4953
  3700. 0x0000000020004600 0x4 ./SRC/Debug/debug.o
  3701. .sdata.devInfo11073CertProps
  3702. 0x0000000020004604 0x1 ./Profile/devinfoservice.o
  3703. .sdata.devInfoFirmwareRevProps
  3704. 0x0000000020004605 0x1 ./Profile/devinfoservice.o
  3705. .sdata.devInfoHardwareRevProps
  3706. 0x0000000020004606 0x1 ./Profile/devinfoservice.o
  3707. .sdata.devInfoMfrNameProps
  3708. 0x0000000020004607 0x1 ./Profile/devinfoservice.o
  3709. .sdata.devInfoModelNumberProps
  3710. 0x0000000020004608 0x1 ./Profile/devinfoservice.o
  3711. *fill* 0x0000000020004609 0x3
  3712. .sdata.devInfoPnpId
  3713. 0x000000002000460c 0x7 ./Profile/devinfoservice.o
  3714. .sdata.devInfoPnpIdProps
  3715. 0x0000000020004613 0x1 ./Profile/devinfoservice.o
  3716. .sdata.devInfoSerialNumberProps
  3717. 0x0000000020004614 0x1 ./Profile/devinfoservice.o
  3718. .sdata.devInfoSoftwareRevProps
  3719. 0x0000000020004615 0x1 ./Profile/devinfoservice.o
  3720. .sdata.devInfoSystemIdProps
  3721. 0x0000000020004616 0x1 ./Profile/devinfoservice.o
  3722. .sdata.simpleProfileChar1Props
  3723. 0x0000000020004617 0x1 ./Profile/gattprofile.o
  3724. .sdata.simpleProfileChar2Props
  3725. 0x0000000020004618 0x1 ./Profile/gattprofile.o
  3726. .sdata.simpleProfileChar3Props
  3727. 0x0000000020004619 0x1 ./Profile/gattprofile.o
  3728. .sdata.simpleProfileChar4Props
  3729. 0x000000002000461a 0x1 ./Profile/gattprofile.o
  3730. *fill* 0x000000002000461b 0x1
  3731. .sdata.__fdlib_version
  3732. 0x000000002000461c 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)
  3733. 0x000000002000461c __fdlib_version
  3734. .sdata._impure_ptr
  3735. 0x0000000020004620 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)
  3736. 0x0000000020004620 _impure_ptr
  3737. *(.gnu.linkonce.s.*)
  3738. 0x0000000020004628 . = ALIGN (0x8)
  3739. *fill* 0x0000000020004624 0x4
  3740. *(.srodata.cst16)
  3741. *(.srodata.cst8)
  3742. *(.srodata.cst4)
  3743. *(.srodata.cst2)
  3744. *(.srodata .srodata.*)
  3745. 0x0000000020004628 . = ALIGN (0x4)
  3746. 0x0000000020004628 PROVIDE (_edata = .)
  3747. .got 0x0000000020004628 0x8 load address 0x0000000000016168
  3748. .got 0x0000000020004628 0x8 ./components/tools/AES_PKCS7.o
  3749. 0x0000000020004628 _GLOBAL_OFFSET_TABLE_
  3750. .got.plt 0x0000000020004630 0x8 load address 0x0000000000016170
  3751. .got.plt 0x0000000020004630 0x8 ./components/tools/AES_PKCS7.o
  3752. .bss 0x0000000020004638 0x23c4 load address 0x0000000000016178
  3753. 0x0000000020004638 . = ALIGN (0x4)
  3754. 0x0000000020004638 PROVIDE (_sbss = .)
  3755. *(.sbss*)
  3756. .sbss.CT 0x0000000020004638 0x2 ./components/nfc/user_nfc.o
  3757. .sbss.nfc_cs_idx
  3758. 0x000000002000463a 0x1 ./components/nfc/user_nfc.o
  3759. *fill* 0x000000002000463b 0x1
  3760. .sbss.xUpload_card_stat
  3761. 0x000000002000463c 0x4 ./components/nfc/user_nfc.o
  3762. .sbss.alarm_stat
  3763. 0x0000000020004640 0x4 ./components/led/user_led.o
  3764. .sbss.elect_start_stat
  3765. 0x0000000020004644 0x1 ./components/electlock/user_elect.o
  3766. *fill* 0x0000000020004645 0x3
  3767. .sbss.xUpload_stat
  3768. 0x0000000020004648 0x4 ./components/electlock/user_elect.o
  3769. .sbss.Calibrattion_Val
  3770. 0x000000002000464c 0x2 ./components/charge/user_adc.o
  3771. *fill* 0x000000002000464e 0x2
  3772. .sbss.adc_data
  3773. 0x0000000020004650 0x4 ./components/charge/user_adc.o
  3774. .sbss.adc_upload
  3775. 0x0000000020004654 0x4 ./components/charge/user_adc.o
  3776. .sbss.xUpload_stat
  3777. 0x0000000020004658 0x4 ./components/charge/user_charge.o
  3778. .sbss.dipsw_addr
  3779. 0x000000002000465c 0x1 ./components/can/dip_sw.o
  3780. *fill* 0x000000002000465d 0x3
  3781. .sbss.dipsw_upload
  3782. 0x0000000020004660 0x4 ./components/can/dip_sw.o
  3783. 0x0000000020004660 dipsw_upload
  3784. .sbss.can_node_id
  3785. 0x0000000020004664 0x1 ./components/can/user_can.o
  3786. *fill* 0x0000000020004665 0x3
  3787. .sbss.xRecv_data
  3788. 0x0000000020004668 0x4 ./components/can/user_can.o
  3789. .sbss.token 0x000000002000466c 0x4 ./components/action/ble_action.o
  3790. .sbss.unixTime
  3791. 0x0000000020004670 0x4 ./components/action/ble_action.o
  3792. .sbss.upload_ble_data
  3793. 0x0000000020004674 0x4 ./components/action/ble_action.o
  3794. .sbss.can_open_data
  3795. 0x0000000020004678 0x8 ./components/action/user_sever.o
  3796. .sbss.offline_stat
  3797. 0x0000000020004680 0x1 ./components/action/user_sever.o
  3798. *fill* 0x0000000020004681 0x3
  3799. .sbss.MacAddr 0x0000000020004684 0x6 ./User/app_main.o
  3800. 0x0000000020004684 MacAddr
  3801. *fill* 0x000000002000468a 0x2
  3802. .sbss.Broadcaster_BroadcasterCBs
  3803. 0x000000002000468c 0x8 ./User/peripheral.o
  3804. .sbss.ble_connect
  3805. 0x0000000020004694 0x4 ./User/peripheral.o
  3806. .sbss.download_ble_data
  3807. 0x0000000020004698 0x4 ./User/peripheral.o
  3808. .sbss.download_ble_file
  3809. 0x000000002000469c 0x4 ./User/peripheral.o
  3810. .sbss.peripheralConnList
  3811. 0x00000000200046a0 0x8 ./User/peripheral.o
  3812. .sbss.NVIC_Priority_Group
  3813. 0x00000000200046a8 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
  3814. 0x00000000200046a8 NVIC_Priority_Group
  3815. .sbss.p_ms 0x00000000200046ac 0x2 ./SRC/Debug/debug.o
  3816. .sbss.p_us 0x00000000200046ae 0x1 ./SRC/Debug/debug.o
  3817. *fill* 0x00000000200046af 0x1
  3818. .sbss.devInfoSystemId
  3819. 0x00000000200046b0 0x8 ./Profile/devinfoservice.o
  3820. .sbss.simpleProfile_AppCBs
  3821. 0x00000000200046b8 0x4 ./Profile/gattprofile.o
  3822. .sbss.g_LLE_IRQLibHandlerLocation
  3823. 0x00000000200046bc 0x4 ./HAL/MCU.o
  3824. 0x00000000200046bc g_LLE_IRQLibHandlerLocation
  3825. .sbss.halTaskID
  3826. 0x00000000200046c0 0x1 ./HAL/MCU.o
  3827. 0x00000000200046c0 halTaskID
  3828. *fill* 0x00000000200046c1 0x3
  3829. .sbss.RTCTigFlag
  3830. 0x00000000200046c4 0x4 ./HAL/RTC.o
  3831. 0x00000000200046c4 RTCTigFlag
  3832. .sbss.__malloc_free_list
  3833. 0x00000000200046c8 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)
  3834. 0x00000000200046c8 __malloc_free_list
  3835. .sbss.__malloc_sbrk_start
  3836. 0x00000000200046cc 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)
  3837. 0x00000000200046cc __malloc_sbrk_start
  3838. *(.gnu.linkonce.sb.*)
  3839. *(.bss*)
  3840. .bss.g_roundKeyTable
  3841. 0x00000000200046d0 0xb0 ./components/tools/AES_PKCS7.o
  3842. .bss.IDA 0x0000000020004780 0xf ./components/nfc/user_nfc.o
  3843. *fill* 0x000000002000478f 0x1
  3844. .bss.nfc_work 0x0000000020004790 0x4c ./components/nfc/user_nfc.o
  3845. .bss.tmpValue 0x00000000200047dc 0x190 ./components/charge/user_adc.o
  3846. .bss.user_can_work
  3847. 0x000000002000496c 0x20 ./components/can/user_can.o
  3848. *fill* 0x000000002000498c 0x4
  3849. .bss.block_buf
  3850. 0x0000000020004990 0x100 ./components/action/ble_action.o
  3851. 0x0000000020004990 block_buf
  3852. .bss.key_data 0x0000000020004a90 0xc ./components/action/user_sever.o
  3853. .bss.MEM_BUF 0x0000000020004a9c 0x1c00 ./User/app_main.o
  3854. 0x0000000020004a9c MEM_BUF
  3855. .bss.Peripheral_BondMgrCBs
  3856. 0x000000002000669c 0xc ./User/peripheral.o
  3857. .bss.simpleProfileChar1
  3858. 0x00000000200066a8 0x100 ./Profile/gattprofile.o
  3859. .bss.simpleProfileChar2
  3860. 0x00000000200067a8 0x100 ./Profile/gattprofile.o
  3861. .bss.simpleProfileChar3
  3862. 0x00000000200068a8 0x100 ./Profile/gattprofile.o
  3863. .bss.simpleProfileChar4
  3864. 0x00000000200069a8 0x40 ./Profile/gattprofile.o
  3865. .bss.simpleProfileChar4Config
  3866. 0x00000000200069e8 0x10 ./Profile/gattprofile.o
  3867. *(.gnu.linkonce.b.*)
  3868. *(COMMON*)
  3869. COMMON 0x00000000200069f8 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)
  3870. 0x00000000200069f8 errno
  3871. 0x00000000200069fc . = ALIGN (0x4)
  3872. 0x00000000200069fc PROVIDE (_ebss = .)
  3873. 0x00000000200069fc PROVIDE (_end = _ebss)
  3874. [!provide] PROVIDE (end = .)
  3875. .stack 0x0000000020010000 0x0
  3876. 0x0000000020010000 PROVIDE (_heap_end = .)
  3877. 0x0000000020010000 . = ALIGN (0x4)
  3878. 0x0000000020010000 PROVIDE (_eusrstack = .)
  3879. OUTPUT(mainboard.elf elf32-littleriscv)
  3880. .debug_info 0x0000000000000000 0x37cca
  3881. .debug_info 0x0000000000000000 0x1170 ./components/tools/AES_PKCS7.o
  3882. .debug_info 0x0000000000001170 0x11e2 ./components/tools/_string.o
  3883. .debug_info 0x0000000000002352 0xb67 ./components/tools/tools.o
  3884. .debug_info 0x0000000000002eb9 0x2000 ./components/nfc/fm175xx.o
  3885. .debug_info 0x0000000000004eb9 0x19e7 ./components/nfc/lpcd.o
  3886. .debug_info 0x00000000000068a0 0x15e7 ./components/nfc/type_a.o
  3887. .debug_info 0x0000000000007e87 0x197e ./components/nfc/user_nfc.o
  3888. .debug_info 0x0000000000009805 0xefe ./components/nfc/user_spi.o
  3889. .debug_info 0x000000000000a703 0x1f15 ./components/led/user_led.o
  3890. .debug_info 0x000000000000c618 0x11bb ./components/electlock/user_elect.o
  3891. .debug_info 0x000000000000d7d3 0xdf9 ./components/config/user_config.o
  3892. .debug_info 0x000000000000e5cc 0x18f4 ./components/charge/user_adc.o
  3893. .debug_info 0x000000000000fec0 0x1015 ./components/charge/user_charge.o
  3894. .debug_info 0x0000000000010ed5 0x10c1 ./components/can/dip_sw.o
  3895. .debug_info 0x0000000000011f96 0x19be ./components/can/user_can.o
  3896. .debug_info 0x0000000000013954 0x1d89 ./components/action/ble_action.o
  3897. .debug_info 0x00000000000156dd 0x1837 ./components/action/user_sever.o
  3898. .debug_info 0x0000000000016f14 0xf5c ./User/app_main.o
  3899. .debug_info 0x0000000000017e70 0xf31 ./User/ch32v20x_it.o
  3900. .debug_info 0x0000000000018da1 0x2de1 ./User/peripheral.o
  3901. .debug_info 0x000000000001bb82 0xb89 ./User/system_ch32v20x.o
  3902. .debug_info 0x000000000001c70b 0x22 ./Startup/startup_ch32v20x_D8W.o
  3903. .debug_info 0x000000000001c72d 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
  3904. .debug_info 0x000000000001de15 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
  3905. .debug_info 0x000000000001f61b 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3906. .debug_info 0x00000000000200af 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
  3907. .debug_info 0x0000000000020dd0 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
  3908. .debug_info 0x00000000000219dd 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
  3909. .debug_info 0x0000000000022fba 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3910. .debug_info 0x000000000002415e 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3911. .debug_info 0x0000000000024cd2 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
  3912. .debug_info 0x0000000000025b68 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
  3913. .debug_info 0x0000000000026bbc 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3914. .debug_info 0x0000000000027e35 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  3915. .debug_info 0x0000000000028df7 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
  3916. .debug_info 0x000000000002a0b8 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
  3917. .debug_info 0x000000000002cb78 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3918. .debug_info 0x000000000002ef8b 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
  3919. .debug_info 0x00000000000302cb 0xf2d ./SRC/Debug/debug.o
  3920. .debug_info 0x00000000000311f8 0x10b9 ./Profile/devinfoservice.o
  3921. .debug_info 0x00000000000322b1 0x1476 ./Profile/gattprofile.o
  3922. .debug_info 0x0000000000033727 0x22 ./LIB/ble_task_scheduler.o
  3923. .debug_info 0x0000000000033749 0x1a85 ./HAL/MCU.o
  3924. .debug_info 0x00000000000351ce 0xd55 ./HAL/RTC.o
  3925. .debug_info 0x0000000000035f23 0x107e d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3926. .debug_info 0x0000000000036fa1 0x161 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3927. .debug_info 0x0000000000037102 0xbc8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3928. .debug_abbrev 0x0000000000000000 0x9feb
  3929. .debug_abbrev 0x0000000000000000 0x408 ./components/tools/AES_PKCS7.o
  3930. .debug_abbrev 0x0000000000000408 0x38e ./components/tools/_string.o
  3931. .debug_abbrev 0x0000000000000796 0x30f ./components/tools/tools.o
  3932. .debug_abbrev 0x0000000000000aa5 0x46e ./components/nfc/fm175xx.o
  3933. .debug_abbrev 0x0000000000000f13 0x428 ./components/nfc/lpcd.o
  3934. .debug_abbrev 0x000000000000133b 0x340 ./components/nfc/type_a.o
  3935. .debug_abbrev 0x000000000000167b 0x508 ./components/nfc/user_nfc.o
  3936. .debug_abbrev 0x0000000000001b83 0x2a4 ./components/nfc/user_spi.o
  3937. .debug_abbrev 0x0000000000001e27 0x4ff ./components/led/user_led.o
  3938. .debug_abbrev 0x0000000000002326 0x3af ./components/electlock/user_elect.o
  3939. .debug_abbrev 0x00000000000026d5 0x377 ./components/config/user_config.o
  3940. .debug_abbrev 0x0000000000002a4c 0x488 ./components/charge/user_adc.o
  3941. .debug_abbrev 0x0000000000002ed4 0x377 ./components/charge/user_charge.o
  3942. .debug_abbrev 0x000000000000324b 0x3ff ./components/can/dip_sw.o
  3943. .debug_abbrev 0x000000000000364a 0x424 ./components/can/user_can.o
  3944. .debug_abbrev 0x0000000000003a6e 0x596 ./components/action/ble_action.o
  3945. .debug_abbrev 0x0000000000004004 0x474 ./components/action/user_sever.o
  3946. .debug_abbrev 0x0000000000004478 0x2bc ./User/app_main.o
  3947. .debug_abbrev 0x0000000000004734 0x2e1 ./User/ch32v20x_it.o
  3948. .debug_abbrev 0x0000000000004a15 0x4a1 ./User/peripheral.o
  3949. .debug_abbrev 0x0000000000004eb6 0x2c0 ./User/system_ch32v20x.o
  3950. .debug_abbrev 0x0000000000005176 0x12 ./Startup/startup_ch32v20x_D8W.o
  3951. .debug_abbrev 0x0000000000005188 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
  3952. .debug_abbrev 0x0000000000005534 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
  3953. .debug_abbrev 0x0000000000005922 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3954. .debug_abbrev 0x0000000000005c19 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
  3955. .debug_abbrev 0x0000000000005f1b 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
  3956. .debug_abbrev 0x00000000000061f5 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
  3957. .debug_abbrev 0x000000000000665d 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3958. .debug_abbrev 0x00000000000069b1 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3959. .debug_abbrev 0x0000000000006c33 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
  3960. .debug_abbrev 0x0000000000006f1d 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
  3961. .debug_abbrev 0x00000000000072b9 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3962. .debug_abbrev 0x000000000000762d 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
  3963. .debug_abbrev 0x0000000000007957 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
  3964. .debug_abbrev 0x0000000000007c7c 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
  3965. .debug_abbrev 0x00000000000080ad 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3966. .debug_abbrev 0x00000000000084f4 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
  3967. .debug_abbrev 0x0000000000008819 0x2f0 ./SRC/Debug/debug.o
  3968. .debug_abbrev 0x0000000000008b09 0x310 ./Profile/devinfoservice.o
  3969. .debug_abbrev 0x0000000000008e19 0x3b7 ./Profile/gattprofile.o
  3970. .debug_abbrev 0x00000000000091d0 0x12 ./LIB/ble_task_scheduler.o
  3971. .debug_abbrev 0x00000000000091e2 0x43e ./HAL/MCU.o
  3972. .debug_abbrev 0x0000000000009620 0x2b4 ./HAL/RTC.o
  3973. .debug_abbrev 0x00000000000098d4 0x37f d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3974. .debug_abbrev 0x0000000000009c53 0xdd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3975. .debug_abbrev 0x0000000000009d30 0x2bb d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3976. .debug_loc 0x0000000000000000 0xfb6b
  3977. .debug_loc 0x0000000000000000 0x753 ./components/tools/AES_PKCS7.o
  3978. .debug_loc 0x0000000000000753 0xdad ./components/tools/_string.o
  3979. .debug_loc 0x0000000000001500 0x12e ./components/tools/tools.o
  3980. .debug_loc 0x000000000000162e 0xfc8 ./components/nfc/fm175xx.o
  3981. .debug_loc 0x00000000000025f6 0x4bb ./components/nfc/lpcd.o
  3982. .debug_loc 0x0000000000002ab1 0x9fc ./components/nfc/type_a.o
  3983. .debug_loc 0x00000000000034ad 0x472 ./components/nfc/user_nfc.o
  3984. .debug_loc 0x000000000000391f 0xb8 ./components/nfc/user_spi.o
  3985. .debug_loc 0x00000000000039d7 0x496 ./components/led/user_led.o
  3986. .debug_loc 0x0000000000003e6d 0x260 ./components/electlock/user_elect.o
  3987. .debug_loc 0x00000000000040cd 0x186 ./components/config/user_config.o
  3988. .debug_loc 0x0000000000004253 0x20d ./components/charge/user_adc.o
  3989. .debug_loc 0x0000000000004460 0x1bd ./components/charge/user_charge.o
  3990. .debug_loc 0x000000000000461d 0xd2 ./components/can/dip_sw.o
  3991. .debug_loc 0x00000000000046ef 0x35b ./components/can/user_can.o
  3992. .debug_loc 0x0000000000004a4a 0x5a2 ./components/action/ble_action.o
  3993. .debug_loc 0x0000000000004fec 0x34d ./components/action/user_sever.o
  3994. .debug_loc 0x0000000000005339 0x69e ./User/peripheral.o
  3995. .debug_loc 0x00000000000059d7 0xc2 ./User/system_ch32v20x.o
  3996. .debug_loc 0x0000000000005a99 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
  3997. .debug_loc 0x0000000000006573 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
  3998. .debug_loc 0x0000000000006f0c 0x6e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3999. .debug_loc 0x0000000000006f7a 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
  4000. .debug_loc 0x00000000000070cf 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
  4001. .debug_loc 0x0000000000007250 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
  4002. .debug_loc 0x0000000000007f12 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4003. .debug_loc 0x0000000000008619 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4004. .debug_loc 0x0000000000008681 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
  4005. .debug_loc 0x00000000000086ae 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
  4006. .debug_loc 0x000000000000894c 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
  4007. .debug_loc 0x00000000000090f9 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
  4008. .debug_loc 0x0000000000009648 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
  4009. .debug_loc 0x0000000000009c11 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
  4010. .debug_loc 0x000000000000b6cd 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4011. .debug_loc 0x000000000000cc73 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
  4012. .debug_loc 0x000000000000d3c5 0x1a8 ./SRC/Debug/debug.o
  4013. .debug_loc 0x000000000000d56d 0x419 ./Profile/devinfoservice.o
  4014. .debug_loc 0x000000000000d986 0xb8e ./Profile/gattprofile.o
  4015. .debug_loc 0x000000000000e514 0x40c ./HAL/MCU.o
  4016. .debug_loc 0x000000000000e920 0x8b ./HAL/RTC.o
  4017. .debug_loc 0x000000000000e9ab 0x559 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4018. .debug_loc 0x000000000000ef04 0x569 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4019. .debug_loc 0x000000000000f46d 0x6fe d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4020. .debug_aranges 0x0000000000000000 0x1948
  4021. .debug_aranges
  4022. 0x0000000000000000 0x58 ./components/tools/AES_PKCS7.o
  4023. .debug_aranges
  4024. 0x0000000000000058 0xc8 ./components/tools/_string.o
  4025. .debug_aranges
  4026. 0x0000000000000120 0x38 ./components/tools/tools.o
  4027. .debug_aranges
  4028. 0x0000000000000158 0xc0 ./components/nfc/fm175xx.o
  4029. .debug_aranges
  4030. 0x0000000000000218 0xc8 ./components/nfc/lpcd.o
  4031. .debug_aranges
  4032. 0x00000000000002e0 0x70 ./components/nfc/type_a.o
  4033. .debug_aranges
  4034. 0x0000000000000350 0x80 ./components/nfc/user_nfc.o
  4035. .debug_aranges
  4036. 0x00000000000003d0 0x28 ./components/nfc/user_spi.o
  4037. .debug_aranges
  4038. 0x00000000000003f8 0x60 ./components/led/user_led.o
  4039. .debug_aranges
  4040. 0x0000000000000458 0x58 ./components/electlock/user_elect.o
  4041. .debug_aranges
  4042. 0x00000000000004b0 0x50 ./components/config/user_config.o
  4043. .debug_aranges
  4044. 0x0000000000000500 0x50 ./components/charge/user_adc.o
  4045. .debug_aranges
  4046. 0x0000000000000550 0x40 ./components/charge/user_charge.o
  4047. .debug_aranges
  4048. 0x0000000000000590 0x60 ./components/can/dip_sw.o
  4049. .debug_aranges
  4050. 0x00000000000005f0 0x50 ./components/can/user_can.o
  4051. .debug_aranges
  4052. 0x0000000000000640 0x98 ./components/action/ble_action.o
  4053. .debug_aranges
  4054. 0x00000000000006d8 0x68 ./components/action/user_sever.o
  4055. .debug_aranges
  4056. 0x0000000000000740 0x28 ./User/app_main.o
  4057. .debug_aranges
  4058. 0x0000000000000768 0x40 ./User/ch32v20x_it.o
  4059. .debug_aranges
  4060. 0x00000000000007a8 0x70 ./User/peripheral.o
  4061. .debug_aranges
  4062. 0x0000000000000818 0x28 ./User/system_ch32v20x.o
  4063. .debug_aranges
  4064. 0x0000000000000840 0x30 ./Startup/startup_ch32v20x_D8W.o
  4065. .debug_aranges
  4066. 0x0000000000000870 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
  4067. .debug_aranges
  4068. 0x00000000000009c0 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
  4069. .debug_aranges
  4070. 0x0000000000000a98 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4071. .debug_aranges
  4072. 0x0000000000000ae0 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
  4073. .debug_aranges
  4074. 0x0000000000000b40 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
  4075. .debug_aranges
  4076. 0x0000000000000b90 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
  4077. .debug_aranges
  4078. 0x0000000000000ca0 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4079. .debug_aranges
  4080. 0x0000000000000d50 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4081. .debug_aranges
  4082. 0x0000000000000d98 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
  4083. .debug_aranges
  4084. 0x0000000000000dc0 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4085. .debug_aranges
  4086. 0x0000000000000e48 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4087. .debug_aranges
  4088. 0x0000000000000f78 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4089. .debug_aranges
  4090. 0x0000000000001000 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4091. .debug_aranges
  4092. 0x00000000000010d0 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
  4093. .debug_aranges
  4094. 0x00000000000013a0 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4095. .debug_aranges
  4096. 0x0000000000001670 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4097. .debug_aranges
  4098. 0x0000000000001760 0x50 ./SRC/Debug/debug.o
  4099. .debug_aranges
  4100. 0x00000000000017b0 0x38 ./Profile/devinfoservice.o
  4101. .debug_aranges
  4102. 0x00000000000017e8 0x58 ./Profile/gattprofile.o
  4103. .debug_aranges
  4104. 0x0000000000001840 0x28 ./LIB/ble_task_scheduler.o
  4105. .debug_aranges
  4106. 0x0000000000001868 0x50 ./HAL/MCU.o
  4107. .debug_aranges
  4108. 0x00000000000018b8 0x30 ./HAL/RTC.o
  4109. .debug_aranges
  4110. 0x00000000000018e8 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4111. .debug_aranges
  4112. 0x0000000000001908 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4113. .debug_aranges
  4114. 0x0000000000001928 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4115. .debug_ranges 0x0000000000000000 0x24c0
  4116. .debug_ranges 0x0000000000000000 0xe0 ./components/tools/AES_PKCS7.o
  4117. .debug_ranges 0x00000000000000e0 0xd8 ./components/tools/_string.o
  4118. .debug_ranges 0x00000000000001b8 0x40 ./components/tools/tools.o
  4119. .debug_ranges 0x00000000000001f8 0x2a8 ./components/nfc/fm175xx.o
  4120. .debug_ranges 0x00000000000004a0 0x140 ./components/nfc/lpcd.o
  4121. .debug_ranges 0x00000000000005e0 0x60 ./components/nfc/type_a.o
  4122. .debug_ranges 0x0000000000000640 0xe0 ./components/nfc/user_nfc.o
  4123. .debug_ranges 0x0000000000000720 0x18 ./components/nfc/user_spi.o
  4124. .debug_ranges 0x0000000000000738 0x178 ./components/led/user_led.o
  4125. .debug_ranges 0x00000000000008b0 0xc8 ./components/electlock/user_elect.o
  4126. .debug_ranges 0x0000000000000978 0x40 ./components/config/user_config.o
  4127. .debug_ranges 0x00000000000009b8 0x60 ./components/charge/user_adc.o
  4128. .debug_ranges 0x0000000000000a18 0x50 ./components/charge/user_charge.o
  4129. .debug_ranges 0x0000000000000a68 0xc0 ./components/can/dip_sw.o
  4130. .debug_ranges 0x0000000000000b28 0x158 ./components/can/user_can.o
  4131. .debug_ranges 0x0000000000000c80 0x1b0 ./components/action/ble_action.o
  4132. .debug_ranges 0x0000000000000e30 0x190 ./components/action/user_sever.o
  4133. .debug_ranges 0x0000000000000fc0 0x18 ./User/app_main.o
  4134. .debug_ranges 0x0000000000000fd8 0x30 ./User/ch32v20x_it.o
  4135. .debug_ranges 0x0000000000001008 0xf8 ./User/peripheral.o
  4136. .debug_ranges 0x0000000000001100 0x38 ./User/system_ch32v20x.o
  4137. .debug_ranges 0x0000000000001138 0x28 ./Startup/startup_ch32v20x_D8W.o
  4138. .debug_ranges 0x0000000000001160 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
  4139. .debug_ranges 0x00000000000012a0 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
  4140. .debug_ranges 0x0000000000001398 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4141. .debug_ranges 0x00000000000013e8 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
  4142. .debug_ranges 0x0000000000001438 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
  4143. .debug_ranges 0x0000000000001478 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  4144. .debug_ranges 0x0000000000001578 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4145. .debug_ranges 0x0000000000001618 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4146. .debug_ranges 0x0000000000001650 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
  4147. .debug_ranges 0x0000000000001698 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4148. .debug_ranges 0x0000000000001710 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4149. .debug_ranges 0x0000000000001830 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4150. .debug_ranges 0x00000000000018a8 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4151. .debug_ranges 0x0000000000001968 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
  4152. .debug_ranges 0x0000000000001c70 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4153. .debug_ranges 0x0000000000001f70 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4154. .debug_ranges 0x0000000000002050 0x40 ./SRC/Debug/debug.o
  4155. .debug_ranges 0x0000000000002090 0x28 ./Profile/devinfoservice.o
  4156. .debug_ranges 0x00000000000020b8 0x128 ./Profile/gattprofile.o
  4157. .debug_ranges 0x00000000000021e0 0x20 ./LIB/ble_task_scheduler.o
  4158. .debug_ranges 0x0000000000002200 0x88 ./HAL/MCU.o
  4159. .debug_ranges 0x0000000000002288 0x20 ./HAL/RTC.o
  4160. .debug_ranges 0x00000000000022a8 0x28 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4161. .debug_ranges 0x00000000000022d0 0x1f0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4162. .debug_line 0x0000000000000000 0x2bd3b
  4163. .debug_line 0x0000000000000000 0xc31 ./components/tools/AES_PKCS7.o
  4164. .debug_line 0x0000000000000c31 0x1222 ./components/tools/_string.o
  4165. .debug_line 0x0000000000001e53 0x5c3 ./components/tools/tools.o
  4166. .debug_line 0x0000000000002416 0x1641 ./components/nfc/fm175xx.o
  4167. .debug_line 0x0000000000003a57 0x132b ./components/nfc/lpcd.o
  4168. .debug_line 0x0000000000004d82 0x12f0 ./components/nfc/type_a.o
  4169. .debug_line 0x0000000000006072 0x156e ./components/nfc/user_nfc.o
  4170. .debug_line 0x00000000000075e0 0x7f0 ./components/nfc/user_spi.o
  4171. .debug_line 0x0000000000007dd0 0x14b1 ./components/led/user_led.o
  4172. .debug_line 0x0000000000009281 0xb15 ./components/electlock/user_elect.o
  4173. .debug_line 0x0000000000009d96 0x7fc ./components/config/user_config.o
  4174. .debug_line 0x000000000000a592 0xdeb ./components/charge/user_adc.o
  4175. .debug_line 0x000000000000b37d 0x883 ./components/charge/user_charge.o
  4176. .debug_line 0x000000000000bc00 0xacf ./components/can/dip_sw.o
  4177. .debug_line 0x000000000000c6cf 0xeb4 ./components/can/user_can.o
  4178. .debug_line 0x000000000000d583 0x1854 ./components/action/ble_action.o
  4179. .debug_line 0x000000000000edd7 0x128c ./components/action/user_sever.o
  4180. .debug_line 0x0000000000010063 0xa16 ./User/app_main.o
  4181. .debug_line 0x0000000000010a79 0x6f2 ./User/ch32v20x_it.o
  4182. .debug_line 0x000000000001116b 0xf8f ./User/peripheral.o
  4183. .debug_line 0x00000000000120fa 0x7e3 ./User/system_ch32v20x.o
  4184. .debug_line 0x00000000000128dd 0x128 ./Startup/startup_ch32v20x_D8W.o
  4185. .debug_line 0x0000000000012a05 0x19e7 ./SRC/Peripheral/src/ch32v20x_adc.o
  4186. .debug_line 0x00000000000143ec 0x1b79 ./SRC/Peripheral/src/ch32v20x_can.o
  4187. .debug_line 0x0000000000015f65 0x49e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4188. .debug_line 0x0000000000016403 0x8f6 ./SRC/Peripheral/src/ch32v20x_dma.o
  4189. .debug_line 0x0000000000016cf9 0x715 ./SRC/Peripheral/src/ch32v20x_exti.o
  4190. .debug_line 0x000000000001740e 0x26a2 ./SRC/Peripheral/src/ch32v20x_flash.o
  4191. .debug_line 0x0000000000019ab0 0x11e0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4192. .debug_line 0x000000000001ac90 0x534 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4193. .debug_line 0x000000000001b1c4 0x51c ./SRC/Peripheral/src/ch32v20x_misc.o
  4194. .debug_line 0x000000000001b6e0 0xcf4 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4195. .debug_line 0x000000000001c3d4 0x132c ./SRC/Peripheral/src/ch32v20x_rcc.o
  4196. .debug_line 0x000000000001d700 0x16ec ./SRC/Peripheral/src/ch32v20x_rtc.o
  4197. .debug_line 0x000000000001edec 0xee0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4198. .debug_line 0x000000000001fccc 0x3354 ./SRC/Peripheral/src/ch32v20x_tim.o
  4199. .debug_line 0x0000000000023020 0x2c8a ./SRC/Peripheral/src/ch32v20x_tim5.o
  4200. .debug_line 0x0000000000025caa 0x1004 ./SRC/Peripheral/src/ch32v20x_usart.o
  4201. .debug_line 0x0000000000026cae 0x8ac ./SRC/Debug/debug.o
  4202. .debug_line 0x000000000002755a 0x934 ./Profile/devinfoservice.o
  4203. .debug_line 0x0000000000027e8e 0xc3f ./Profile/gattprofile.o
  4204. .debug_line 0x0000000000028acd 0x2ef ./LIB/ble_task_scheduler.o
  4205. .debug_line 0x0000000000028dbc 0xf75 ./HAL/MCU.o
  4206. .debug_line 0x0000000000029d31 0x7e0 ./HAL/RTC.o
  4207. .debug_line 0x000000000002a511 0x60d d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4208. .debug_line 0x000000000002ab1e 0x5f4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4209. .debug_line 0x000000000002b112 0xc29 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4210. .debug_str 0x0000000000000000 0x8e44
  4211. .debug_str 0x0000000000000000 0x67e ./components/tools/AES_PKCS7.o
  4212. 0x738 (size before relaxing)
  4213. .debug_str 0x000000000000067e 0x1a8 ./components/tools/_string.o
  4214. 0x78b (size before relaxing)
  4215. .debug_str 0x0000000000000826 0xea ./components/tools/tools.o
  4216. 0x6d0 (size before relaxing)
  4217. .debug_str 0x0000000000000910 0x32b ./components/nfc/fm175xx.o
  4218. 0x9a1 (size before relaxing)
  4219. .debug_str 0x0000000000000c3b 0x2b5 ./components/nfc/lpcd.o
  4220. 0xa8c (size before relaxing)
  4221. .debug_str 0x0000000000000ef0 0x164 ./components/nfc/type_a.o
  4222. 0x808 (size before relaxing)
  4223. .debug_str 0x0000000000001054 0x532 ./components/nfc/user_nfc.o
  4224. 0xd14 (size before relaxing)
  4225. .debug_str 0x0000000000001586 0x19b ./components/nfc/user_spi.o
  4226. 0x984 (size before relaxing)
  4227. .debug_str 0x0000000000001721 0x878 ./components/led/user_led.o
  4228. 0x1138 (size before relaxing)
  4229. .debug_str 0x0000000000001f99 0x1d9 ./components/electlock/user_elect.o
  4230. 0x9dc (size before relaxing)
  4231. .debug_str 0x0000000000002172 0x1ea ./components/config/user_config.o
  4232. 0x858 (size before relaxing)
  4233. .debug_str 0x000000000000235c 0x91c ./components/charge/user_adc.o
  4234. 0x11b1 (size before relaxing)
  4235. .debug_str 0x0000000000002c78 0xec ./components/charge/user_charge.o
  4236. 0xa72 (size before relaxing)
  4237. .debug_str 0x0000000000002d64 0x200 ./components/can/dip_sw.o
  4238. 0xadd (size before relaxing)
  4239. .debug_str 0x0000000000002f64 0x424 ./components/can/user_can.o
  4240. 0x11ec (size before relaxing)
  4241. .debug_str 0x0000000000003388 0x4c7 ./components/action/ble_action.o
  4242. 0xeb0 (size before relaxing)
  4243. .debug_str 0x000000000000384f 0x3b4 ./components/action/user_sever.o
  4244. 0xe8b (size before relaxing)
  4245. .debug_str 0x0000000000003c03 0x108 ./User/app_main.o
  4246. 0xa53 (size before relaxing)
  4247. .debug_str 0x0000000000003d0b 0xce ./User/ch32v20x_it.o
  4248. 0x970 (size before relaxing)
  4249. .debug_str 0x0000000000003dd9 0xe7b ./User/peripheral.o
  4250. 0x1612 (size before relaxing)
  4251. .debug_str 0x0000000000004c54 0xf5 ./User/system_ch32v20x.o
  4252. 0x709 (size before relaxing)
  4253. .debug_str 0x0000000000004d49 0x2e ./Startup/startup_ch32v20x_D8W.o
  4254. 0x84 (size before relaxing)
  4255. .debug_str 0x0000000000004d77 0x454 ./SRC/Peripheral/src/ch32v20x_adc.o
  4256. 0xca5 (size before relaxing)
  4257. .debug_str 0x00000000000051cb 0x2dd ./SRC/Peripheral/src/ch32v20x_can.o
  4258. 0xc49 (size before relaxing)
  4259. .debug_str 0x00000000000054a8 0xcf ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4260. 0x6d4 (size before relaxing)
  4261. .debug_str 0x0000000000005577 0x10c ./SRC/Peripheral/src/ch32v20x_dma.o
  4262. 0x881 (size before relaxing)
  4263. .debug_str 0x0000000000005683 0x1ff ./SRC/Peripheral/src/ch32v20x_exti.o
  4264. 0x81b (size before relaxing)
  4265. .debug_str 0x0000000000005882 0x4ca ./SRC/Peripheral/src/ch32v20x_flash.o
  4266. 0xbad (size before relaxing)
  4267. .debug_str 0x0000000000005d4c 0x24d ./SRC/Peripheral/src/ch32v20x_gpio.o
  4268. 0xa3e (size before relaxing)
  4269. .debug_str 0x0000000000005f99 0x108 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4270. 0x792 (size before relaxing)
  4271. .debug_str 0x00000000000060a1 0x106 ./SRC/Peripheral/src/ch32v20x_misc.o
  4272. 0xb5d (size before relaxing)
  4273. .debug_str 0x00000000000061a7 0x1ee ./SRC/Peripheral/src/ch32v20x_pwr.o
  4274. 0x8ea (size before relaxing)
  4275. .debug_str 0x0000000000006395 0x3d3 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4276. 0xb5c (size before relaxing)
  4277. .debug_str 0x0000000000006768 0x307 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4278. 0x9c3 (size before relaxing)
  4279. .debug_str 0x0000000000006a6f 0x29d ./SRC/Peripheral/src/ch32v20x_spi.o
  4280. 0xb1d (size before relaxing)
  4281. .debug_str 0x0000000000006d0c 0x8a1 ./SRC/Peripheral/src/ch32v20x_tim.o
  4282. 0x1347 (size before relaxing)
  4283. .debug_str 0x00000000000075ad 0x6c9 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4284. 0x13ac (size before relaxing)
  4285. .debug_str 0x0000000000007c76 0x42d ./SRC/Peripheral/src/ch32v20x_usart.o
  4286. 0xb78 (size before relaxing)
  4287. .debug_str 0x00000000000080a3 0xe2 ./SRC/Debug/debug.o
  4288. 0x99f (size before relaxing)
  4289. .debug_str 0x0000000000008185 0x37a ./Profile/devinfoservice.o
  4290. 0xaea (size before relaxing)
  4291. .debug_str 0x00000000000084ff 0x2ba ./Profile/gattprofile.o
  4292. 0xb97 (size before relaxing)
  4293. .debug_str 0x00000000000087b9 0x69 ./LIB/ble_task_scheduler.o
  4294. 0xcb (size before relaxing)
  4295. .debug_str 0x0000000000008822 0x306 ./HAL/MCU.o
  4296. 0x1177 (size before relaxing)
  4297. .debug_str 0x0000000000008b28 0xde ./HAL/RTC.o
  4298. 0x850 (size before relaxing)
  4299. .debug_str 0x0000000000008c06 0x187 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4300. 0x6d2 (size before relaxing)
  4301. .debug_str 0x0000000000008d8d 0x44 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4302. 0x116 (size before relaxing)
  4303. .debug_str 0x0000000000008dd1 0x73 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4304. 0x5d9 (size before relaxing)
  4305. .comment 0x0000000000000000 0x66
  4306. .comment 0x0000000000000000 0x33 ./components/tools/AES_PKCS7.o
  4307. 0x34 (size before relaxing)
  4308. .comment 0x0000000000000033 0x34 ./components/tools/_string.o
  4309. .comment 0x0000000000000033 0x34 ./components/tools/tools.o
  4310. .comment 0x0000000000000033 0x34 ./components/nfc/fm175xx.o
  4311. .comment 0x0000000000000033 0x34 ./components/nfc/lpcd.o
  4312. .comment 0x0000000000000033 0x34 ./components/nfc/type_a.o
  4313. .comment 0x0000000000000033 0x34 ./components/nfc/user_nfc.o
  4314. .comment 0x0000000000000033 0x34 ./components/nfc/user_spi.o
  4315. .comment 0x0000000000000033 0x34 ./components/led/user_led.o
  4316. .comment 0x0000000000000033 0x34 ./components/electlock/user_elect.o
  4317. .comment 0x0000000000000033 0x34 ./components/config/user_config.o
  4318. .comment 0x0000000000000033 0x34 ./components/charge/user_adc.o
  4319. .comment 0x0000000000000033 0x34 ./components/charge/user_charge.o
  4320. .comment 0x0000000000000033 0x34 ./components/can/dip_sw.o
  4321. .comment 0x0000000000000033 0x34 ./components/can/user_can.o
  4322. .comment 0x0000000000000033 0x34 ./components/action/ble_action.o
  4323. .comment 0x0000000000000033 0x34 ./components/action/user_sever.o
  4324. .comment 0x0000000000000033 0x34 ./User/app_main.o
  4325. .comment 0x0000000000000033 0x34 ./User/ch32v20x_it.o
  4326. .comment 0x0000000000000033 0x34 ./User/peripheral.o
  4327. .comment 0x0000000000000033 0x34 ./User/system_ch32v20x.o
  4328. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_adc.o
  4329. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
  4330. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4331. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
  4332. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
  4333. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
  4334. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4335. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4336. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
  4337. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4338. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4339. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4340. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
  4341. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
  4342. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4343. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
  4344. .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
  4345. .comment 0x0000000000000033 0x34 ./Profile/devinfoservice.o
  4346. .comment 0x0000000000000033 0x34 ./Profile/gattprofile.o
  4347. .comment 0x0000000000000033 0x34 ./HAL/MCU.o
  4348. .comment 0x0000000000000033 0x34 ./HAL/RTC.o
  4349. .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)
  4350. 0x34 (size before relaxing)
  4351. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4352. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4353. .debug_frame 0x0000000000000000 0x5c98
  4354. .debug_frame 0x0000000000000000 0x15c ./components/tools/AES_PKCS7.o
  4355. .debug_frame 0x000000000000015c 0x278 ./components/tools/_string.o
  4356. .debug_frame 0x00000000000003d4 0x6c ./components/tools/tools.o
  4357. .debug_frame 0x0000000000000440 0x2cc ./components/nfc/fm175xx.o
  4358. .debug_frame 0x000000000000070c 0x2f0 ./components/nfc/lpcd.o
  4359. .debug_frame 0x00000000000009fc 0x1b8 ./components/nfc/type_a.o
  4360. .debug_frame 0x0000000000000bb4 0x1a8 ./components/nfc/user_nfc.o
  4361. .debug_frame 0x0000000000000d5c 0x60 ./components/nfc/user_spi.o
  4362. .debug_frame 0x0000000000000dbc 0x190 ./components/led/user_led.o
  4363. .debug_frame 0x0000000000000f4c 0x110 ./components/electlock/user_elect.o
  4364. .debug_frame 0x000000000000105c 0xb8 ./components/config/user_config.o
  4365. .debug_frame 0x0000000000001114 0xe4 ./components/charge/user_adc.o
  4366. .debug_frame 0x00000000000011f8 0x88 ./components/charge/user_charge.o
  4367. .debug_frame 0x0000000000001280 0x114 ./components/can/dip_sw.o
  4368. .debug_frame 0x0000000000001394 0x11c ./components/can/user_can.o
  4369. .debug_frame 0x00000000000014b0 0x1c0 ./components/action/ble_action.o
  4370. .debug_frame 0x0000000000001670 0x110 ./components/action/user_sever.o
  4371. .debug_frame 0x0000000000001780 0x40 ./User/app_main.o
  4372. .debug_frame 0x00000000000017c0 0x6c ./User/ch32v20x_it.o
  4373. .debug_frame 0x000000000000182c 0x160 ./User/peripheral.o
  4374. .debug_frame 0x000000000000198c 0x3c ./User/system_ch32v20x.o
  4375. .debug_frame 0x00000000000019c8 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
  4376. .debug_frame 0x0000000000001c84 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
  4377. .debug_frame 0x0000000000001e24 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4378. .debug_frame 0x0000000000001e94 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
  4379. .debug_frame 0x0000000000001f54 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
  4380. .debug_frame 0x0000000000001fe4 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
  4381. .debug_frame 0x0000000000002334 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4382. .debug_frame 0x00000000000024ac 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4383. .debug_frame 0x000000000000251c 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
  4384. .debug_frame 0x000000000000254c 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
  4385. .debug_frame 0x0000000000002648 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4386. .debug_frame 0x0000000000002898 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4387. .debug_frame 0x0000000000002a00 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
  4388. .debug_frame 0x0000000000002bb8 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
  4389. .debug_frame 0x0000000000003220 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4390. .debug_frame 0x0000000000003868 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4391. .debug_frame 0x0000000000003a58 0xc0 ./SRC/Debug/debug.o
  4392. .debug_frame 0x0000000000003b18 0x80 ./Profile/devinfoservice.o
  4393. .debug_frame 0x0000000000003b98 0x154 ./Profile/gattprofile.o
  4394. .debug_frame 0x0000000000003cec 0x11c ./HAL/MCU.o
  4395. .debug_frame 0x0000000000003e08 0x60 ./HAL/RTC.o
  4396. .debug_frame 0x0000000000003e68 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)
  4397. .debug_frame 0x0000000000003eac 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)
  4398. .debug_frame 0x0000000000003f0c 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)
  4399. .debug_frame 0x0000000000003f2c 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)
  4400. .debug_frame 0x0000000000003f4c 0x12c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4401. .debug_frame 0x0000000000004078 0x30 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4402. .debug_frame 0x00000000000040a8 0x4c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4403. .debug_frame 0x00000000000040f4 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)
  4404. .debug_frame 0x0000000000004138 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)
  4405. .debug_frame 0x0000000000004188 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)
  4406. .debug_frame 0x00000000000041a8 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)
  4407. .debug_frame 0x00000000000041c8 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)
  4408. .debug_frame 0x000000000000421c 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)
  4409. .debug_frame 0x0000000000004260 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)
  4410. .debug_frame 0x0000000000004280 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)
  4411. .debug_frame 0x00000000000042b8 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)
  4412. .debug_frame 0x00000000000042f8 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)
  4413. .debug_frame 0x0000000000004348 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)
  4414. .debug_frame 0x0000000000004398 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)
  4415. .debug_frame 0x00000000000043d4 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(fixunssfsi.o)
  4416. .debug_frame 0x00000000000043f4 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)
  4417. .debug_frame 0x000000000000442c 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)
  4418. .debug_frame 0x0000000000004464 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)
  4419. .debug_frame 0x0000000000004484 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)
  4420. .debug_frame 0x00000000000044a4 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)
  4421. .debug_frame 0x00000000000044c4 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)
  4422. .debug_frame 0x00000000000044f4 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)
  4423. .debug_frame 0x0000000000004514 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)
  4424. .debug_frame 0x0000000000004554 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)
  4425. .debug_frame 0x0000000000004594 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)
  4426. .debug_frame 0x0000000000004650 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)
  4427. .debug_frame 0x00000000000046dc 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)
  4428. .debug_frame 0x000000000000473c 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)
  4429. .debug_frame 0x0000000000004790 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)
  4430. .debug_frame 0x00000000000047e4 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)
  4431. .debug_frame 0x0000000000004814 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)
  4432. .debug_frame 0x0000000000004834 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)
  4433. .debug_frame 0x000000000000487c 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)
  4434. .debug_frame 0x00000000000048d0 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)
  4435. .debug_frame 0x0000000000004974 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)
  4436. .debug_frame 0x0000000000004994 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)
  4437. .debug_frame 0x0000000000004ae8 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)
  4438. .debug_frame 0x0000000000004b58 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)
  4439. .debug_frame 0x0000000000004ba8 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)
  4440. .debug_frame 0x0000000000004bd8 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)
  4441. .debug_frame 0x0000000000004c14 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)
  4442. .debug_frame 0x0000000000004c44 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)
  4443. .debug_frame 0x0000000000004cdc 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)
  4444. .debug_frame 0x0000000000004d58 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)
  4445. .debug_frame 0x0000000000004ea0 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)
  4446. .debug_frame 0x0000000000004f28 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)
  4447. .debug_frame 0x0000000000004fac 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)
  4448. .debug_frame 0x000000000000502c 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)
  4449. .debug_frame 0x00000000000050a4 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)
  4450. .debug_frame 0x00000000000050e4 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)
  4451. .debug_frame 0x0000000000005114 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)
  4452. .debug_frame 0x0000000000005178 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)
  4453. .debug_frame 0x00000000000051b0 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)
  4454. .debug_frame 0x00000000000051d0 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)
  4455. .debug_frame 0x0000000000005200 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)
  4456. .debug_frame 0x00000000000054e0 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)
  4457. .debug_frame 0x0000000000005510 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)
  4458. .debug_frame 0x0000000000005550 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)
  4459. .debug_frame 0x0000000000005630 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)
  4460. .debug_frame 0x00000000000056e4 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)
  4461. .debug_frame 0x00000000000057b4 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)
  4462. .debug_frame 0x0000000000005854 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)
  4463. .debug_frame 0x0000000000005884 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)
  4464. .debug_frame 0x00000000000058f4 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)
  4465. .debug_frame 0x0000000000005914 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)
  4466. .debug_frame 0x0000000000005934 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)
  4467. .debug_frame 0x00000000000059a4 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)
  4468. .debug_frame 0x0000000000005a28 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)
  4469. .debug_frame 0x0000000000005a58 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)
  4470. .debug_frame 0x0000000000005a88 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)
  4471. .debug_frame 0x0000000000005ab8 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)
  4472. .debug_frame 0x0000000000005ad8 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)
  4473. .debug_frame 0x0000000000005af8 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)
  4474. .debug_frame 0x0000000000005b18 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)
  4475. .debug_frame 0x0000000000005b38 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)
  4476. .debug_frame 0x0000000000005b58 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)
  4477. .debug_frame 0x0000000000005b90 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)
  4478. .debug_frame 0x0000000000005bcc 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)
  4479. .debug_frame 0x0000000000005bf8 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)
  4480. .debug_frame 0x0000000000005c18 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)
  4481. .debug_frame 0x0000000000005c38 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)
  4482. .debug_frame 0x0000000000005c58 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)
  4483. .debug_frame 0x0000000000005c78 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)
  4484. .stab 0x0000000000000000 0x84
  4485. .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)
  4486. .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)
  4487. 0x24 (size before relaxing)
  4488. .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)
  4489. 0x24 (size before relaxing)
  4490. .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)
  4491. 0x24 (size before relaxing)
  4492. .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)
  4493. 0x24 (size before relaxing)
  4494. .stabstr 0x0000000000000000 0x117
  4495. .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)