mainboard.map 389 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194
  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_CABINET_CONTROL/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_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  15. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (base64_encode)
  16. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  17. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/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_CABINET_CONTROL/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(floatsisf.o)
  47. ./components/tools/my_math.o (__floatsisf)
  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(floatunsisf.o)
  49. ./components/tools/_string.o (__floatunsisf)
  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(extendsfdf2.o)
  51. ./components/tools/tools.o (__extendsfdf2)
  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(truncdfsf2.o)
  53. ./components/tools/tools.o (__truncdfsf2)
  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(_clz.o)
  55. d:/mounriver/mounriver_studio2/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)
  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(_clzsi2.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(adddf3.o) (__clzsi2)
  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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__errno)
  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-impure.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\libg_nano.a(lib_a-errno.o) (_impure_ptr)
  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-malloc.o)
  63. ./components/ws2812b/user_ws2812b.o (malloc)
  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-memcpy.o)
  65. ./components/tools/AES_PKCS7.o (memcpy)
  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-memset.o)
  67. ./components/tools/AES_PKCS7.o (memset)
  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-nano-freer.o)
  69. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  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-mallocr.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) (_malloc_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-vfprintf_float.o)
  73. (_printf_float)
  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_i.o)
  75. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  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-vfscanf_float.o)
  77. (_scanf_float)
  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-printf.o)
  79. ./components/ws2812b/user_ws2812b.o (printf)
  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-puts.o)
  81. ./components/config/user_config.o (puts)
  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-realloc.o)
  83. ./components/tools/_string.o (realloc)
  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-sbrkr.o)
  85. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  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-sf_nan.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-vfscanf_float.o) (nanf)
  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-sprintf.o)
  89. ./components/tools/_string.o (sprintf)
  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-sscanf.o)
  91. ./components/action/ble_action.o (sscanf)
  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-stdio.o)
  93. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  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-strlen.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-nano-vfprintf_float.o) (strlen)
  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-strtod.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-vfscanf_float.o) (_strtod_r)
  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-strtol.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) (_strtol_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-wbuf.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-puts.o) (__swbuf_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-writer.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-stdio.o) (_write_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-wsetup.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-puts.o) (__swsetup_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-closer.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-stdio.o) (_close_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-dtoa.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-nano-vfprintf_float.o) (_dtoa_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-fflush.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-wbuf.o) (_fflush_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-findfp.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-printf.o) (__sinit)
  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-fwalk.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-findfp.o) (_fwalk)
  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-gdtoa-gethex.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-strtod.o) (__gethex)
  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-hexnan.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) (__match)
  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-locale.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-strtol.o) (__locale_ctype_ptr_l)
  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-localeconv.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-strtod.o) (__localeconv_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-lseekr.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-stdio.o) (_lseek_r)
  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-makebuf.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-wsetup.o) (__smakebuf_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-mbtowc_r.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-locale.o) (__ascii_mbtowc)
  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-memchr.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-nano-vfprintf_i.o) (memchr)
  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-mlock.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-freer.o) (__malloc_lock)
  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-mprec.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-strtod.o) (_Balloc)
  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-nano-callocr.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-mprec.o) (_calloc_r)
  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-reallocr.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-realloc.o) (_realloc_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-svfprintf.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-sprintf.o) (_svfprintf_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-svfscanf.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-sscanf.o) (__ssvfscanf_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-vfprintf.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-printf.o) (_vfprintf_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-vfscanf_i.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-nano-svfscanf.o) (_scanf_chars)
  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-readr.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-stdio.o) (_read_r)
  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-reent.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-sbrkr.o) (errno)
  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-sccl.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-nano-svfscanf.o) (__sccl)
  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-strcmp.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-locale.o) (strcmp)
  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-strncmp.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-strtod.o) (strncmp)
  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-strtoul.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-nano-vfscanf_i.o) (_strtoul_r)
  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-ungetc.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-svfscanf.o) (__submore)
  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-wctomb_r.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-locale.o) (__ascii_wctomb)
  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-ctype_.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) (_ctype_)
  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-fstatr.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-makebuf.o) (_fstat_r)
  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-fvwrite.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-nano-vfprintf.o) (__sfvwrite_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-isattyr.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-makebuf.o) (_isatty_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-memmove.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-nano-svfprintf.o) (memmove)
  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-nano-msizer.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-reallocr.o) (_malloc_usable_size_r)
  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/rv32imacxw/ilp32\libgcc.a(ledf2.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-vfprintf_float.o) (__ledf2)
  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(fixdfsi.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-strtod.o) (__fixdfsi)
  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(fixunsdfsi.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) (__fixunsdfsi)
  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(floatunsidf.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) (__floatunsidf)
  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(unordsf2.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) (__unordsf2)
  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(extenddftf2.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-nano-vfscanf_float.o) (__extenddftf2)
  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(trunctfdf2.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-vfprintf_float.o) (__trunctfdf2)
  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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.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-closer.o) (_close)
  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(fstat.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-fstatr.o) (_fstat)
  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(isatty.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-isattyr.o) (_isatty)
  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(lseek.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-lseekr.o) (_lseek)
  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(read.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-readr.o) (_read)
  200. Allocating common symbols
  201. Common symbol size file
  202. 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)
  203. Discarded input sections
  204. .text 0x0000000000000000 0x0 ./components/ws2812b/user_spi.o
  205. .data 0x0000000000000000 0x0 ./components/ws2812b/user_spi.o
  206. .bss 0x0000000000000000 0x0 ./components/ws2812b/user_spi.o
  207. .text 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  208. .data 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  209. .bss 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  210. .text 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  211. .data 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  212. .bss 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
  213. .text 0x0000000000000000 0x0 ./components/tools/_string.o
  214. .data 0x0000000000000000 0x0 ./components/tools/_string.o
  215. .bss 0x0000000000000000 0x0 ./components/tools/_string.o
  216. .text.check_number_start
  217. 0x0000000000000000 0x24 ./components/tools/_string.o
  218. .text._strcpynum
  219. 0x0000000000000000 0x1a ./components/tools/_string.o
  220. .text._strcopy
  221. 0x0000000000000000 0x1e ./components/tools/_string.o
  222. .text._strcat 0x0000000000000000 0x4e ./components/tools/_string.o
  223. .text._strcatint
  224. 0x0000000000000000 0x64 ./components/tools/_string.o
  225. .text._strfindnum
  226. 0x0000000000000000 0x22 ./components/tools/_string.o
  227. .text._strfind
  228. 0x0000000000000000 0x1a ./components/tools/_string.o
  229. .text._strfindchar
  230. 0x0000000000000000 0x4c ./components/tools/_string.o
  231. .text._strcount
  232. 0x0000000000000000 0x24 ./components/tools/_string.o
  233. .text._strCompare
  234. 0x0000000000000000 0x22 ./components/tools/_string.o
  235. .text._get_Hex
  236. 0x0000000000000000 0x40 ./components/tools/_string.o
  237. .text._get_HexChar
  238. 0x0000000000000000 0x22 ./components/tools/_string.o
  239. .text._HexToStr
  240. 0x0000000000000000 0x6e ./components/tools/_string.o
  241. .text.getIndexOfSigns
  242. 0x0000000000000000 0x42 ./components/tools/_string.o
  243. .text._get_HexToDec
  244. 0x0000000000000000 0x38 ./components/tools/_string.o
  245. .text.check_no_number
  246. 0x0000000000000000 0x1e ./components/tools/_string.o
  247. .text.check_is_number
  248. 0x0000000000000000 0x1e ./components/tools/_string.o
  249. .text._my_atof
  250. 0x0000000000000000 0x144 ./components/tools/_string.o
  251. .text._my_atoi
  252. 0x0000000000000000 0x76 ./components/tools/_string.o
  253. .text._my_atou32
  254. 0x0000000000000000 0x58 ./components/tools/_string.o
  255. .rodata.CSWTCH.34
  256. 0x0000000000000000 0xf ./components/tools/_string.o
  257. .rodata._my_atof.cst4
  258. 0x0000000000000000 0x4 ./components/tools/_string.o
  259. .rodata._strcatint.str1.4
  260. 0x0000000000000000 0x3 ./components/tools/_string.o
  261. .text 0x0000000000000000 0x0 ./components/tools/my_math.o
  262. .data 0x0000000000000000 0x0 ./components/tools/my_math.o
  263. .bss 0x0000000000000000 0x0 ./components/tools/my_math.o
  264. .text.sqrt_u16
  265. 0x0000000000000000 0x2c ./components/tools/my_math.o
  266. .text.sqrt_u32
  267. 0x0000000000000000 0xa6 ./components/tools/my_math.o
  268. .text.No_MaxMin_Average_short
  269. 0x0000000000000000 0x60 ./components/tools/my_math.o
  270. .text.Average_short
  271. 0x0000000000000000 0x2e ./components/tools/my_math.o
  272. .text.Average_float
  273. 0x0000000000000000 0x54 ./components/tools/my_math.o
  274. .text.get_MaxMinValue
  275. 0x0000000000000000 0x40 ./components/tools/my_math.o
  276. .text.get_MaxFloatArray
  277. 0x0000000000000000 0x56 ./components/tools/my_math.o
  278. .text.get_float_Variance_Sum
  279. 0x0000000000000000 0x96 ./components/tools/my_math.o
  280. .text.get_float_abs
  281. 0x0000000000000000 0x32 ./components/tools/my_math.o
  282. .text.simpson 0x0000000000000000 0xd6 ./components/tools/my_math.o
  283. .text.Integral
  284. 0x0000000000000000 0xbe ./components/tools/my_math.o
  285. .text.get_int_Variance_Sum
  286. 0x0000000000000000 0x3a ./components/tools/my_math.o
  287. .text.get_ushort_Variance_Sum
  288. 0x0000000000000000 0x3a ./components/tools/my_math.o
  289. .text.Base62_convertToDec
  290. 0x0000000000000000 0x42 ./components/tools/my_math.o
  291. .text.Base62_convertFromDec
  292. 0x0000000000000000 0x30 ./components/tools/my_math.o
  293. .rodata.Average_float.cst4
  294. 0x0000000000000000 0x4 ./components/tools/my_math.o
  295. .rodata.simpson.cst8
  296. 0x0000000000000000 0x18 ./components/tools/my_math.o
  297. .debug_info 0x0000000000000000 0x10ac ./components/tools/my_math.o
  298. .debug_abbrev 0x0000000000000000 0x324 ./components/tools/my_math.o
  299. .debug_loc 0x0000000000000000 0xda0 ./components/tools/my_math.o
  300. .debug_aranges
  301. 0x0000000000000000 0x90 ./components/tools/my_math.o
  302. .debug_ranges 0x0000000000000000 0x1b8 ./components/tools/my_math.o
  303. .debug_line 0x0000000000000000 0x11da ./components/tools/my_math.o
  304. .debug_str 0x0000000000000000 0x7cb ./components/tools/my_math.o
  305. .comment 0x0000000000000000 0x34 ./components/tools/my_math.o
  306. .debug_frame 0x0000000000000000 0x1d8 ./components/tools/my_math.o
  307. .text 0x0000000000000000 0x0 ./components/tools/tools.o
  308. .data 0x0000000000000000 0x0 ./components/tools/tools.o
  309. .bss 0x0000000000000000 0x0 ./components/tools/tools.o
  310. .text.ntc_data
  311. 0x0000000000000000 0x100 ./components/tools/tools.o
  312. .text.xor_data
  313. 0x0000000000000000 0x18 ./components/tools/tools.o
  314. .rodata.ntc_data.cst4
  315. 0x0000000000000000 0x4 ./components/tools/tools.o
  316. .rodata.ntc_data.cst8
  317. 0x0000000000000000 0x38 ./components/tools/tools.o
  318. .text 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  319. .data 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  320. .bss 0x0000000000000000 0x0 ./components/tools/user_crc16.o
  321. .text.GetCRC16
  322. 0x0000000000000000 0x44 ./components/tools/user_crc16.o
  323. .data.auchCRCHi
  324. 0x0000000000000000 0x100 ./components/tools/user_crc16.o
  325. .data.auchCRCLo
  326. 0x0000000000000000 0x100 ./components/tools/user_crc16.o
  327. .debug_info 0x0000000000000000 0xa90 ./components/tools/user_crc16.o
  328. .debug_abbrev 0x0000000000000000 0x21b ./components/tools/user_crc16.o
  329. .debug_loc 0x0000000000000000 0xbb ./components/tools/user_crc16.o
  330. .debug_aranges
  331. 0x0000000000000000 0x20 ./components/tools/user_crc16.o
  332. .debug_ranges 0x0000000000000000 0x10 ./components/tools/user_crc16.o
  333. .debug_line 0x0000000000000000 0x4fe ./components/tools/user_crc16.o
  334. .debug_str 0x0000000000000000 0x685 ./components/tools/user_crc16.o
  335. .comment 0x0000000000000000 0x34 ./components/tools/user_crc16.o
  336. .debug_frame 0x0000000000000000 0x20 ./components/tools/user_crc16.o
  337. .text 0x0000000000000000 0x0 ./components/led/user_led.o
  338. .data 0x0000000000000000 0x0 ./components/led/user_led.o
  339. .bss 0x0000000000000000 0x0 ./components/led/user_led.o
  340. .text 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  341. .data 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  342. .bss 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  343. .text 0x0000000000000000 0x0 ./components/config/user_config.o
  344. .data 0x0000000000000000 0x0 ./components/config/user_config.o
  345. .bss 0x0000000000000000 0x0 ./components/config/user_config.o
  346. .text 0x0000000000000000 0x0 ./components/can/dip_sw.o
  347. .data 0x0000000000000000 0x0 ./components/can/dip_sw.o
  348. .bss 0x0000000000000000 0x0 ./components/can/dip_sw.o
  349. .text 0x0000000000000000 0x0 ./components/can/user_can.o
  350. .data 0x0000000000000000 0x0 ./components/can/user_can.o
  351. .bss 0x0000000000000000 0x0 ./components/can/user_can.o
  352. .text 0x0000000000000000 0x0 ./components/action/ble_action.o
  353. .data 0x0000000000000000 0x0 ./components/action/ble_action.o
  354. .bss 0x0000000000000000 0x0 ./components/action/ble_action.o
  355. .text.get_unixTime
  356. 0x0000000000000000 0xa ./components/action/ble_action.o
  357. .text.set_unixTime
  358. 0x0000000000000000 0xa ./components/action/ble_action.o
  359. .text 0x0000000000000000 0x0 ./components/action/user_sever.o
  360. .data 0x0000000000000000 0x0 ./components/action/user_sever.o
  361. .bss 0x0000000000000000 0x0 ./components/action/user_sever.o
  362. .text.vUser_server_get_cabi_data
  363. 0x0000000000000000 0xa ./components/action/user_sever.o
  364. .text 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  365. .data 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  366. .bss 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  367. .text.app_drv_fifo_length
  368. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  369. .text.app_drv_fifo_init
  370. 0x0000000000000000 0x22 ./User/app_drv_fifo/app_drv_fifo.o
  371. .text.app_drv_fifo_push
  372. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  373. .text.app_drv_fifo_pop
  374. 0x0000000000000000 0x16 ./User/app_drv_fifo/app_drv_fifo.o
  375. .text.app_drv_fifo_flush
  376. 0x0000000000000000 0x6 ./User/app_drv_fifo/app_drv_fifo.o
  377. .text.app_drv_fifo_is_empty
  378. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  379. .text.app_drv_fifo_is_full
  380. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  381. .text.app_drv_fifo_write
  382. 0x0000000000000000 0x62 ./User/app_drv_fifo/app_drv_fifo.o
  383. .text.app_drv_fifo_write_from_same_addr
  384. 0x0000000000000000 0x52 ./User/app_drv_fifo/app_drv_fifo.o
  385. .text.app_drv_fifo_read
  386. 0x0000000000000000 0x54 ./User/app_drv_fifo/app_drv_fifo.o
  387. .text.app_drv_fifo_read_to_same_addr
  388. 0x0000000000000000 0x3e ./User/app_drv_fifo/app_drv_fifo.o
  389. .debug_info 0x0000000000000000 0x5db ./User/app_drv_fifo/app_drv_fifo.o
  390. .debug_abbrev 0x0000000000000000 0x1a8 ./User/app_drv_fifo/app_drv_fifo.o
  391. .debug_loc 0x0000000000000000 0x3a4 ./User/app_drv_fifo/app_drv_fifo.o
  392. .debug_aranges
  393. 0x0000000000000000 0x70 ./User/app_drv_fifo/app_drv_fifo.o
  394. .debug_ranges 0x0000000000000000 0xa8 ./User/app_drv_fifo/app_drv_fifo.o
  395. .debug_line 0x0000000000000000 0x8ac ./User/app_drv_fifo/app_drv_fifo.o
  396. .debug_str 0x0000000000000000 0x479 ./User/app_drv_fifo/app_drv_fifo.o
  397. .comment 0x0000000000000000 0x34 ./User/app_drv_fifo/app_drv_fifo.o
  398. .debug_frame 0x0000000000000000 0xc0 ./User/app_drv_fifo/app_drv_fifo.o
  399. .text 0x0000000000000000 0x0 ./User/app_main.o
  400. .data 0x0000000000000000 0x0 ./User/app_main.o
  401. .bss 0x0000000000000000 0x0 ./User/app_main.o
  402. .text 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  403. .data 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  404. .bss 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  405. .text 0x0000000000000000 0x0 ./User/peripheral.o
  406. .data 0x0000000000000000 0x0 ./User/peripheral.o
  407. .bss 0x0000000000000000 0x0 ./User/peripheral.o
  408. .text 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  409. .data 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  410. .bss 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  411. .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  412. .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  413. .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  414. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  415. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  416. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  417. .text.ADC_StructInit
  418. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  419. .text.ADC_DMACmd
  420. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  421. .text.ADC_ITConfig
  422. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
  423. .text.ADC_ResetCalibration
  424. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  425. .text.ADC_GetResetCalibrationStatus
  426. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  427. .text.ADC_StartCalibration
  428. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  429. .text.ADC_GetCalibrationStatus
  430. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  431. .text.ADC_GetSoftwareStartConvStatus
  432. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  433. .text.ADC_DiscModeChannelCountConfig
  434. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  435. .text.ADC_DiscModeCmd
  436. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  437. .text.ADC_ExternalTrigConvCmd
  438. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  439. .text.ADC_GetDualModeConversionValue
  440. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  441. .text.ADC_AutoInjectedConvCmd
  442. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  443. .text.ADC_InjectedDiscModeCmd
  444. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  445. .text.ADC_ExternalTrigInjectedConvConfig
  446. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
  447. .text.ADC_ExternalTrigInjectedConvCmd
  448. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  449. .text.ADC_SoftwareStartInjectedConvCmd
  450. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  451. .text.ADC_GetSoftwareStartInjectedConvCmdStatus
  452. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  453. .text.ADC_InjectedChannelConfig
  454. 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
  455. .text.ADC_InjectedSequencerLengthConfig
  456. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  457. .text.ADC_SetInjectedOffset
  458. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  459. .text.ADC_GetInjectedConversionValue
  460. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  461. .text.ADC_AnalogWatchdogCmd
  462. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  463. .text.ADC_AnalogWatchdogThresholdsConfig
  464. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
  465. .text.ADC_AnalogWatchdogSingleChannelConfig
  466. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  467. .text.ADC_ClearFlag
  468. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  469. .text.ADC_GetITStatus
  470. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  471. .text.ADC_ClearITPendingBit
  472. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  473. .text.TempSensor_Volt_To_Temper
  474. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
  475. .text.Get_CalibrationValue
  476. 0x0000000000000000 0x142 ./SRC/Peripheral/src/ch32v20x_adc.o
  477. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  478. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  479. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  480. .text.BKP_DeInit
  481. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  482. .text.BKP_TamperPinLevelConfig
  483. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  484. .text.BKP_TamperPinCmd
  485. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  486. .text.BKP_ITConfig
  487. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  488. .text.BKP_RTCOutputConfig
  489. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  490. .text.BKP_SetRTCCalibrationValue
  491. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  492. .text.BKP_WriteBackupRegister
  493. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  494. .text.BKP_ReadBackupRegister
  495. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  496. .text.BKP_GetFlagStatus
  497. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  498. .text.BKP_ClearFlag
  499. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  500. .text.BKP_GetITStatus
  501. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  502. .text.BKP_ClearITPendingBit
  503. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  504. .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
  505. .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
  506. .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
  507. .debug_aranges
  508. 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
  509. .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
  510. .debug_line 0x0000000000000000 0x7ef ./SRC/Peripheral/src/ch32v20x_bkp.o
  511. .debug_str 0x0000000000000000 0xb39 ./SRC/Peripheral/src/ch32v20x_bkp.o
  512. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
  513. .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
  514. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  515. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  516. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  517. .text.CAN_DeInit
  518. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
  519. .text.CAN_StructInit
  520. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
  521. .text.CAN_SlaveStartBank
  522. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
  523. .text.CAN_DBGFreeze
  524. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
  525. .text.CAN_TTComModeCmd
  526. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
  527. .text.CAN_CancelTransmit
  528. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
  529. .text.CAN_FIFORelease
  530. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  531. .text.CAN_MessagePending
  532. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  533. .text.CAN_OperatingModeRequest
  534. 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
  535. .text.CAN_Sleep
  536. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  537. .text.CAN_WakeUp
  538. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
  539. .text.CAN_GetLastErrorCode
  540. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
  541. .text.CAN_GetReceiveErrorCounter
  542. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
  543. .text.CAN_GetLSBTransmitErrorCounter
  544. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
  545. .text.CAN_GetFlagStatus
  546. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
  547. .text.CAN_ClearFlag
  548. 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
  549. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  550. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  551. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  552. .text.CRC_ResetDR
  553. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  554. .text.CRC_CalcCRC
  555. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  556. .text.CRC_CalcBlockCRC
  557. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
  558. .text.CRC_GetCRC
  559. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  560. .text.CRC_SetIDRegister
  561. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  562. .text.CRC_GetIDRegister
  563. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  564. .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
  565. .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
  566. .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
  567. .debug_aranges
  568. 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
  569. .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
  570. .debug_line 0x0000000000000000 0x4e4 ./SRC/Peripheral/src/ch32v20x_crc.o
  571. .debug_str 0x0000000000000000 0x70f ./SRC/Peripheral/src/ch32v20x_crc.o
  572. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
  573. .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
  574. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  575. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  576. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  577. .text.DBGMCU_GetREVID
  578. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  579. .text.DBGMCU_GetDEVID
  580. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  581. .text.__get_DEBUG_CR
  582. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  583. .text.__set_DEBUG_CR
  584. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  585. .text.DBGMCU_Config
  586. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  587. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  588. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  589. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  590. .text.DMA_StructInit
  591. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
  592. .text.DMA_GetCurrDataCounter
  593. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  594. .text.DMA_ClearFlag
  595. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  596. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  597. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  598. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  599. .text.EXTI_DeInit
  600. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
  601. .text.EXTI_Init
  602. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
  603. .text.EXTI_StructInit
  604. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  605. .text.EXTI_GenerateSWInterrupt
  606. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
  607. .text.EXTI_GetFlagStatus
  608. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  609. .text.EXTI_ClearFlag
  610. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  611. .text.EXTI_GetITStatus
  612. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
  613. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  614. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  615. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  616. .text.ROM_ERASE
  617. 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
  618. .text.FLASH_Unlock
  619. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
  620. .text.FLASH_UnlockBank1
  621. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  622. .text.FLASH_Lock
  623. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  624. .text.FLASH_LockBank1
  625. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  626. .text.FLASH_GetUserOptionByte
  627. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
  628. .text.FLASH_GetWriteProtectionOptionByte
  629. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  630. .text.FLASH_GetReadOutProtectionStatus
  631. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
  632. .text.FLASH_ITConfig
  633. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  634. .text.FLASH_GetFlagStatus
  635. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  636. .text.FLASH_ClearFlag
  637. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  638. .text.FLASH_GetStatus
  639. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  640. .text.FLASH_GetBank1Status
  641. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  642. .text.FLASH_WaitForLastOperation
  643. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_flash.o
  644. .text.FLASH_ErasePage
  645. 0x0000000000000000 0x4e ./SRC/Peripheral/src/ch32v20x_flash.o
  646. .text.FLASH_EraseAllPages
  647. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  648. .text.FLASH_EraseAllBank1Pages
  649. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  650. .text.FLASH_EraseOptionBytes
  651. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
  652. .text.FLASH_ProgramWord
  653. 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
  654. .text.FLASH_ProgramHalfWord
  655. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  656. .text.FLASH_ProgramOptionByteData
  657. 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
  658. .text.FLASH_EnableWriteProtection
  659. 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  660. .text.FLASH_ReadOutProtection
  661. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
  662. .text.FLASH_UserOptionByteConfig
  663. 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
  664. .text.FLASH_WaitForLastBank1Operation
  665. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  666. .text.FLASH_EraseBlock_32K_Fast
  667. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
  668. .text.FLASH_Access_Clock_Cfg
  669. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  670. .text.FLASH_Enhance_Mode
  671. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  672. .text.FLASH_ROM_ERASE
  673. 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
  674. .text.FLASH_ROM_WRITE
  675. 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
  676. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  677. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  678. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  679. .text.GPIO_DeInit
  680. 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  681. .text.GPIO_AFIODeInit
  682. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
  683. .text.GPIO_StructInit
  684. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
  685. .text.GPIO_ReadInputData
  686. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  687. .text.GPIO_ReadOutputDataBit
  688. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  689. .text.GPIO_ReadOutputData
  690. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  691. .text.GPIO_SetBits
  692. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  693. .text.GPIO_ResetBits
  694. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  695. .text.GPIO_Write
  696. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  697. .text.GPIO_PinLockConfig
  698. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
  699. .text.GPIO_EventOutputConfig
  700. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
  701. .text.GPIO_EventOutputCmd
  702. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
  703. .text.GPIO_EXTILineConfig
  704. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
  705. .text.GPIO_ETH_MediaInterfaceConfig
  706. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
  707. .text.GPIO_IPD_Unused
  708. 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
  709. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  710. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  711. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  712. .text.I2C_DeInit
  713. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
  714. .text.I2C_Init
  715. 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
  716. .text.I2C_StructInit
  717. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  718. .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  719. .text.I2C_DMACmd
  720. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
  721. .text.I2C_DMALastTransferCmd
  722. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  723. .text.I2C_GenerateSTART
  724. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  725. .text.I2C_GenerateSTOP
  726. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  727. .text.I2C_AcknowledgeConfig
  728. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  729. .text.I2C_OwnAddress2Config
  730. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  731. .text.I2C_DualAddressCmd
  732. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  733. .text.I2C_GeneralCallCmd
  734. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  735. .text.I2C_ITConfig
  736. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  737. .text.I2C_SendData
  738. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  739. .text.I2C_ReceiveData
  740. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  741. .text.I2C_Send7bitAddress
  742. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  743. .text.I2C_ReadRegister
  744. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  745. .text.I2C_SoftwareResetCmd
  746. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  747. .text.I2C_NACKPositionConfig
  748. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
  749. .text.I2C_SMBusAlertConfig
  750. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  751. .text.I2C_TransmitPEC
  752. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  753. .text.I2C_PECPositionConfig
  754. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  755. .text.I2C_CalculatePEC
  756. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  757. .text.I2C_GetPEC
  758. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
  759. .text.I2C_ARPCmd
  760. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  761. .text.I2C_StretchClockCmd
  762. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  763. .text.I2C_FastModeDutyCycleConfig
  764. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  765. .text.I2C_CheckEvent
  766. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  767. .text.I2C_GetLastEvent
  768. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
  769. .text.I2C_GetFlagStatus
  770. 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
  771. .text.I2C_ClearFlag
  772. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  773. .text.I2C_GetITStatus
  774. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
  775. .text.I2C_ClearITPendingBit
  776. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  777. .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
  778. .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
  779. .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  780. .debug_aranges
  781. 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
  782. .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
  783. .debug_line 0x0000000000000000 0x12d0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  784. .debug_str 0x0000000000000000 0xb74 ./SRC/Peripheral/src/ch32v20x_i2c.o
  785. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
  786. .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
  787. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  788. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  789. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  790. .text.IWDG_WriteAccessCmd
  791. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  792. .text.IWDG_SetPrescaler
  793. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  794. .text.IWDG_SetReload
  795. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  796. .text.IWDG_Enable
  797. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  798. .text.IWDG_GetFlagStatus
  799. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  800. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  801. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  802. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  803. .text.NVIC_PriorityGroupConfig
  804. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
  805. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  806. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  807. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  808. .text.OPA_DeInit
  809. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
  810. .text.OPA_Init
  811. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
  812. .text.OPA_StructInit
  813. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
  814. .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
  815. .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
  816. .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
  817. .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
  818. .debug_aranges
  819. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
  820. .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
  821. .debug_line 0x0000000000000000 0x5a9 ./SRC/Peripheral/src/ch32v20x_opa.o
  822. .debug_str 0x0000000000000000 0x74f ./SRC/Peripheral/src/ch32v20x_opa.o
  823. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
  824. .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
  825. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  826. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  827. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  828. .text.PWR_DeInit
  829. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
  830. .text.PWR_PVDCmd
  831. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
  832. .text.PWR_PVDLevelConfig
  833. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
  834. .text.PWR_WakeUpPinCmd
  835. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  836. .text.PWR_EnterSTOPMode
  837. 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
  838. .text.PWR_EnterSTANDBYMode
  839. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  840. .text.PWR_GetFlagStatus
  841. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  842. .text.PWR_ClearFlag
  843. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  844. .text.PWR_EnterSTANDBYMode_RAM
  845. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  846. .text.PWR_EnterSTANDBYMode_RAM_LV
  847. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  848. .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
  849. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  850. .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
  851. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  852. .text.PWR_EnterSTOPMode_RAM_LV
  853. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
  854. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  855. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  856. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  857. .text.RCC_DeInit
  858. 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
  859. .text.RCC_HSEConfig
  860. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  861. .text.RCC_AdjustHSICalibrationValue
  862. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  863. .text.RCC_HSICmd
  864. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  865. .text.RCC_PLLConfig
  866. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  867. .text.RCC_PLLCmd
  868. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  869. .text.RCC_SYSCLKConfig
  870. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  871. .text.RCC_GetSYSCLKSource
  872. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
  873. .text.RCC_HCLKConfig
  874. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  875. .text.RCC_PCLK1Config
  876. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  877. .text.RCC_PCLK2Config
  878. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  879. .text.RCC_ITConfig
  880. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  881. .text.RCC_USBCLKConfig
  882. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  883. .text.RCC_LSICmd
  884. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  885. .text.RCC_APB1PeriphResetCmd
  886. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  887. .text.RCC_BackupResetCmd
  888. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  889. .text.RCC_ClockSecuritySystemCmd
  890. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  891. .text.RCC_MCOConfig
  892. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  893. .text.RCC_WaitForHSEStartUp
  894. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  895. .text.RCC_ClearFlag
  896. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  897. .text.RCC_GetITStatus
  898. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  899. .text.RCC_ClearITPendingBit
  900. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  901. .text.RCC_ADCCLKADJcmd
  902. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
  903. .text.RCC_ETHDIVConfig
  904. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  905. .text.RCC_USB5PRE_JUDGE
  906. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  907. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  908. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  909. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  910. .text.RTC_ITConfig
  911. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
  912. .text.RTC_SetAlarm
  913. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
  914. .text.RTC_GetDivider
  915. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
  916. .text.RTC_WaitForSynchro
  917. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  918. .text.RTC_GetFlagStatus
  919. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  920. .text.RTC_GetITStatus
  921. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
  922. .text.Calibration_LSI
  923. 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  924. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  925. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  926. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  927. .text.SPI_I2S_DeInit
  928. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
  929. .text.I2S_Init
  930. 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
  931. .text.SPI_StructInit
  932. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
  933. .text.I2S_StructInit
  934. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  935. .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  936. .text.SPI_I2S_ITConfig
  937. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
  938. .text.SPI_I2S_SendData
  939. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  940. .text.SPI_I2S_ReceiveData
  941. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  942. .text.SPI_NSSInternalSoftwareConfig
  943. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
  944. .text.SPI_SSOutputCmd
  945. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
  946. .text.SPI_DataSizeConfig
  947. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  948. .text.SPI_TransmitCRC
  949. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  950. .text.SPI_GetCRC
  951. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  952. .text.SPI_GetCRCPolynomial
  953. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  954. .text.SPI_BiDirectionalLineConfig
  955. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  956. .text.SPI_I2S_GetFlagStatus
  957. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  958. .text.SPI_I2S_ClearFlag
  959. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
  960. .text.SPI_I2S_GetITStatus
  961. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
  962. .text.SPI_I2S_ClearITPendingBit
  963. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  964. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  965. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  966. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  967. .text.TI1_Config
  968. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  969. .text.TI2_Config
  970. 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
  971. .text.TIM_DeInit
  972. 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
  973. .text.TIM_TimeBaseStructInit
  974. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  975. .text.TIM_OCStructInit
  976. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
  977. .text.TIM_ICStructInit
  978. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  979. .text.TIM_BDTRStructInit
  980. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
  981. .text.TIM_CtrlPWMOutputs
  982. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  983. .text.TIM_ITConfig
  984. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  985. .text.TIM_GenerateEvent
  986. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  987. .text.TIM_DMAConfig
  988. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  989. .text.TIM_DMACmd
  990. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  991. .text.TIM_InternalClockConfig
  992. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  993. .text.TIM_ITRxExternalClockConfig
  994. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  995. .text.TIM_TIxExternalClockConfig
  996. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
  997. .text.TIM_ETRConfig
  998. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  999. .text.TIM_ETRClockMode1Config
  1000. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
  1001. .text.TIM_ETRClockMode2Config
  1002. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1003. .text.TIM_PrescalerConfig
  1004. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1005. .text.TIM_CounterModeConfig
  1006. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1007. .text.TIM_SelectInputTrigger
  1008. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1009. .text.TIM_EncoderInterfaceConfig
  1010. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
  1011. .text.TIM_ForcedOC1Config
  1012. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1013. .text.TIM_ForcedOC2Config
  1014. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1015. .text.TIM_ForcedOC3Config
  1016. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1017. .text.TIM_ForcedOC4Config
  1018. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1019. .text.TIM_ARRPreloadConfig
  1020. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1021. .text.TIM_SelectCOM
  1022. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1023. .text.TIM_SelectCCDMA
  1024. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1025. .text.TIM_CCPreloadControl
  1026. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1027. .text.TIM_OC1FastConfig
  1028. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1029. .text.TIM_OC2FastConfig
  1030. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1031. .text.TIM_OC3FastConfig
  1032. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1033. .text.TIM_OC4FastConfig
  1034. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1035. .text.TIM_ClearOC1Ref
  1036. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1037. .text.TIM_ClearOC2Ref
  1038. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1039. .text.TIM_ClearOC3Ref
  1040. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1041. .text.TIM_ClearOC4Ref
  1042. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1043. .text.TIM_OC1PolarityConfig
  1044. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1045. .text.TIM_OC1NPolarityConfig
  1046. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1047. .text.TIM_OC2PolarityConfig
  1048. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1049. .text.TIM_OC2NPolarityConfig
  1050. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1051. .text.TIM_OC3PolarityConfig
  1052. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1053. .text.TIM_OC3NPolarityConfig
  1054. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1055. .text.TIM_OC4PolarityConfig
  1056. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1057. .text.TIM_CCxCmd
  1058. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1059. .text.TIM_CCxNCmd
  1060. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1061. .text.TIM_SelectOCxM
  1062. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
  1063. .text.TIM_UpdateDisableConfig
  1064. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1065. .text.TIM_UpdateRequestConfig
  1066. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1067. .text.TIM_SelectHallSensor
  1068. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1069. .text.TIM_SelectOnePulseMode
  1070. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1071. .text.TIM_SelectOutputTrigger
  1072. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1073. .text.TIM_SelectSlaveMode
  1074. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1075. .text.TIM_SelectMasterSlaveMode
  1076. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1077. .text.TIM_SetCounter
  1078. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1079. .text.TIM_SetAutoreload
  1080. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1081. .text.TIM_SetIC1Prescaler
  1082. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1083. .text.TIM_SetIC2Prescaler
  1084. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1085. .text.TIM_PWMIConfig
  1086. 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1087. .text.TIM_SetIC3Prescaler
  1088. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1089. .text.TIM_SetIC4Prescaler
  1090. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1091. .text.TIM_ICInit
  1092. 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
  1093. .text.TIM_SetClockDivision
  1094. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1095. .text.TIM_GetCapture1
  1096. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1097. .text.TIM_GetCapture2
  1098. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1099. .text.TIM_GetCapture3
  1100. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1101. .text.TIM_GetCapture4
  1102. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1103. .text.TIM_GetCounter
  1104. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1105. .text.TIM_GetPrescaler
  1106. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1107. .text.TIM_GetFlagStatus
  1108. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
  1109. .text.TIM_ClearFlag
  1110. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1111. .text.TIM_GetITStatus
  1112. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1113. .text.TIM_ClearITPendingBit
  1114. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1115. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1116. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1117. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1118. .text.TI1_Config
  1119. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1120. .text.TI2_Config
  1121. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1122. .text.TIM5_DeInit
  1123. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1124. .text.TIM5_OC3Init
  1125. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1126. .text.TIM5_OC4Init
  1127. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1128. .text.TIM5_TimeBaseStructInit
  1129. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1130. .text.TIM5_OCStructInit
  1131. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1132. .text.TIM5_ICStructInit
  1133. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1134. .text.TIM5_BDTRStructInit
  1135. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1136. .text.TIM5_Cmd
  1137. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1138. .text.TIM5_CtrlPWMOutputs
  1139. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1140. .text.TIM5_ITConfig
  1141. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1142. .text.TIM5_GenerateEvent
  1143. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1144. .text.TIM5_DMAConfig
  1145. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
  1146. .text.TIM5_DMACmd
  1147. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1148. .text.TIM5_InternalClockConfig
  1149. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1150. .text.TIM5_ITRxExternalClockConfig
  1151. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1152. .text.TIM5_TIxExternalClockConfig
  1153. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1154. .text.TIM5_ETRClockMode1Config
  1155. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1156. .text.TIM5_ETRClockMode2Config
  1157. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1158. .text.TIM5_ETRConfig
  1159. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1160. .text.TIM5_PrescalerConfig
  1161. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
  1162. .text.TIM5_CounterModeConfig
  1163. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1164. .text.TIM5_SelectInputTrigger
  1165. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1166. .text.TIM5_EncoderInterfaceConfig
  1167. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1168. .text.TIM5_ForcedOC1Config
  1169. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1170. .text.TIM5_ForcedOC2Config
  1171. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1172. .text.TIM5_ForcedOC3Config
  1173. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1174. .text.TIM5_ForcedOC4Config
  1175. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1176. .text.TIM5_ARRPreloadConfig
  1177. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1178. .text.TIM5_SelectCOM
  1179. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1180. .text.TIM5_SelectCCDMA
  1181. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1182. .text.TIM5_CCPreloadControl
  1183. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1184. .text.TIM5_OC3PreloadConfig
  1185. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1186. .text.TIM5_OC4PreloadConfig
  1187. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1188. .text.TIM5_OC1FastConfig
  1189. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1190. .text.TIM5_OC2FastConfig
  1191. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1192. .text.TIM5_OC3FastConfig
  1193. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1194. .text.TIM5_OC4FastConfig
  1195. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1196. .text.TIM5_ClearOC1Ref
  1197. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1198. .text.TIM5_ClearOC2Ref
  1199. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1200. .text.TIM5_ClearOC3Ref
  1201. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1202. .text.TIM5_ClearOC4Ref
  1203. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1204. .text.TIM5_OC1PolarityConfig
  1205. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1206. .text.TIM5_OC1NPolarityConfig
  1207. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1208. .text.TIM5_OC2PolarityConfig
  1209. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1210. .text.TIM5_OC2NPolarityConfig
  1211. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1212. .text.TIM5_OC3PolarityConfig
  1213. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1214. .text.TIM5_OC3NPolarityConfig
  1215. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1216. .text.TIM5_OC4PolarityConfig
  1217. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1218. .text.TIM5_CCxCmd
  1219. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1220. .text.TIM5_CCxNCmd
  1221. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1222. .text.TIM5_SelectOCxM
  1223. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1224. .text.TIM5_UpdateDisableConfig
  1225. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1226. .text.TIM5_UpdateRequestConfig
  1227. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1228. .text.TIM5_SelectHallSensor
  1229. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1230. .text.TIM5_SelectOnePulseMode
  1231. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1232. .text.TIM5_SelectOutputTrigger
  1233. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1234. .text.TIM5_SelectSlaveMode
  1235. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1236. .text.TIM5_SelectMasterSlaveMode
  1237. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1238. .text.TIM5_SetCounter
  1239. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1240. .text.TIM5_SetAutoreload
  1241. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1242. .text.TIM5_SetCompare3
  1243. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1244. .text.TIM5_SetCompare4
  1245. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1246. .text.TIM5_SetIC1Prescaler
  1247. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1248. .text.TIM5_SetIC2Prescaler
  1249. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1250. .text.TIM5_PWMIConfig
  1251. 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1252. .text.TIM5_SetIC3Prescaler
  1253. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1254. .text.TIM5_SetIC4Prescaler
  1255. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1256. .text.TIM5_ICInit
  1257. 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1258. .text.TIM5_SetClockDivision
  1259. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1260. .text.TIM5_GetCapture1
  1261. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1262. .text.TIM5_GetCapture2
  1263. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1264. .text.TIM5_GetCapture3
  1265. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1266. .text.TIM5_GetCapture4
  1267. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1268. .text.TIM5_GetCounter
  1269. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1270. .text.TIM5_GetPrescaler
  1271. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1272. .text.TIM5_GetFlagStatus
  1273. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1274. .text.TIM5_ClearFlag
  1275. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1276. .text.TIM5_GetITStatus
  1277. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1278. .text.TIM5_ClearITPendingBit
  1279. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1280. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1281. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1282. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1283. .text.USART_DeInit
  1284. 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
  1285. .text.USART_StructInit
  1286. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1287. .text.USART_ClockInit
  1288. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
  1289. .text.USART_ClockStructInit
  1290. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1291. .text.USART_ITConfig
  1292. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
  1293. .text.USART_DMACmd
  1294. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1295. .text.USART_SetAddress
  1296. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1297. .text.USART_WakeUpConfig
  1298. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1299. .text.USART_ReceiverWakeUpCmd
  1300. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1301. .text.USART_LINBreakDetectLengthConfig
  1302. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1303. .text.USART_LINCmd
  1304. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1305. .text.USART_ReceiveData
  1306. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1307. .text.USART_SendBreak
  1308. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1309. .text.USART_SetGuardTime
  1310. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1311. .text.USART_SetPrescaler
  1312. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1313. .text.USART_SmartCardCmd
  1314. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
  1315. .text.USART_SmartCardNACKCmd
  1316. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1317. .text.USART_HalfDuplexCmd
  1318. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1319. .text.USART_IrDAConfig
  1320. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1321. .text.USART_IrDACmd
  1322. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1323. .text.USART_ClearFlag
  1324. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
  1325. .text.USART_GetITStatus
  1326. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
  1327. .text.USART_ClearITPendingBit
  1328. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1329. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1330. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1331. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1332. .text.WWDG_DeInit
  1333. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1334. .text.WWDG_SetPrescaler
  1335. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1336. .text.WWDG_SetWindowValue
  1337. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1338. .text.WWDG_EnableIT
  1339. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1340. .text.WWDG_SetCounter
  1341. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1342. .text.WWDG_Enable
  1343. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1344. .text.WWDG_GetFlagStatus
  1345. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1346. .text.WWDG_ClearFlag
  1347. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1348. .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1349. .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1350. .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1351. .debug_aranges
  1352. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1353. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1354. .debug_line 0x0000000000000000 0x61e ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1355. .debug_str 0x0000000000000000 0x746 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1356. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1357. .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1358. .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1359. .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1360. .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1361. .text.SDI_Printf_Enable
  1362. 0x0000000000000000 0x22 ./SRC/Debug/debug.o
  1363. .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1364. .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1365. .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1366. .text.__get_MSTATUS
  1367. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1368. .text.__set_MSTATUS
  1369. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1370. .text.__get_MISA
  1371. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1372. .text.__set_MISA
  1373. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1374. .text.__get_MTVEC
  1375. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1376. .text.__set_MTVEC
  1377. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1378. .text.__get_MSCRATCH
  1379. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1380. .text.__set_MSCRATCH
  1381. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1382. .text.__get_MEPC
  1383. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1384. .text.__set_MEPC
  1385. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1386. .text.__get_MCAUSE
  1387. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1388. .text.__set_MCAUSE
  1389. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1390. .text.__get_MTVAL
  1391. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1392. .text.__set_MTVAL
  1393. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1394. .text.__get_MVENDORID
  1395. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1396. .text.__get_MARCHID
  1397. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1398. .text.__get_MIMPID
  1399. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1400. .text.__get_MHARTID
  1401. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1402. .text.__get_SP
  1403. 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
  1404. .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
  1405. .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
  1406. .debug_aranges
  1407. 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
  1408. .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
  1409. .debug_line 0x0000000000000000 0x4f6 ./SRC/Core/core_riscv.o
  1410. .debug_str 0x0000000000000000 0x330 ./SRC/Core/core_riscv.o
  1411. .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
  1412. .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
  1413. .text 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1414. .data 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1415. .bss 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1416. .text.DevInfo_SetParameter
  1417. 0x0000000000000000 0x28 ./Profile/devinfoservice.o
  1418. .text.DevInfo_GetParameter
  1419. 0x0000000000000000 0xce ./Profile/devinfoservice.o
  1420. .rodata.DevInfo_GetParameter
  1421. 0x0000000000000000 0x24 ./Profile/devinfoservice.o
  1422. .text 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1423. .data 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1424. .bss 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1425. .text.SimpleProfile_GetParameter
  1426. 0x0000000000000000 0x78 ./Profile/gattprofile.o
  1427. .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1428. .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1429. .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1430. .text 0x0000000000000000 0x0 ./HAL/MCU.o
  1431. .data 0x0000000000000000 0x0 ./HAL/MCU.o
  1432. .bss 0x0000000000000000 0x0 ./HAL/MCU.o
  1433. .text.Lib_Calibration_LSI
  1434. 0x0000000000000000 0xa ./HAL/MCU.o
  1435. .text 0x0000000000000000 0x0 ./HAL/RTC.o
  1436. .data 0x0000000000000000 0x0 ./HAL/RTC.o
  1437. .bss 0x0000000000000000 0x0 ./HAL/RTC.o
  1438. .text.RTC_SetTignTime
  1439. 0x0000000000000000 0x2e ./HAL/RTC.o
  1440. .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1441. .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1442. .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1443. .text.BLE_LowPower
  1444. 0x0000000000000000 0x4 ./HAL/SLEEP.o
  1445. .text.HAL_SleepInit
  1446. 0x0000000000000000 0x2 ./HAL/SLEEP.o
  1447. .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
  1448. .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
  1449. .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
  1450. .debug_aranges
  1451. 0x0000000000000000 0x28 ./HAL/SLEEP.o
  1452. .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
  1453. .debug_line 0x0000000000000000 0x407 ./HAL/SLEEP.o
  1454. .debug_str 0x0000000000000000 0x68b ./HAL/SLEEP.o
  1455. .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
  1456. .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
  1457. .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)
  1458. .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)
  1459. .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)
  1460. .text.log 0x0000000000000000 0x14a d:/mounriver/mounriver_studio2/resources/app/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)
  1461. .rodata.log.cst8
  1462. 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\libm.a(lib_a-w_log.o)
  1463. .rodata.log.str1.4
  1464. 0x0000000000000000 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\libm.a(lib_a-w_log.o)
  1465. .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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1466. .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)
  1467. .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)
  1468. .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)
  1469. .text.__ieee754_log
  1470. 0x0000000000000000 0x4ba d:/mounriver/mounriver_studio2/resources/app/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)
  1471. .rodata.__ieee754_log.cst8
  1472. 0x0000000000000000 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)
  1473. .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\libm.a(lib_a-e_log.o)
  1474. .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)
  1475. .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)
  1476. .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)
  1477. .sdata.__fdlib_version
  1478. 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\libm.a(lib_a-s_lib_ver.o)
  1479. .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)
  1480. .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)
  1481. .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)
  1482. .text.matherr 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\libm.a(lib_a-s_matherr.o)
  1483. .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\libm.a(lib_a-s_matherr.o)
  1484. .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)
  1485. .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)
  1486. .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)
  1487. .text.nan 0x0000000000000000 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)
  1488. .rodata.nan.cst8
  1489. 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\libm.a(lib_a-s_nan.o)
  1490. .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\libm.a(lib_a-s_nan.o)
  1491. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  1492. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  1493. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  1494. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1495. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1496. .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)
  1497. .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)
  1498. .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)
  1499. .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)
  1500. .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)
  1501. .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)
  1502. .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)
  1503. .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)
  1504. .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)
  1505. .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)
  1506. .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)
  1507. .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)
  1508. .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)
  1509. .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)
  1510. .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)
  1511. .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)
  1512. .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)
  1513. .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)
  1514. .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)
  1515. .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)
  1516. .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)
  1517. .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)
  1518. .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)
  1519. .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)
  1520. .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)
  1521. .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)
  1522. .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)
  1523. .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)
  1524. .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)
  1525. .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)
  1526. .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)
  1527. .text.__addsf3
  1528. 0x0000000000000000 0x36e d:/mounriver/mounriver_studio2/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)
  1529. .debug_frame 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/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  1530. .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)
  1531. .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)
  1532. .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)
  1533. .text.__divsf3
  1534. 0x0000000000000000 0x2ba d:/mounriver/mounriver_studio2/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)
  1535. .rodata.__divsf3
  1536. 0x0000000000000000 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)
  1537. .debug_frame 0x0000000000000000 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)
  1538. .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)
  1539. .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)
  1540. .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)
  1541. .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)
  1542. .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)
  1543. .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)
  1544. .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)
  1545. .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)
  1546. .text.__mulsf3
  1547. 0x0000000000000000 0x29c d:/mounriver/mounriver_studio2/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)
  1548. .rodata.__mulsf3
  1549. 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/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  1550. .debug_frame 0x0000000000000000 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)
  1551. .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)
  1552. .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)
  1553. .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)
  1554. .text.__subsf3
  1555. 0x0000000000000000 0x38e d:/mounriver/mounriver_studio2/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)
  1556. .debug_frame 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(subsf3.o)
  1557. .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)
  1558. .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)
  1559. .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)
  1560. .text.__floatsisf
  1561. 0x0000000000000000 0xcc d:/mounriver/mounriver_studio2/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)
  1562. .debug_frame 0x0000000000000000 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)
  1563. .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)
  1564. .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)
  1565. .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)
  1566. .text.__floatunsisf
  1567. 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)
  1568. .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)
  1569. .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)
  1570. .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)
  1571. .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)
  1572. .text.__extendsfdf2
  1573. 0x0000000000000000 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/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  1574. .debug_frame 0x0000000000000000 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)
  1575. .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)
  1576. .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)
  1577. .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)
  1578. .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)
  1579. .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)
  1580. .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)
  1581. .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)
  1582. .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)
  1583. .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)
  1584. .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)
  1585. .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)
  1586. .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)
  1587. .text.__errno 0x0000000000000000 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-errno.o)
  1588. .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-errno.o)
  1589. .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)
  1590. .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)
  1591. .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)
  1592. .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)
  1593. .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)
  1594. .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)
  1595. .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)
  1596. .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)
  1597. .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)
  1598. .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)
  1599. .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)
  1600. .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)
  1601. .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)
  1602. .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)
  1603. .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)
  1604. .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)
  1605. .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)
  1606. .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)
  1607. .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)
  1608. .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)
  1609. .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)
  1610. .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)
  1611. .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)
  1612. .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)
  1613. .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)
  1614. .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)
  1615. .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)
  1616. .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)
  1617. .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)
  1618. .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)
  1619. .text._printf_r
  1620. 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)
  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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-realloc.o)
  1627. .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)
  1628. .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)
  1629. .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)
  1630. .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)
  1631. .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)
  1632. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1633. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1634. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1635. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1636. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1637. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1638. .text._sprintf_r
  1639. 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)
  1640. .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)
  1641. .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)
  1642. .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)
  1643. .text._sscanf_r
  1644. 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)
  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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  1651. .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)
  1652. .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)
  1653. .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)
  1654. .text.strtod_l
  1655. 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)
  1656. .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)
  1657. .text.strtof_l
  1658. 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)
  1659. .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)
  1660. .rodata.strtof_l.cst4
  1661. 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)
  1662. .rodata.strtof_l.cst8
  1663. 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)
  1664. .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)
  1665. .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)
  1666. .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)
  1667. .text.strtol_l
  1668. 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)
  1669. .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)
  1670. .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)
  1671. .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)
  1672. .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)
  1673. .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)
  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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.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-dtoa.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-dtoa.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-dtoa.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-fflush.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-fflush.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-fflush.o)
  1689. .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)
  1690. .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)
  1691. .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)
  1692. .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)
  1693. .text.__fp_lock
  1694. 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)
  1695. .text.__fp_unlock
  1696. 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)
  1697. .text._cleanup
  1698. 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)
  1699. .text.__sfp_lock_acquire
  1700. 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)
  1701. .text.__sfp_lock_release
  1702. 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)
  1703. .text.__sinit_lock_acquire
  1704. 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)
  1705. .text.__sinit_lock_release
  1706. 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)
  1707. .text.__fp_lock_all
  1708. 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)
  1709. .text.__fp_unlock_all
  1710. 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)
  1711. .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)
  1712. .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)
  1713. .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)
  1714. .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)
  1715. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1716. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1717. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.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-gdtoa-hexnan.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-gdtoa-hexnan.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-gdtoa-hexnan.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-locale.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-locale.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-locale.o)
  1724. .text._setlocale_r
  1725. 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)
  1726. .text.__locale_mb_cur_max
  1727. 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)
  1728. .text.setlocale
  1729. 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)
  1730. .sbss._PathLocale
  1731. 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)
  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-localeconv.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-localeconv.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-localeconv.o)
  1735. .text.localeconv
  1736. 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)
  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-lseekr.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-lseekr.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-lseekr.o)
  1740. .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)
  1741. .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)
  1742. .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)
  1743. .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)
  1744. .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)
  1745. .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)
  1746. .text._mbtowc_r
  1747. 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)
  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-memchr.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-memchr.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-memchr.o)
  1751. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  1752. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  1753. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  1754. .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)
  1755. .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)
  1756. .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)
  1757. .text._mprec_log10
  1758. 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)
  1759. .rodata.__mprec_tinytens
  1760. 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)
  1761. .rodata._mprec_log10.cst8
  1762. 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)
  1763. .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)
  1764. .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)
  1765. .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)
  1766. .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)
  1767. .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)
  1768. .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)
  1769. .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)
  1770. .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)
  1771. .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)
  1772. .text.__ssprint_r
  1773. 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)
  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-nano-svfscanf.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-nano-svfscanf.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-nano-svfscanf.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-nano-vfprintf.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-nano-vfprintf.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-nano-vfprintf.o)
  1780. .text.__sprint_r
  1781. 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)
  1782. .text.vfprintf
  1783. 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)
  1784. .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)
  1785. .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)
  1786. .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)
  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-readr.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-readr.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-readr.o)
  1790. .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)
  1791. .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)
  1792. .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)
  1793. .text.cleanup_glue
  1794. 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)
  1795. .text._reclaim_reent
  1796. 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)
  1797. .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)
  1798. .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)
  1799. .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)
  1800. .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)
  1801. .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)
  1802. .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)
  1803. .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)
  1804. .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)
  1805. .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)
  1806. .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)
  1807. .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)
  1808. .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)
  1809. .text.strtoul_l
  1810. 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)
  1811. .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)
  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-ungetc.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-ungetc.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-ungetc.o)
  1815. .text._ungetc_r
  1816. 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)
  1817. .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)
  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-wctomb_r.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-wctomb_r.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-wctomb_r.o)
  1821. .text._wctomb_r
  1822. 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)
  1823. .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)
  1824. .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)
  1825. .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)
  1826. .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)
  1827. .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)
  1828. .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)
  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-fvwrite.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-fvwrite.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-fvwrite.o)
  1832. .text.__sfvwrite_r
  1833. 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)
  1834. .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)
  1835. .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)
  1836. .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)
  1837. .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)
  1838. .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)
  1839. .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)
  1840. .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)
  1841. .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)
  1842. .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)
  1843. .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)
  1844. .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)
  1845. .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)
  1846. .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)
  1847. .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)
  1848. .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)
  1849. .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)
  1850. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  1851. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  1852. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
  1853. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  1854. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  1855. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
  1856. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1857. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1858. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unordsf2.o)
  1859. .text.__unordsf2
  1860. 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)
  1861. .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)
  1862. .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)
  1863. .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)
  1864. .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)
  1865. .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)
  1866. .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)
  1867. .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)
  1868. .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)
  1869. .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)
  1870. .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)
  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\libnosys.a(fstat.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\libnosys.a(fstat.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\libnosys.a(fstat.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\libnosys.a(isatty.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\libnosys.a(isatty.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\libnosys.a(isatty.o)
  1877. .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)
  1878. .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)
  1879. .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)
  1880. .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)
  1881. .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)
  1882. .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)
  1883. Memory Configuration
  1884. Name Origin Length Attributes
  1885. FLASH 0x0000000000005000 0x000000000003b000 xr
  1886. RAM 0x0000000020004000 0x000000000000c000 xrw
  1887. *default* 0x0000000000000000 0xffffffffffffffff
  1888. Linker script and memory map
  1889. LOAD ./components/ws2812b/user_spi.o
  1890. LOAD ./components/ws2812b/user_ws2812b.o
  1891. LOAD ./components/tools/AES_PKCS7.o
  1892. LOAD ./components/tools/_string.o
  1893. LOAD ./components/tools/my_math.o
  1894. LOAD ./components/tools/tools.o
  1895. LOAD ./components/tools/user_crc16.o
  1896. LOAD ./components/led/user_led.o
  1897. LOAD ./components/electlock/user_elect.o
  1898. LOAD ./components/config/user_config.o
  1899. LOAD ./components/can/dip_sw.o
  1900. LOAD ./components/can/user_can.o
  1901. LOAD ./components/action/ble_action.o
  1902. LOAD ./components/action/user_sever.o
  1903. LOAD ./User/app_drv_fifo/app_drv_fifo.o
  1904. LOAD ./User/app_main.o
  1905. LOAD ./User/ch32v20x_it.o
  1906. LOAD ./User/peripheral.o
  1907. LOAD ./User/system_ch32v20x.o
  1908. LOAD ./Startup/startup_ch32v20x_D8W.o
  1909. LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
  1910. LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
  1911. LOAD ./SRC/Peripheral/src/ch32v20x_can.o
  1912. LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
  1913. LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  1914. LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
  1915. LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
  1916. LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
  1917. LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
  1918. LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
  1919. LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1920. LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
  1921. LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
  1922. LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
  1923. LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
  1924. LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
  1925. LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
  1926. LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
  1927. LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
  1928. LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
  1929. LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1930. LOAD ./SRC/Debug/debug.o
  1931. LOAD ./SRC/Core/core_riscv.o
  1932. LOAD ./Profile/devinfoservice.o
  1933. LOAD ./Profile/gattprofile.o
  1934. LOAD ./LIB/ble_task_scheduler.o
  1935. LOAD ./HAL/MCU.o
  1936. LOAD ./HAL/RTC.o
  1937. LOAD ./HAL/SLEEP.o
  1938. 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
  1939. LOAD d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a
  1940. 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
  1941. 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
  1942. 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
  1943. 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
  1944. 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
  1945. START GROUP
  1946. 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
  1947. 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
  1948. 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
  1949. END GROUP
  1950. START GROUP
  1951. 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
  1952. 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
  1953. 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
  1954. END GROUP
  1955. 0x0000000000000800 __stack_size = 0x800
  1956. [!provide] PROVIDE (_stack_size = __stack_size)
  1957. 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
  1958. .init 0x0000000000005000 0x3c
  1959. 0x0000000000005000 _sinit = .
  1960. 0x0000000000005000 . = ALIGN (0x4)
  1961. *(SORT_NONE(.init))
  1962. .init 0x0000000000005000 0x38 ./Startup/startup_ch32v20x_D8W.o
  1963. 0x0000000000005000 _start
  1964. *(.ImageFlag)
  1965. .ImageFlag 0x0000000000005038 0x4 ./User/app_main.o
  1966. 0x0000000000005038 Image_Flag
  1967. *(.ImageFlag.*)
  1968. 0x000000000000503c . = ALIGN (0x4)
  1969. 0x000000000000503c _einit = .
  1970. .vector 0x000000000000503c 0x144
  1971. *(.vector)
  1972. .vector 0x000000000000503c 0x118 ./Startup/startup_ch32v20x_D8W.o
  1973. 0x0000000000005180 . = ALIGN (0x40)
  1974. *fill* 0x0000000000005154 0x2c
  1975. *(SORT_NONE(.handle_reset))
  1976. .highcode 0x0000000000005180 0xf0
  1977. 0x0000000000005180 . = ALIGN (0x4)
  1978. *(.highcode)
  1979. .highcode 0x0000000000005180 0x14 ./User/app_main.o
  1980. 0x0000000000005180 Main_Circulation
  1981. .highcode 0x0000000000005194 0x4e ./LIB/ble_task_scheduler.o
  1982. 0x0000000000005194 Ecall_U_Mode_Handler
  1983. 0x0000000000005194 Ecall_M_Mode_Handler
  1984. *(.highcode.*)
  1985. *fill* 0x00000000000051e2 0x2
  1986. .highcode.LLE_IRQHandler
  1987. 0x00000000000051e4 0x8a ./LIB/ble_task_scheduler.o
  1988. 0x00000000000051e4 LLE_IRQHandler
  1989. 0x0000000000005270 . = ALIGN (0x4)
  1990. *fill* 0x000000000000526e 0x2
  1991. .text 0x0000000000005270 0xe810
  1992. 0x0000000000005270 . = ALIGN (0x4)
  1993. *(.text)
  1994. .text 0x0000000000005270 0x210 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  1995. 0x0000000000005270 get_gb_token
  1996. 0x00000000000052a6 wch_base64_decode
  1997. 0x00000000000052a8 wch_base64_encode
  1998. 0x00000000000052aa Wch_AES_get_length
  1999. 0x00000000000052ae device_encrypt
  2000. 0x000000000000530e device_decrypt
  2001. 0x00000000000053d6 production_lic_set
  2002. 0x000000000000540c check_lic_stat
  2003. .text 0x0000000000005480 0x26c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  2004. 0x0000000000005480 base64_encode
  2005. 0x00000000000055ce base64_decode
  2006. .text 0x00000000000056ec 0x4b8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  2007. 0x00000000000056ec set_production_lic_key
  2008. 0x00000000000059a4 get_AesKey
  2009. .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)
  2010. 0x0000000000005ba4 memset
  2011. *(.text.*)
  2012. .text.user_spi_01_dma_init
  2013. 0x0000000000005c4c 0x78 ./components/ws2812b/user_spi.o
  2014. 0x0000000000005c4c user_spi_01_dma_init
  2015. .text.user_spi_02_dma_init
  2016. 0x0000000000005cc4 0x7a ./components/ws2812b/user_spi.o
  2017. 0x0000000000005cc4 user_spi_02_dma_init
  2018. .text.user_spi_Init
  2019. 0x0000000000005d3e 0xd8 ./components/ws2812b/user_spi.o
  2020. 0x0000000000005d3e user_spi_Init
  2021. .text.bUser_spi_WriteByte
  2022. 0x0000000000005e16 0x6a ./components/ws2812b/user_spi.o
  2023. 0x0000000000005e16 bUser_spi_WriteByte
  2024. .text.vUser_ws2812b_set_wrByte
  2025. 0x0000000000005e80 0x28 ./components/ws2812b/user_ws2812b.o
  2026. .text.prvUser_ws2812b_set_led_bright
  2027. 0x0000000000005ea8 0x56 ./components/ws2812b/user_ws2812b.o
  2028. .text.prvUser_ws2812b_set_led_dark
  2029. 0x0000000000005efe 0x58 ./components/ws2812b/user_ws2812b.o
  2030. .text.prvUser_ws2812b_set_flick
  2031. 0x0000000000005f56 0x2c ./components/ws2812b/user_ws2812b.o
  2032. .text.prvUser_ws2812b_set_breath
  2033. 0x0000000000005f82 0xde ./components/ws2812b/user_ws2812b.o
  2034. .text.prvUser_ws2812b_txData
  2035. 0x0000000000006060 0x1a ./components/ws2812b/user_ws2812b.o
  2036. .text.vUser_ws2812b_check
  2037. 0x000000000000607a 0x1b8 ./components/ws2812b/user_ws2812b.o
  2038. .text.user_ws2812b_task_process_event
  2039. 0x0000000000006232 0x32 ./components/ws2812b/user_ws2812b.o
  2040. .text.vUser_ws2812b_set_normal_stat
  2041. 0x0000000000006264 0x3a ./components/ws2812b/user_ws2812b.o
  2042. 0x0000000000006264 vUser_ws2812b_set_normal_stat
  2043. .text.vUser_ws2812b_set_ble_connect_stat
  2044. 0x000000000000629e 0x44 ./components/ws2812b/user_ws2812b.o
  2045. 0x000000000000629e vUser_ws2812b_set_ble_connect_stat
  2046. .text.vUser_ws2812b_set_can_id_alarm_stat
  2047. 0x00000000000062e2 0x36 ./components/ws2812b/user_ws2812b.o
  2048. 0x00000000000062e2 vUser_ws2812b_set_can_id_alarm_stat
  2049. .text.vUser_ws2812b_set_offline_alarm_stat
  2050. 0x0000000000006318 0x34 ./components/ws2812b/user_ws2812b.o
  2051. 0x0000000000006318 vUser_ws2812b_set_offline_alarm_stat
  2052. .text.vUser_ws2812b_set_alarm_view
  2053. 0x000000000000634c 0x5e ./components/ws2812b/user_ws2812b.o
  2054. 0x000000000000634c vUser_ws2812b_set_alarm_view
  2055. .text.vUser_ws2812b_task_start
  2056. 0x00000000000063aa 0x12 ./components/ws2812b/user_ws2812b.o
  2057. 0x00000000000063aa vUser_ws2812b_task_start
  2058. .text.vUser_ws2812b_init
  2059. 0x00000000000063bc 0xb4 ./components/ws2812b/user_ws2812b.o
  2060. 0x00000000000063bc vUser_ws2812b_init
  2061. .text.vUser_ws2812b_set_tx_stat
  2062. 0x0000000000006470 0x12 ./components/ws2812b/user_ws2812b.o
  2063. 0x0000000000006470 vUser_ws2812b_set_tx_stat
  2064. .text.vUser_ws2812b_set_lock_stat
  2065. 0x0000000000006482 0x102 ./components/ws2812b/user_ws2812b.o
  2066. 0x0000000000006482 vUser_ws2812b_set_lock_stat
  2067. .text.XorBytes
  2068. 0x0000000000006584 0x22 ./components/tools/AES_PKCS7.o
  2069. .text.ShiftRows
  2070. 0x00000000000065a6 0x60 ./components/tools/AES_PKCS7.o
  2071. .text.GfMultBy02
  2072. 0x0000000000006606 0x18 ./components/tools/AES_PKCS7.o
  2073. .text.MixColumns
  2074. 0x000000000000661e 0xee ./components/tools/AES_PKCS7.o
  2075. .text.AES_Init
  2076. 0x000000000000670c 0x9e ./components/tools/AES_PKCS7.o
  2077. 0x000000000000670c AES_Init
  2078. .text.AES_get_length
  2079. 0x00000000000067aa 0x6 ./components/tools/AES_PKCS7.o
  2080. 0x00000000000067aa AES_get_length
  2081. .text.AES_Encrypt_PKCS7
  2082. 0x00000000000067b0 0x104 ./components/tools/AES_PKCS7.o
  2083. 0x00000000000067b0 AES_Encrypt_PKCS7
  2084. .text.AES_Decrypt
  2085. 0x00000000000068b4 0xba ./components/tools/AES_PKCS7.o
  2086. 0x00000000000068b4 AES_Decrypt
  2087. .text._strlen 0x000000000000696e 0x14 ./components/tools/_string.o
  2088. 0x000000000000696e _strlen
  2089. .text._strstr 0x0000000000006982 0x6c ./components/tools/_string.o
  2090. 0x0000000000006982 _strstr
  2091. .text.rng_init
  2092. 0x00000000000069ee 0x2 ./components/tools/tools.o
  2093. 0x00000000000069ee rng_init
  2094. .text.Get_Rand
  2095. 0x00000000000069f0 0xa ./components/tools/tools.o
  2096. 0x00000000000069f0 Get_Rand
  2097. .text.led_task_process_event
  2098. 0x00000000000069fa 0x118 ./components/led/user_led.o
  2099. .text.right_pwm_duty
  2100. 0x0000000000006b12 0xe ./components/led/user_led.o
  2101. .text.left_pwm_duty
  2102. 0x0000000000006b20 0xe ./components/led/user_led.o
  2103. .text.right_light_duty
  2104. 0x0000000000006b2e 0xe ./components/led/user_led.o
  2105. .text.left_light_duty
  2106. 0x0000000000006b3c 0xe ./components/led/user_led.o
  2107. .text.led_dev_duty
  2108. 0x0000000000006b4a 0x48 ./components/led/user_led.o
  2109. .text.set_led_indication
  2110. 0x0000000000006b92 0xb0 ./components/led/user_led.o
  2111. 0x0000000000006b92 set_led_indication
  2112. .text.led_task_init
  2113. 0x0000000000006c42 0x23c ./components/led/user_led.o
  2114. 0x0000000000006c42 led_task_init
  2115. .text.led_task_start
  2116. 0x0000000000006e7e 0x12 ./components/led/user_led.o
  2117. 0x0000000000006e7e led_task_start
  2118. .text.vUser_led_set_alarm_view
  2119. 0x0000000000006e90 0xa8 ./components/led/user_led.o
  2120. 0x0000000000006e90 vUser_led_set_alarm_view
  2121. .text.vUser_led_set_bright
  2122. 0x0000000000006f38 0x3e ./components/led/user_led.o
  2123. 0x0000000000006f38 vUser_led_set_bright
  2124. .text.elect_task_process_event
  2125. 0x0000000000006f76 0x106 ./components/electlock/user_elect.o
  2126. .text.bUser_elect_get_right_level
  2127. 0x000000000000707c 0x2a ./components/electlock/user_elect.o
  2128. .text.bUser_elect_get_left_level
  2129. 0x00000000000070a6 0x26 ./components/electlock/user_elect.o
  2130. .text.prvUser_elect_right_work_stat
  2131. 0x00000000000070cc 0x1c ./components/electlock/user_elect.o
  2132. .text.prvUser_elect_left_work_stat
  2133. 0x00000000000070e8 0x1c ./components/electlock/user_elect.o
  2134. .text.vUser_elect_open
  2135. 0x0000000000007104 0x16 ./components/electlock/user_elect.o
  2136. 0x0000000000007104 vUser_elect_open
  2137. .text.vUser_elect_task_init
  2138. 0x000000000000711a 0xb4 ./components/electlock/user_elect.o
  2139. 0x000000000000711a vUser_elect_task_init
  2140. .text.vUser_elect_task_start
  2141. 0x00000000000071ce 0x30 ./components/electlock/user_elect.o
  2142. 0x00000000000071ce vUser_elect_task_start
  2143. .text.vUser_elect_set_upload_stat_func
  2144. 0x00000000000071fe 0x6 ./components/electlock/user_elect.o
  2145. 0x00000000000071fe vUser_elect_set_upload_stat_func
  2146. .text.set_user_config_param_init
  2147. 0x0000000000007204 0x64 ./components/config/user_config.o
  2148. 0x0000000000007204 set_user_config_param_init
  2149. .text.check_can_baud
  2150. 0x0000000000007268 0x66 ./components/config/user_config.o
  2151. 0x0000000000007268 check_can_baud
  2152. .text.FLASH_read
  2153. 0x00000000000072ce 0x18 ./components/config/user_config.o
  2154. 0x00000000000072ce FLASH_read
  2155. .text.User_Config_Write_Config
  2156. 0x00000000000072e6 0x50 ./components/config/user_config.o
  2157. 0x00000000000072e6 User_Config_Write_Config
  2158. .text.User_Config_Read_Config
  2159. 0x0000000000007336 0xa6 ./components/config/user_config.o
  2160. 0x0000000000007336 User_Config_Read_Config
  2161. .text.user_config_save_can_baud
  2162. 0x00000000000073dc 0x3c ./components/config/user_config.o
  2163. 0x00000000000073dc user_config_save_can_baud
  2164. .text.user_config_save_ws2812b_count
  2165. 0x0000000000007418 0x42 ./components/config/user_config.o
  2166. 0x0000000000007418 user_config_save_ws2812b_count
  2167. .text.user_config_save_elect_time
  2168. 0x000000000000745a 0x4 ./components/config/user_config.o
  2169. 0x000000000000745a user_config_save_elect_time
  2170. .text.user_config_init
  2171. 0x000000000000745e 0x2 ./components/config/user_config.o
  2172. 0x000000000000745e user_config_init
  2173. .text.set_dispsw_addr
  2174. 0x0000000000007460 0x74 ./components/can/dip_sw.o
  2175. .text.get_dipsw08_level
  2176. 0x00000000000074d4 0x1c ./components/can/dip_sw.o
  2177. .text.get_dipsw07_level
  2178. 0x00000000000074f0 0x1e ./components/can/dip_sw.o
  2179. .text.get_dipsw06_level
  2180. 0x000000000000750e 0x1e ./components/can/dip_sw.o
  2181. .text.get_dipsw05_level
  2182. 0x000000000000752c 0x1e ./components/can/dip_sw.o
  2183. .text.get_dipsw04_level
  2184. 0x000000000000754a 0x18 ./components/can/dip_sw.o
  2185. .text.get_dipsw03_level
  2186. 0x0000000000007562 0x1a ./components/can/dip_sw.o
  2187. .text.get_dipsw02_level
  2188. 0x000000000000757c 0x1c ./components/can/dip_sw.o
  2189. .text.get_dipsw01_level
  2190. 0x0000000000007598 0x1c ./components/can/dip_sw.o
  2191. .text.vDipsw_init
  2192. 0x00000000000075b4 0xba ./components/can/dip_sw.o
  2193. 0x00000000000075b4 vDipsw_init
  2194. .text.dipsw_task_process_event
  2195. 0x000000000000766e 0xaa ./components/can/dip_sw.o
  2196. 0x000000000000766e dipsw_task_process_event
  2197. .text.dipsw_task_start
  2198. 0x0000000000007718 0x12 ./components/can/dip_sw.o
  2199. 0x0000000000007718 dipsw_task_start
  2200. .text.vDipsw_set_upload_func
  2201. 0x000000000000772a 0x6 ./components/can/dip_sw.o
  2202. 0x000000000000772a vDipsw_set_upload_func
  2203. .text.ucCAN_Send_Msg
  2204. 0x0000000000007730 0x98 ./components/can/user_can.o
  2205. 0x0000000000007730 ucCAN_Send_Msg
  2206. .text.user_can_task_process_event
  2207. 0x00000000000077c8 0x76 ./components/can/user_can.o
  2208. .text.vUser_can_send_data
  2209. 0x000000000000783e 0x4e ./components/can/user_can.o
  2210. 0x000000000000783e vUser_can_send_data
  2211. .text.vUser_can_recv_data
  2212. 0x000000000000788c 0x36 ./components/can/user_can.o
  2213. 0x000000000000788c vUser_can_recv_data
  2214. .text.vUser_can_set_recv_data_func
  2215. 0x00000000000078c2 0x6 ./components/can/user_can.o
  2216. 0x00000000000078c2 vUser_can_set_recv_data_func
  2217. .text.vUser_can_set_addr
  2218. 0x00000000000078c8 0x6c ./components/can/user_can.o
  2219. 0x00000000000078c8 vUser_can_set_addr
  2220. .text.vUser_can_init
  2221. 0x0000000000007934 0x1b2 ./components/can/user_can.o
  2222. 0x0000000000007934 vUser_can_init
  2223. .text.ble_owned_data_send
  2224. 0x0000000000007ae6 0x10 ./components/action/ble_action.o
  2225. .text.ble_Return_Stat_Send
  2226. 0x0000000000007af6 0x2a ./components/action/ble_action.o
  2227. .text.ble_action_set_rst
  2228. 0x0000000000007b20 0x38 ./components/action/ble_action.o
  2229. .text.set_token
  2230. 0x0000000000007b58 0x20 ./components/action/ble_action.o
  2231. .text.Set_ble_data_s_sendData
  2232. 0x0000000000007b78 0x78 ./components/action/ble_action.o
  2233. .text.ble_devRst_set_stat_send
  2234. 0x0000000000007bf0 0x2c ./components/action/ble_action.o
  2235. .text.Check_UnixTime_Token
  2236. 0x0000000000007c1c 0x3a ./components/action/ble_action.o
  2237. .text.Jump_OTA
  2238. 0x0000000000007c56 0x46 ./components/action/ble_action.o
  2239. 0x0000000000007c56 Jump_OTA
  2240. .text.ble_connect_act
  2241. 0x0000000000007c9c 0x2a ./components/action/ble_action.o
  2242. 0x0000000000007c9c ble_connect_act
  2243. .text.download_ble_data_callback
  2244. 0x0000000000007cc6 0x2fc ./components/action/ble_action.o
  2245. 0x0000000000007cc6 download_ble_data_callback
  2246. .text.vBle_action_init
  2247. 0x0000000000007fc2 0x4 ./components/action/ble_action.o
  2248. 0x0000000000007fc2 vBle_action_init
  2249. .text.download_ble_file_callback
  2250. 0x0000000000007fc6 0x4 ./components/action/ble_action.o
  2251. 0x0000000000007fc6 download_ble_file_callback
  2252. .text.set_upload_ble_data_func
  2253. 0x0000000000007fca 0x6 ./components/action/ble_action.o
  2254. 0x0000000000007fca set_upload_ble_data_func
  2255. .text.prvUser_can_recv_data_callback
  2256. 0x0000000000007fd0 0x26 ./components/action/user_sever.o
  2257. .text.vUser_elect_upload_stat_callback
  2258. 0x0000000000007ff6 0x28 ./components/action/user_sever.o
  2259. .text.user_server_task_process_event
  2260. 0x000000000000801e 0x42e ./components/action/user_sever.o
  2261. .text.prvDipsw_upload_callback
  2262. 0x000000000000844c 0x5a ./components/action/user_sever.o
  2263. .text.vUser_server_task_start
  2264. 0x00000000000084a6 0x12 ./components/action/user_sever.o
  2265. 0x00000000000084a6 vUser_server_task_start
  2266. .text.vUser_server_init
  2267. 0x00000000000084b8 0x50 ./components/action/user_sever.o
  2268. 0x00000000000084b8 vUser_server_init
  2269. .text.startup.main
  2270. 0x0000000000008508 0xcc ./User/app_main.o
  2271. 0x0000000000008508 main
  2272. .text.NMI_Handler
  2273. 0x00000000000085d4 0x4 ./User/ch32v20x_it.o
  2274. 0x00000000000085d4 NMI_Handler
  2275. .text.HardFault_Handler
  2276. 0x00000000000085d8 0x2 ./User/ch32v20x_it.o
  2277. 0x00000000000085d8 HardFault_Handler
  2278. .text.BB_IRQHandler
  2279. 0x00000000000085da 0xc ./User/ch32v20x_it.o
  2280. 0x00000000000085da BB_IRQHandler
  2281. .text.USB_LP_CAN1_RX0_IRQHandler
  2282. 0x00000000000085e6 0x38 ./User/ch32v20x_it.o
  2283. 0x00000000000085e6 USB_LP_CAN1_RX0_IRQHandler
  2284. .text.DMA1_Channel3_IRQHandler
  2285. 0x000000000000861e 0x38 ./User/ch32v20x_it.o
  2286. 0x000000000000861e DMA1_Channel3_IRQHandler
  2287. .text.DMA1_Channel5_IRQHandler
  2288. 0x0000000000008656 0x3c ./User/ch32v20x_it.o
  2289. 0x0000000000008656 DMA1_Channel5_IRQHandler
  2290. .text.peripheralRssiCB
  2291. 0x0000000000008692 0x2 ./User/peripheral.o
  2292. .text.simpleProfileChangeCB
  2293. 0x0000000000008694 0x2e ./User/peripheral.o
  2294. .text.Peripheral_ProcessEvent
  2295. 0x00000000000086c2 0x15a ./User/peripheral.o
  2296. 0x00000000000086c2 Peripheral_ProcessEvent
  2297. .text.peripheralParamUpdateCB
  2298. 0x000000000000881c 0x40 ./User/peripheral.o
  2299. .text.Peripheral_LinkTerminated
  2300. 0x000000000000885c 0x6a ./User/peripheral.o
  2301. .text.peripheralStateNotificationCB
  2302. 0x00000000000088c6 0x1b0 ./User/peripheral.o
  2303. .text.Peripheral_Init
  2304. 0x0000000000008a76 0x206 ./User/peripheral.o
  2305. 0x0000000000008a76 Peripheral_Init
  2306. .text.ble_data_send
  2307. 0x0000000000008c7c 0x72 ./User/peripheral.o
  2308. 0x0000000000008c7c ble_data_send
  2309. .text.set_download_ble_data_func
  2310. 0x0000000000008cee 0x6 ./User/peripheral.o
  2311. 0x0000000000008cee set_download_ble_data_func
  2312. .text.set_download_ble_file_func
  2313. 0x0000000000008cf4 0xa ./User/peripheral.o
  2314. 0x0000000000008cf4 set_download_ble_file_func
  2315. .text.set_ble_connect_evtfunc
  2316. 0x0000000000008cfe 0x6 ./User/peripheral.o
  2317. 0x0000000000008cfe set_ble_connect_evtfunc
  2318. .text.SystemInit
  2319. 0x0000000000008d04 0xea ./User/system_ch32v20x.o
  2320. 0x0000000000008d04 SystemInit
  2321. .text.SystemCoreClockUpdate
  2322. 0x0000000000008dee 0xac ./User/system_ch32v20x.o
  2323. 0x0000000000008dee SystemCoreClockUpdate
  2324. .text.vector_handler
  2325. 0x0000000000008e9a 0x2 ./Startup/startup_ch32v20x_D8W.o
  2326. 0x0000000000008e9a EXTI2_IRQHandler
  2327. 0x0000000000008e9a TIM1_CC_IRQHandler
  2328. 0x0000000000008e9a SysTick_Handler
  2329. 0x0000000000008e9a PVD_IRQHandler
  2330. 0x0000000000008e9a EXTI3_IRQHandler
  2331. 0x0000000000008e9a USBFS_IRQHandler
  2332. 0x0000000000008e9a EXTI0_IRQHandler
  2333. 0x0000000000008e9a I2C2_EV_IRQHandler
  2334. 0x0000000000008e9a ADC1_2_IRQHandler
  2335. 0x0000000000008e9a Break_Point_Handler
  2336. 0x0000000000008e9a SPI1_IRQHandler
  2337. 0x0000000000008e9a TAMPER_IRQHandler
  2338. 0x0000000000008e9a OSCWakeUp_IRQHandler
  2339. 0x0000000000008e9a DMA1_Channel4_IRQHandler
  2340. 0x0000000000008e9a USART3_IRQHandler
  2341. 0x0000000000008e9a RTC_IRQHandler
  2342. 0x0000000000008e9a DMA1_Channel7_IRQHandler
  2343. 0x0000000000008e9a CAN1_RX1_IRQHandler
  2344. 0x0000000000008e9a TIM4_IRQHandler
  2345. 0x0000000000008e9a I2C1_EV_IRQHandler
  2346. 0x0000000000008e9a DMA1_Channel6_IRQHandler
  2347. 0x0000000000008e9a UART4_IRQHandler
  2348. 0x0000000000008e9a TIM3_IRQHandler
  2349. 0x0000000000008e9a RCC_IRQHandler
  2350. 0x0000000000008e9a TIM1_TRG_COM_IRQHandler
  2351. 0x0000000000008e9a DMA1_Channel1_IRQHandler
  2352. 0x0000000000008e9a EXTI15_10_IRQHandler
  2353. 0x0000000000008e9a DMA1_Channel8_IRQHandler
  2354. 0x0000000000008e9a TIM5_IRQHandler
  2355. 0x0000000000008e9a EXTI9_5_IRQHandler
  2356. 0x0000000000008e9a SPI2_IRQHandler
  2357. 0x0000000000008e9a OSC32KCal_IRQHandler
  2358. 0x0000000000008e9a EXTI4_IRQHandler
  2359. 0x0000000000008e9a USB_HP_CAN1_TX_IRQHandler
  2360. 0x0000000000008e9a ETH_IRQHandler
  2361. 0x0000000000008e9a TIM1_UP_IRQHandler
  2362. 0x0000000000008e9a WWDG_IRQHandler
  2363. 0x0000000000008e9a TIM2_IRQHandler
  2364. 0x0000000000008e9a SW_Handler
  2365. 0x0000000000008e9a TIM1_BRK_IRQHandler
  2366. 0x0000000000008e9a EXTI1_IRQHandler
  2367. 0x0000000000008e9a USART2_IRQHandler
  2368. 0x0000000000008e9a ETHWakeUp_IRQHandler
  2369. 0x0000000000008e9a I2C2_ER_IRQHandler
  2370. 0x0000000000008e9a DMA1_Channel2_IRQHandler
  2371. 0x0000000000008e9a CAN1_SCE_IRQHandler
  2372. 0x0000000000008e9a FLASH_IRQHandler
  2373. 0x0000000000008e9a USBFSWakeUp_IRQHandler
  2374. 0x0000000000008e9a USART1_IRQHandler
  2375. 0x0000000000008e9a I2C1_ER_IRQHandler
  2376. 0x0000000000008e9a USBWakeUp_IRQHandler
  2377. .text.handle_reset
  2378. 0x0000000000008e9c 0x8a ./Startup/startup_ch32v20x_D8W.o
  2379. 0x0000000000008e9c handle_reset
  2380. .text.ADC_DeInit
  2381. 0x0000000000008f26 0x4c ./SRC/Peripheral/src/ch32v20x_adc.o
  2382. 0x0000000000008f26 ADC_DeInit
  2383. .text.ADC_Init
  2384. 0x0000000000008f72 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
  2385. 0x0000000000008f72 ADC_Init
  2386. .text.ADC_Cmd 0x0000000000008fc8 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
  2387. 0x0000000000008fc8 ADC_Cmd
  2388. .text.ADC_SoftwareStartConvCmd
  2389. 0x0000000000008fd8 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2390. 0x0000000000008fd8 ADC_SoftwareStartConvCmd
  2391. .text.ADC_RegularChannelConfig
  2392. 0x0000000000008ff0 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2393. 0x0000000000008ff0 ADC_RegularChannelConfig
  2394. .text.ADC_GetConversionValue
  2395. 0x00000000000090a8 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2396. 0x00000000000090a8 ADC_GetConversionValue
  2397. .text.ADC_TempSensorVrefintCmd
  2398. 0x00000000000090b0 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
  2399. 0x00000000000090b0 ADC_TempSensorVrefintCmd
  2400. .text.ADC_GetFlagStatus
  2401. 0x00000000000090d0 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2402. 0x00000000000090d0 ADC_GetFlagStatus
  2403. .text.ADC_BufferCmd
  2404. 0x00000000000090da 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2405. 0x00000000000090da ADC_BufferCmd
  2406. .text.CAN_Init
  2407. 0x00000000000090f2 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
  2408. 0x00000000000090f2 CAN_Init
  2409. .text.CAN_FilterInit
  2410. 0x00000000000091da 0xee ./SRC/Peripheral/src/ch32v20x_can.o
  2411. 0x00000000000091da CAN_FilterInit
  2412. .text.CAN_Transmit
  2413. 0x00000000000092c8 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
  2414. 0x00000000000092c8 CAN_Transmit
  2415. .text.CAN_TransmitStatus
  2416. 0x0000000000009384 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
  2417. 0x0000000000009384 CAN_TransmitStatus
  2418. .text.CAN_Receive
  2419. 0x00000000000093e6 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
  2420. 0x00000000000093e6 CAN_Receive
  2421. .text.CAN_ITConfig
  2422. 0x0000000000009472 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
  2423. 0x0000000000009472 CAN_ITConfig
  2424. .text.CAN_GetITStatus
  2425. 0x0000000000009484 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
  2426. 0x0000000000009484 CAN_GetITStatus
  2427. .text.CAN_ClearITPendingBit
  2428. 0x0000000000009554 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
  2429. 0x0000000000009554 CAN_ClearITPendingBit
  2430. .text.DBGMCU_GetCHIPID
  2431. 0x00000000000095e8 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2432. 0x00000000000095e8 DBGMCU_GetCHIPID
  2433. .text.DMA_DeInit
  2434. 0x00000000000095f2 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
  2435. 0x00000000000095f2 DMA_DeInit
  2436. .text.DMA_Init
  2437. 0x000000000000968e 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
  2438. 0x000000000000968e DMA_Init
  2439. .text.DMA_Cmd 0x00000000000096c6 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
  2440. 0x00000000000096c6 DMA_Cmd
  2441. .text.DMA_ITConfig
  2442. 0x00000000000096da 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
  2443. 0x00000000000096da DMA_ITConfig
  2444. .text.DMA_SetCurrDataCounter
  2445. 0x00000000000096ec 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  2446. 0x00000000000096ec DMA_SetCurrDataCounter
  2447. .text.DMA_GetFlagStatus
  2448. 0x00000000000096f0 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
  2449. 0x00000000000096f0 DMA_GetFlagStatus
  2450. .text.DMA_GetITStatus
  2451. 0x00000000000096fe 0x2 ./SRC/Peripheral/src/ch32v20x_dma.o
  2452. 0x00000000000096fe DMA_GetITStatus
  2453. .text.DMA_ClearITPendingBit
  2454. 0x0000000000009700 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  2455. 0x0000000000009700 DMA_ClearITPendingBit
  2456. .text.EXTI_ClearITPendingBit
  2457. 0x0000000000009708 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  2458. 0x0000000000009708 EXTI_ClearITPendingBit
  2459. .text.FLASH_Unlock_Fast
  2460. 0x0000000000009712 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  2461. 0x0000000000009712 FLASH_Unlock_Fast
  2462. .text.FLASH_Lock_Fast
  2463. 0x0000000000009730 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  2464. 0x0000000000009730 FLASH_Lock_Fast
  2465. .text.FLASH_ErasePage_Fast
  2466. 0x000000000000973e 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  2467. 0x000000000000973e FLASH_ErasePage_Fast
  2468. .text.FLASH_ProgramPage_Fast
  2469. 0x000000000000976c 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
  2470. 0x000000000000976c FLASH_ProgramPage_Fast
  2471. .text.FLASH_GetMACAddress
  2472. 0x00000000000097d0 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
  2473. 0x00000000000097d0 FLASH_GetMACAddress
  2474. .text.GPIO_Init
  2475. 0x00000000000097f6 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2476. 0x00000000000097f6 GPIO_Init
  2477. .text.GPIO_ReadInputDataBit
  2478. 0x00000000000098b6 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2479. 0x00000000000098b6 GPIO_ReadInputDataBit
  2480. .text.GPIO_WriteBit
  2481. 0x00000000000098c0 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2482. 0x00000000000098c0 GPIO_WriteBit
  2483. .text.GPIO_PinRemapConfig
  2484. 0x00000000000098ca 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2485. 0x00000000000098ca GPIO_PinRemapConfig
  2486. .text.IWDG_ReloadCounter
  2487. 0x00000000000099bc 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2488. 0x00000000000099bc IWDG_ReloadCounter
  2489. .text.NVIC_Init
  2490. 0x00000000000099ca 0x5a ./SRC/Peripheral/src/ch32v20x_misc.o
  2491. 0x00000000000099ca NVIC_Init
  2492. .text.PWR_BackupAccessCmd
  2493. 0x0000000000009a24 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2494. 0x0000000000009a24 PWR_BackupAccessCmd
  2495. .text.RCC_ADCCLKConfig
  2496. 0x0000000000009a3a 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2497. 0x0000000000009a3a RCC_ADCCLKConfig
  2498. .text.RCC_LSEConfig
  2499. 0x0000000000009a4c 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2500. 0x0000000000009a4c RCC_LSEConfig
  2501. .text.RCC_RTCCLKConfig
  2502. 0x0000000000009a74 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
  2503. 0x0000000000009a74 RCC_RTCCLKConfig
  2504. .text.RCC_RTCCLKCmd
  2505. 0x0000000000009a80 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2506. 0x0000000000009a80 RCC_RTCCLKCmd
  2507. .text.RCC_GetClocksFreq
  2508. 0x0000000000009aa0 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2509. 0x0000000000009aa0 RCC_GetClocksFreq
  2510. .text.RCC_AHBPeriphClockCmd
  2511. 0x0000000000009b78 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2512. 0x0000000000009b78 RCC_AHBPeriphClockCmd
  2513. .text.RCC_APB2PeriphClockCmd
  2514. 0x0000000000009b96 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2515. 0x0000000000009b96 RCC_APB2PeriphClockCmd
  2516. .text.RCC_APB1PeriphClockCmd
  2517. 0x0000000000009bb4 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2518. 0x0000000000009bb4 RCC_APB1PeriphClockCmd
  2519. .text.RCC_APB2PeriphResetCmd
  2520. 0x0000000000009bd2 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2521. 0x0000000000009bd2 RCC_APB2PeriphResetCmd
  2522. .text.RCC_GetFlagStatus
  2523. 0x0000000000009bf0 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2524. 0x0000000000009bf0 RCC_GetFlagStatus
  2525. .text.RTC_EnterConfigMode
  2526. 0x0000000000009c1e 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2527. 0x0000000000009c1e RTC_EnterConfigMode
  2528. .text.RTC_ExitConfigMode
  2529. 0x0000000000009c30 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2530. 0x0000000000009c30 RTC_ExitConfigMode
  2531. .text.RTC_GetCounter
  2532. 0x0000000000009c48 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2533. 0x0000000000009c48 RTC_GetCounter
  2534. .text.RTC_SetCounter
  2535. 0x0000000000009ca2 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2536. 0x0000000000009ca2 RTC_SetCounter
  2537. .text.RTC_SetPrescaler
  2538. 0x0000000000009cc6 0x26 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2539. 0x0000000000009cc6 RTC_SetPrescaler
  2540. .text.RTC_WaitForLastTask
  2541. 0x0000000000009cec 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2542. 0x0000000000009cec RTC_WaitForLastTask
  2543. .text.RTC_ClearFlag
  2544. 0x0000000000009cfc 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2545. 0x0000000000009cfc RTC_ClearFlag
  2546. .text.RTC_ClearITPendingBit
  2547. 0x0000000000009d10 0x2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2548. 0x0000000000009d10 RTC_ClearITPendingBit
  2549. .text.SPI_Init
  2550. 0x0000000000009d12 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
  2551. 0x0000000000009d12 SPI_Init
  2552. .text.SPI_Cmd 0x0000000000009d50 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  2553. 0x0000000000009d50 SPI_Cmd
  2554. .text.SPI_I2S_DMACmd
  2555. 0x0000000000009d6a 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  2556. 0x0000000000009d6a SPI_I2S_DMACmd
  2557. .text.SPI_CalculateCRC
  2558. 0x0000000000009d7c 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
  2559. 0x0000000000009d7c SPI_CalculateCRC
  2560. .text.TIM_TimeBaseInit
  2561. 0x0000000000009d92 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  2562. 0x0000000000009d92 TIM_TimeBaseInit
  2563. .text.TIM_OC1Init
  2564. 0x0000000000009dfc 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  2565. 0x0000000000009dfc TIM_OC1Init
  2566. .text.TIM_OC2Init
  2567. 0x0000000000009e66 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
  2568. 0x0000000000009e66 TIM_OC2Init
  2569. .text.TIM_OC3Init
  2570. 0x0000000000009efc 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
  2571. 0x0000000000009efc TIM_OC3Init
  2572. .text.TIM_OC4Init
  2573. 0x0000000000009f90 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
  2574. 0x0000000000009f90 TIM_OC4Init
  2575. .text.TIM_BDTRConfig
  2576. 0x0000000000009ffc 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  2577. 0x0000000000009ffc TIM_BDTRConfig
  2578. .text.TIM_Cmd 0x000000000000a01c 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  2579. 0x000000000000a01c TIM_Cmd
  2580. .text.TIM_OC1PreloadConfig
  2581. 0x000000000000a034 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  2582. 0x000000000000a034 TIM_OC1PreloadConfig
  2583. .text.TIM_OC2PreloadConfig
  2584. 0x000000000000a042 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  2585. 0x000000000000a042 TIM_OC2PreloadConfig
  2586. .text.TIM_OC3PreloadConfig
  2587. 0x000000000000a058 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  2588. 0x000000000000a058 TIM_OC3PreloadConfig
  2589. .text.TIM_OC4PreloadConfig
  2590. 0x000000000000a066 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  2591. 0x000000000000a066 TIM_OC4PreloadConfig
  2592. .text.TIM_SetCompare1
  2593. 0x000000000000a07c 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2594. 0x000000000000a07c TIM_SetCompare1
  2595. .text.TIM_SetCompare2
  2596. 0x000000000000a080 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2597. 0x000000000000a080 TIM_SetCompare2
  2598. .text.TIM_SetCompare3
  2599. 0x000000000000a084 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  2600. 0x000000000000a084 TIM_SetCompare3
  2601. .text.TIM_SetCompare4
  2602. 0x000000000000a088 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  2603. 0x000000000000a088 TIM_SetCompare4
  2604. .text.TIM5_TimeBaseInit
  2605. 0x000000000000a08e 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2606. 0x000000000000a08e TIM5_TimeBaseInit
  2607. .text.TIM5_OC1Init
  2608. 0x000000000000a0c2 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2609. 0x000000000000a0c2 TIM5_OC1Init
  2610. .text.TIM5_OC2Init
  2611. 0x000000000000a11a 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2612. 0x000000000000a11a TIM5_OC2Init
  2613. .text.TIM5_BDTRConfig
  2614. 0x000000000000a180 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2615. 0x000000000000a180 TIM5_BDTRConfig
  2616. .text.TIM5_OC1PreloadConfig
  2617. 0x000000000000a1a4 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2618. 0x000000000000a1a4 TIM5_OC1PreloadConfig
  2619. .text.TIM5_OC2PreloadConfig
  2620. 0x000000000000a1ba 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  2621. 0x000000000000a1ba TIM5_OC2PreloadConfig
  2622. .text.TIM5_SetCompare1
  2623. 0x000000000000a1d8 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  2624. 0x000000000000a1d8 TIM5_SetCompare1
  2625. .text.TIM5_SetCompare2
  2626. 0x000000000000a1e2 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  2627. 0x000000000000a1e2 TIM5_SetCompare2
  2628. .text.USART_Init
  2629. 0x000000000000a1ec 0x92 ./SRC/Peripheral/src/ch32v20x_usart.o
  2630. 0x000000000000a1ec USART_Init
  2631. .text.USART_Cmd
  2632. 0x000000000000a27e 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  2633. 0x000000000000a27e USART_Cmd
  2634. .text.USART_SendData
  2635. 0x000000000000a294 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  2636. 0x000000000000a294 USART_SendData
  2637. .text.USART_GetFlagStatus
  2638. 0x000000000000a29c 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  2639. 0x000000000000a29c USART_GetFlagStatus
  2640. .text.Delay_Init
  2641. 0x000000000000a2a6 0x30 ./SRC/Debug/debug.o
  2642. 0x000000000000a2a6 Delay_Init
  2643. .text.Delay_Us
  2644. 0x000000000000a2d6 0x3a ./SRC/Debug/debug.o
  2645. 0x000000000000a2d6 Delay_Us
  2646. .text.Delay_Ms
  2647. 0x000000000000a310 0x3a ./SRC/Debug/debug.o
  2648. 0x000000000000a310 Delay_Ms
  2649. .text.USART_Printf_Init
  2650. 0x000000000000a34a 0x64 ./SRC/Debug/debug.o
  2651. 0x000000000000a34a USART_Printf_Init
  2652. .text._write 0x000000000000a3ae 0x50 ./SRC/Debug/debug.o
  2653. 0x000000000000a3ae _write
  2654. .text._sbrk 0x000000000000a3fe 0x2c ./SRC/Debug/debug.o
  2655. 0x000000000000a3fe _sbrk
  2656. .text.devInfo_ReadAttrCB
  2657. 0x000000000000a42a 0x1b4 ./Profile/devinfoservice.o
  2658. .text.DevInfo_AddService
  2659. 0x000000000000a5de 0x16 ./Profile/devinfoservice.o
  2660. 0x000000000000a5de DevInfo_AddService
  2661. .text.simpleProfile_ReadAttrCB
  2662. 0x000000000000a5f4 0x7c ./Profile/gattprofile.o
  2663. .text.simpleProfile_WriteAttrCB
  2664. 0x000000000000a670 0x114 ./Profile/gattprofile.o
  2665. .text.simpleProfile_HandleConnStatusCB
  2666. 0x000000000000a784 0x4e ./Profile/gattprofile.o
  2667. .text.SimpleProfile_AddService
  2668. 0x000000000000a7d2 0x58 ./Profile/gattprofile.o
  2669. 0x000000000000a7d2 SimpleProfile_AddService
  2670. .text.SimpleProfile_RegisterAppCBs
  2671. 0x000000000000a82a 0x12 ./Profile/gattprofile.o
  2672. 0x000000000000a82a SimpleProfile_RegisterAppCBs
  2673. .text.SimpleProfile_SetParameter
  2674. 0x000000000000a83c 0xa0 ./Profile/gattprofile.o
  2675. 0x000000000000a83c SimpleProfile_SetParameter
  2676. .text.simpleProfileChar4_Notify
  2677. 0x000000000000a8dc 0x52 ./Profile/gattprofile.o
  2678. 0x000000000000a8dc simpleProfileChar4_Notify
  2679. .text.Lib_Read_Flash
  2680. 0x000000000000a92e 0x1e ./HAL/MCU.o
  2681. 0x000000000000a92e Lib_Read_Flash
  2682. .text.Lib_Write_Flash
  2683. 0x000000000000a94c 0x32 ./HAL/MCU.o
  2684. 0x000000000000a94c Lib_Write_Flash
  2685. .text.HAL_GetInterTempValue
  2686. 0x000000000000a97e 0x16c ./HAL/MCU.o
  2687. 0x000000000000a97e HAL_GetInterTempValue
  2688. .text.HAL_ProcessEvent
  2689. 0x000000000000aaea 0x96 ./HAL/MCU.o
  2690. 0x000000000000aaea HAL_ProcessEvent
  2691. .text.WCHBLE_Init
  2692. 0x000000000000ab80 0x138 ./HAL/MCU.o
  2693. 0x000000000000ab80 WCHBLE_Init
  2694. .text.HAL_Init
  2695. 0x000000000000acb8 0x40 ./HAL/MCU.o
  2696. 0x000000000000acb8 HAL_Init
  2697. .text.HAL_TimeInit
  2698. 0x000000000000acf8 0xb2 ./HAL/RTC.o
  2699. 0x000000000000acf8 HAL_TimeInit
  2700. .text.RTCAlarm_IRQHandler
  2701. 0x000000000000adaa 0x20 ./HAL/RTC.o
  2702. 0x000000000000adaa RTCAlarm_IRQHandler
  2703. .text.__umoddi3
  2704. 0x000000000000adca 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)
  2705. 0x000000000000adca __umoddi3
  2706. .text.__adddf3
  2707. 0x000000000000b154 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)
  2708. 0x000000000000b154 __adddf3
  2709. .text.__divdf3
  2710. 0x000000000000b884 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)
  2711. 0x000000000000b884 __divdf3
  2712. .text.__eqdf2 0x000000000000be38 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)
  2713. 0x000000000000be38 __nedf2
  2714. 0x000000000000be38 __eqdf2
  2715. .text.__gedf2 0x000000000000bea2 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)
  2716. 0x000000000000bea2 __gedf2
  2717. 0x000000000000bea2 __gtdf2
  2718. .text.__muldf3
  2719. 0x000000000000bf50 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)
  2720. 0x000000000000bf50 __muldf3
  2721. .text.__subdf3
  2722. 0x000000000000c408 0x73c d:/mounriver/mounriver_studio2/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)
  2723. 0x000000000000c408 __subdf3
  2724. .text.__unorddf2
  2725. 0x000000000000cb44 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)
  2726. 0x000000000000cb44 __unorddf2
  2727. .text.__floatsidf
  2728. 0x000000000000cb80 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/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  2729. 0x000000000000cb80 __floatsidf
  2730. .text.__truncdfsf2
  2731. 0x000000000000cbf0 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)
  2732. 0x000000000000cbf0 __truncdfsf2
  2733. .text.__clzsi2
  2734. 0x000000000000cd5a 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)
  2735. 0x000000000000cd5a __clzsi2
  2736. .text.malloc 0x000000000000cdc8 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)
  2737. 0x000000000000cdc8 malloc
  2738. .text.memcpy 0x000000000000cdd2 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)
  2739. 0x000000000000cdd2 memcpy
  2740. .text._free_r 0x000000000000ce84 0xb0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2741. 0x000000000000ce84 _free_r
  2742. .text._malloc_r
  2743. 0x000000000000cf34 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-mallocr.o)
  2744. 0x000000000000cf34 _malloc_r
  2745. .text.__cvt 0x000000000000d01e 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)
  2746. 0x000000000000d01e __cvt
  2747. .text.__exponent
  2748. 0x000000000000d108 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)
  2749. 0x000000000000d108 __exponent
  2750. .text._printf_float
  2751. 0x000000000000d18c 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)
  2752. 0x000000000000d18c _printf_float
  2753. .text._printf_common
  2754. 0x000000000000d650 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)
  2755. 0x000000000000d650 _printf_common
  2756. .text._printf_i
  2757. 0x000000000000d75c 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)
  2758. 0x000000000000d75c _printf_i
  2759. .text._scanf_float
  2760. 0x000000000000da00 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)
  2761. 0x000000000000da00 _scanf_float
  2762. .text.printf 0x000000000000de6c 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)
  2763. 0x000000000000de6c iprintf
  2764. 0x000000000000de6c printf
  2765. .text._puts_r 0x000000000000deae 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)
  2766. 0x000000000000deae _puts_r
  2767. .text.puts 0x000000000000df8c 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)
  2768. 0x000000000000df8c puts
  2769. .text._sbrk_r 0x000000000000df98 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)
  2770. 0x000000000000df98 _sbrk_r
  2771. .text.nanf 0x000000000000dfca 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)
  2772. 0x000000000000dfca nanf
  2773. .text.sprintf 0x000000000000dfd6 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)
  2774. 0x000000000000dfd6 siprintf
  2775. 0x000000000000dfd6 sprintf
  2776. .text.sscanf 0x000000000000e01c 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)
  2777. 0x000000000000e01c siscanf
  2778. 0x000000000000e01c sscanf
  2779. .text.__sread 0x000000000000e06e 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)
  2780. 0x000000000000e06e __sread
  2781. .text.__seofread
  2782. 0x000000000000e09c 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)
  2783. 0x000000000000e09c __seofread
  2784. .text.__swrite
  2785. 0x000000000000e0a0 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)
  2786. 0x000000000000e0a0 __swrite
  2787. .text.__sseek 0x000000000000e0ec 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)
  2788. 0x000000000000e0ec __sseek
  2789. .text.__sclose
  2790. 0x000000000000e11e 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)
  2791. 0x000000000000e11e __sclose
  2792. .text.strlen 0x000000000000e126 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)
  2793. 0x000000000000e126 strlen
  2794. .text.sulp 0x000000000000e138 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)
  2795. .text._strtod_l
  2796. 0x000000000000e186 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)
  2797. 0x000000000000e186 _strtod_l
  2798. .text._strtod_r
  2799. 0x000000000000edf2 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)
  2800. 0x000000000000edf2 _strtod_r
  2801. .text._strtol_l.isra.0
  2802. 0x000000000000ee04 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)
  2803. .text._strtol_r
  2804. 0x000000000000ef3e 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)
  2805. 0x000000000000ef3e _strtol_r
  2806. .text.__swbuf_r
  2807. 0x000000000000ef50 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)
  2808. 0x000000000000ef50 __swbuf_r
  2809. .text._write_r
  2810. 0x000000000000f012 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)
  2811. 0x000000000000f012 _write_r
  2812. .text.__swsetup_r
  2813. 0x000000000000f048 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)
  2814. 0x000000000000f048 __swsetup_r
  2815. .text._close_r
  2816. 0x000000000000f14a 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)
  2817. 0x000000000000f14a _close_r
  2818. .text.quorem 0x000000000000f17c 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)
  2819. .text._dtoa_r 0x000000000000f2b6 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)
  2820. 0x000000000000f2b6 _dtoa_r
  2821. .text.__sflush_r
  2822. 0x000000000000fecc 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)
  2823. 0x000000000000fecc __sflush_r
  2824. .text._fflush_r
  2825. 0x000000000000fffe 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)
  2826. 0x000000000000fffe _fflush_r
  2827. .text.std 0x0000000000010064 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)
  2828. .text._cleanup_r
  2829. 0x00000000000100ca 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)
  2830. 0x00000000000100ca _cleanup_r
  2831. .text.__sfmoreglue
  2832. 0x00000000000100d4 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)
  2833. 0x00000000000100d4 __sfmoreglue
  2834. .text.__sinit 0x000000000001011c 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)
  2835. 0x000000000001011c __sinit
  2836. .text.__sfp 0x000000000001018c 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)
  2837. 0x000000000001018c __sfp
  2838. .text._fwalk_reent
  2839. 0x0000000000010230 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)
  2840. 0x0000000000010230 _fwalk_reent
  2841. .text.rshift 0x000000000001029a 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)
  2842. .text.__hexdig_fun
  2843. 0x0000000000010310 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)
  2844. 0x0000000000010310 __hexdig_fun
  2845. .text.__gethex
  2846. 0x0000000000010350 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)
  2847. 0x0000000000010350 __gethex
  2848. .text.L_shift 0x000000000001081c 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)
  2849. .text.__match 0x0000000000010848 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)
  2850. 0x0000000000010848 __match
  2851. .text.__hexnan
  2852. 0x0000000000010876 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)
  2853. 0x0000000000010876 __hexnan
  2854. .text.__locale_ctype_ptr_l
  2855. 0x00000000000109d4 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)
  2856. 0x00000000000109d4 __locale_ctype_ptr_l
  2857. .text.__locale_ctype_ptr
  2858. 0x00000000000109da 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)
  2859. 0x00000000000109da __locale_ctype_ptr
  2860. .text.__localeconv_l
  2861. 0x00000000000109ee 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)
  2862. 0x00000000000109ee __localeconv_l
  2863. .text._localeconv_r
  2864. 0x00000000000109f4 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)
  2865. 0x00000000000109f4 _localeconv_r
  2866. .text._lseek_r
  2867. 0x0000000000010a08 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)
  2868. 0x0000000000010a08 _lseek_r
  2869. .text.__swhatbuf_r
  2870. 0x0000000000010a3e 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)
  2871. 0x0000000000010a3e __swhatbuf_r
  2872. .text.__smakebuf_r
  2873. 0x0000000000010a96 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)
  2874. 0x0000000000010a96 __smakebuf_r
  2875. .text.__ascii_mbtowc
  2876. 0x0000000000010b2a 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)
  2877. 0x0000000000010b2a __ascii_mbtowc
  2878. .text.memchr 0x0000000000010b5c 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)
  2879. 0x0000000000010b5c memchr
  2880. .text.__malloc_lock
  2881. 0x0000000000010b74 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)
  2882. 0x0000000000010b74 __malloc_lock
  2883. .text.__malloc_unlock
  2884. 0x0000000000010b76 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)
  2885. 0x0000000000010b76 __malloc_unlock
  2886. .text._Balloc 0x0000000000010b78 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)
  2887. 0x0000000000010b78 _Balloc
  2888. .text._Bfree 0x0000000000010c04 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)
  2889. 0x0000000000010c04 _Bfree
  2890. .text.__multadd
  2891. 0x0000000000010c48 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)
  2892. 0x0000000000010c48 __multadd
  2893. .text.__s2b 0x0000000000010ce0 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)
  2894. 0x0000000000010ce0 __s2b
  2895. .text.__hi0bits
  2896. 0x0000000000010d84 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)
  2897. 0x0000000000010d84 __hi0bits
  2898. .text.__lo0bits
  2899. 0x0000000000010dca 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)
  2900. 0x0000000000010dca __lo0bits
  2901. .text.__i2b 0x0000000000010e34 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)
  2902. 0x0000000000010e34 __i2b
  2903. .text.__multiply
  2904. 0x0000000000010e50 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)
  2905. 0x0000000000010e50 __multiply
  2906. .text.__pow5mult
  2907. 0x0000000000010f94 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)
  2908. 0x0000000000010f94 __pow5mult
  2909. .text.__lshift
  2910. 0x0000000000011052 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)
  2911. 0x0000000000011052 __lshift
  2912. .text.__mcmp 0x0000000000011120 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)
  2913. 0x0000000000011120 __mcmp
  2914. .text.__mdiff 0x0000000000011152 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)
  2915. 0x0000000000011152 __mdiff
  2916. .text.__ulp 0x0000000000011244 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)
  2917. 0x0000000000011244 __ulp
  2918. .text.__b2d 0x000000000001128a 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)
  2919. 0x000000000001128a __b2d
  2920. .text.__d2b 0x000000000001133e 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)
  2921. 0x000000000001133e __d2b
  2922. .text.__ratio 0x0000000000011412 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)
  2923. 0x0000000000011412 __ratio
  2924. .text.__copybits
  2925. 0x0000000000011486 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)
  2926. 0x0000000000011486 __copybits
  2927. .text.__any_on
  2928. 0x00000000000114bc 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)
  2929. 0x00000000000114bc __any_on
  2930. .text._calloc_r
  2931. 0x0000000000011502 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)
  2932. 0x0000000000011502 _calloc_r
  2933. .text._realloc_r
  2934. 0x000000000001152a 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)
  2935. 0x000000000001152a _realloc_r
  2936. .text.__ssputs_r
  2937. 0x0000000000011584 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)
  2938. 0x0000000000011584 __ssputs_r
  2939. .text._svfprintf_r
  2940. 0x0000000000011668 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)
  2941. 0x0000000000011668 _svfiprintf_r
  2942. 0x0000000000011668 _svfprintf_r
  2943. .text._sungetc_r
  2944. 0x00000000000118d0 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)
  2945. 0x00000000000118d0 _sungetc_r
  2946. .text.__ssrefill_r
  2947. 0x0000000000011966 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)
  2948. 0x0000000000011966 __ssrefill_r
  2949. .text.__ssvfscanf_r
  2950. 0x00000000000119aa 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)
  2951. 0x00000000000119aa __ssvfiscanf_r
  2952. 0x00000000000119aa __ssvfscanf_r
  2953. .text.__sfputc_r
  2954. 0x0000000000011d48 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)
  2955. .text.__sfputs_r
  2956. 0x0000000000011d70 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)
  2957. 0x0000000000011d70 __sfputs_r
  2958. .text._vfprintf_r
  2959. 0x0000000000011db2 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)
  2960. 0x0000000000011db2 _vfprintf_r
  2961. 0x0000000000011db2 _vfiprintf_r
  2962. .text._scanf_chars
  2963. 0x000000000001203e 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)
  2964. 0x000000000001203e _scanf_chars
  2965. .text._scanf_i
  2966. 0x0000000000012120 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)
  2967. 0x0000000000012120 _scanf_i
  2968. .text._read_r 0x0000000000012378 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)
  2969. 0x0000000000012378 _read_r
  2970. .text.__sccl 0x00000000000123ae 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)
  2971. 0x00000000000123ae __sccl
  2972. .text.strncmp 0x0000000000012430 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)
  2973. 0x0000000000012430 strncmp
  2974. .text._strtoul_l.isra.0
  2975. 0x0000000000012458 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)
  2976. .text._strtoul_r
  2977. 0x0000000000012588 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)
  2978. 0x0000000000012588 _strtoul_r
  2979. .text.__submore
  2980. 0x000000000001259a 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)
  2981. 0x000000000001259a __submore
  2982. .text.__ascii_wctomb
  2983. 0x0000000000012620 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)
  2984. 0x0000000000012620 __ascii_wctomb
  2985. .text._fstat_r
  2986. 0x000000000001263e 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)
  2987. 0x000000000001263e _fstat_r
  2988. .text._isatty_r
  2989. 0x0000000000012670 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)
  2990. 0x0000000000012670 _isatty_r
  2991. .text.memmove 0x00000000000126a0 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)
  2992. 0x00000000000126a0 memmove
  2993. .text._malloc_usable_size_r
  2994. 0x00000000000126e6 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)
  2995. 0x00000000000126e6 _malloc_usable_size_r
  2996. .text.__ledf2 0x00000000000126fa 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)
  2997. 0x00000000000126fa __ledf2
  2998. 0x00000000000126fa __ltdf2
  2999. .text.__fixdfsi
  3000. 0x00000000000127b0 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)
  3001. 0x00000000000127b0 __fixdfsi
  3002. .text.__fixunsdfsi
  3003. 0x0000000000012818 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)
  3004. 0x0000000000012818 __fixunsdfsi
  3005. .text.__floatunsidf
  3006. 0x0000000000012874 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)
  3007. 0x0000000000012874 __floatunsidf
  3008. .text.__extenddftf2
  3009. 0x00000000000128dc 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)
  3010. 0x00000000000128dc __extenddftf2
  3011. .text.__trunctfdf2
  3012. 0x0000000000012a7c 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)
  3013. 0x0000000000012a7c __trunctfdf2
  3014. .text._close 0x0000000000012c9a 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)
  3015. 0x0000000000012c9a _close
  3016. .text._fstat 0x0000000000012caa 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)
  3017. 0x0000000000012caa _fstat
  3018. .text._isatty 0x0000000000012cba 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)
  3019. 0x0000000000012cba _isatty
  3020. .text._lseek 0x0000000000012cca 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)
  3021. 0x0000000000012cca _lseek
  3022. .text._read 0x0000000000012cda 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)
  3023. 0x0000000000012cda _read
  3024. *(.rodata)
  3025. *fill* 0x0000000000012cea 0x2
  3026. .rodata 0x0000000000012cec 0x100 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3027. *(.rodata*)
  3028. .rodata.vUser_ws2812b_check
  3029. 0x0000000000012dec 0x14 ./components/ws2812b/user_ws2812b.o
  3030. .rodata.vUser_ws2812b_set_lock_stat
  3031. 0x0000000000012e00 0x14 ./components/ws2812b/user_ws2812b.o
  3032. .rodata.vUser_ws2812b_init.str1.4
  3033. 0x0000000000012e14 0x19 ./components/ws2812b/user_ws2812b.o
  3034. *fill* 0x0000000000012e2d 0x3
  3035. .rodata.vUser_ws2812b_set_lock_stat.str1.4
  3036. 0x0000000000012e30 0x47 ./components/ws2812b/user_ws2812b.o
  3037. *fill* 0x0000000000012e77 0x1
  3038. .rodata.InvSBox
  3039. 0x0000000000012e78 0x100 ./components/tools/AES_PKCS7.o
  3040. .rodata.SBox 0x0000000000012f78 0x100 ./components/tools/AES_PKCS7.o
  3041. .rodata.led_task_init.str1.4
  3042. 0x0000000000013078 0x10 ./components/led/user_led.o
  3043. .rodata.vUser_elect_task_init.str1.4
  3044. 0x0000000000013088 0x12 ./components/electlock/user_elect.o
  3045. *fill* 0x000000000001309a 0x2
  3046. .rodata.User_Config_Read_Config.str1.4
  3047. 0x000000000001309c 0x61 ./components/config/user_config.o
  3048. *fill* 0x00000000000130fd 0x3
  3049. .rodata.set_dispsw_addr
  3050. 0x0000000000013100 0x20 ./components/can/dip_sw.o
  3051. .rodata.vUser_can_init.str1.4
  3052. 0x0000000000013120 0x15 ./components/can/user_can.o
  3053. *fill* 0x0000000000013135 0x3
  3054. .rodata.vUser_can_set_addr.str1.4
  3055. 0x0000000000013138 0xc ./components/can/user_can.o
  3056. .rodata.download_ble_data_callback.str1.4
  3057. 0x0000000000013144 0x7e ./components/action/ble_action.o
  3058. *fill* 0x00000000000131c2 0x2
  3059. .rodata.user_server_task_process_event.str1.4
  3060. 0x00000000000131c4 0x1d ./components/action/user_sever.o
  3061. *fill* 0x00000000000131e1 0x3
  3062. .rodata.vUser_server_init.str1.4
  3063. 0x00000000000131e4 0x18 ./components/action/user_sever.o
  3064. .rodata.main.str1.4
  3065. 0x00000000000131fc 0x22 ./User/app_main.o
  3066. *fill* 0x000000000001321e 0x2
  3067. .rodata.peripheralStateNotificationCB
  3068. 0x0000000000013220 0x18 ./User/peripheral.o
  3069. .rodata.Peripheral_ProcessEvent.str1.4
  3070. 0x0000000000013238 0x42 ./User/peripheral.o
  3071. *fill* 0x000000000001327a 0x2
  3072. .rodata.ble_data_send.str1.4
  3073. 0x000000000001327c 0xf ./User/peripheral.o
  3074. *fill* 0x000000000001328b 0x1
  3075. .rodata.peripheralParamUpdateCB.str1.4
  3076. 0x000000000001328c 0x1e ./User/peripheral.o
  3077. *fill* 0x00000000000132aa 0x2
  3078. .rodata.peripheralStateNotificationCB.str1.4
  3079. 0x00000000000132ac 0xb7 ./User/peripheral.o
  3080. *fill* 0x0000000000013363 0x1
  3081. .rodata.devInfo11073Cert
  3082. 0x0000000000013364 0xe ./Profile/devinfoservice.o
  3083. *fill* 0x0000000000013372 0x2
  3084. .rodata.devInfoFirmwareRev
  3085. 0x0000000000013374 0x12 ./Profile/devinfoservice.o
  3086. *fill* 0x0000000000013386 0x2
  3087. .rodata.devInfoHardwareRev
  3088. 0x0000000000013388 0x12 ./Profile/devinfoservice.o
  3089. *fill* 0x000000000001339a 0x2
  3090. .rodata.devInfoMfrName
  3091. 0x000000000001339c 0x12 ./Profile/devinfoservice.o
  3092. *fill* 0x00000000000133ae 0x2
  3093. .rodata.devInfoModelNumber
  3094. 0x00000000000133b0 0xd ./Profile/devinfoservice.o
  3095. *fill* 0x00000000000133bd 0x3
  3096. .rodata.devInfoSerialNumber
  3097. 0x00000000000133c0 0xe ./Profile/devinfoservice.o
  3098. *fill* 0x00000000000133ce 0x2
  3099. .rodata.devInfoSoftwareRev
  3100. 0x00000000000133d0 0x12 ./Profile/devinfoservice.o
  3101. *fill* 0x00000000000133e2 0x2
  3102. .rodata.HAL_ProcessEvent.str1.4
  3103. 0x00000000000133e4 0x3 ./HAL/MCU.o
  3104. *fill* 0x00000000000133e7 0x1
  3105. .rodata.WCHBLE_Init.str1.4
  3106. 0x00000000000133e8 0x49 ./HAL/MCU.o
  3107. *fill* 0x0000000000013431 0x3
  3108. .rodata.HAL_TimeInit.str1.4
  3109. 0x0000000000013434 0x27 ./HAL/RTC.o
  3110. *fill* 0x000000000001345b 0x1
  3111. .rodata.str1.4
  3112. 0x000000000001345c 0x1a d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3113. *fill* 0x0000000000013476 0x2
  3114. .rodata.str1.4
  3115. 0x0000000000013478 0x41 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3116. *fill* 0x00000000000134b9 0x3
  3117. .rodata.__divdf3
  3118. 0x00000000000134bc 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)
  3119. .rodata.__muldf3
  3120. 0x00000000000134fc 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)
  3121. .rodata.__clz_tab
  3122. 0x000000000001353c 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)
  3123. 0x000000000001353c __clz_tab
  3124. *fill* 0x000000000001363c 0x4
  3125. .rodata._printf_float.cst8
  3126. 0x0000000000013640 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)
  3127. .rodata._printf_float.str1.4
  3128. 0x0000000000013648 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)
  3129. *fill* 0x000000000001365a 0x2
  3130. .rodata._printf_i.str1.4
  3131. 0x000000000001365c 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)
  3132. *fill* 0x0000000000013681 0x3
  3133. .rodata._scanf_float.str1.4
  3134. 0x0000000000013684 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)
  3135. *fill* 0x0000000000013689 0x3
  3136. .rodata.nanf.cst4
  3137. 0x000000000001368c 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)
  3138. .rodata._strtod_l
  3139. 0x0000000000013690 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)
  3140. *fill* 0x00000000000136a4 0x4
  3141. .rodata._strtod_l.cst8
  3142. 0x00000000000136a8 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-strtod.o)
  3143. .rodata._strtod_l.str1.4
  3144. 0x00000000000136e0 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)
  3145. *fill* 0x00000000000136ef 0x1
  3146. .rodata.fpi.3395
  3147. 0x00000000000136f0 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)
  3148. .rodata.fpinan.3431
  3149. 0x0000000000013704 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)
  3150. .rodata.tinytens
  3151. 0x0000000000013718 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)
  3152. .rodata._dtoa_r.cst8
  3153. 0x0000000000013740 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)
  3154. 0x48 (size before relaxing)
  3155. .rodata._dtoa_r.str1.4
  3156. 0x0000000000013778 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)
  3157. 0x12 (size before relaxing)
  3158. .rodata.__sf_fake_stderr
  3159. 0x0000000000013788 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)
  3160. 0x0000000000013788 __sf_fake_stderr
  3161. .rodata.__sf_fake_stdin
  3162. 0x00000000000137a8 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)
  3163. 0x00000000000137a8 __sf_fake_stdin
  3164. .rodata.__sf_fake_stdout
  3165. 0x00000000000137c8 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)
  3166. 0x00000000000137c8 __sf_fake_stdout
  3167. .rodata._setlocale_r.str1.4
  3168. 0x00000000000137e8 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)
  3169. 0xd (size before relaxing)
  3170. .rodata.str1.4
  3171. 0x00000000000137f2 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)
  3172. 0x2 (size before relaxing)
  3173. *fill* 0x00000000000137f2 0x6
  3174. .rodata.__mprec_bigtens
  3175. 0x00000000000137f8 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)
  3176. 0x00000000000137f8 __mprec_bigtens
  3177. .rodata.__mprec_tens
  3178. 0x0000000000013820 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)
  3179. 0x0000000000013820 __mprec_tens
  3180. .rodata.p05.3319
  3181. 0x00000000000138e8 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)
  3182. .rodata._svfprintf_r.str1.4
  3183. 0x00000000000138f4 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)
  3184. .rodata.__ssvfscanf_r.str1.4
  3185. 0x0000000000013907 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)
  3186. .rodata._vfprintf_r.str1.4
  3187. 0x0000000000013907 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)
  3188. *fill* 0x0000000000013907 0x1
  3189. .rodata._scanf_i.str1.4
  3190. 0x0000000000013908 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)
  3191. *fill* 0x000000000001391a 0x2
  3192. .rodata.str1.4
  3193. 0x000000000001391c 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)
  3194. 0xb (size before relaxing)
  3195. .rodata._ctype_
  3196. 0x0000000000013928 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)
  3197. 0x0000000000013928 _ctype_
  3198. *(.sdata2.*)
  3199. *fill* 0x0000000000013a29 0x3
  3200. .sdata2.Address
  3201. 0x0000000000013a2c 0x4 ./User/app_main.o
  3202. 0x0000000000013a2c Address
  3203. .sdata2.devInfo11073CertUUID
  3204. 0x0000000000013a30 0x2 ./Profile/devinfoservice.o
  3205. 0x0000000000013a30 devInfo11073CertUUID
  3206. *fill* 0x0000000000013a32 0x2
  3207. .sdata2.devInfoFirmwareRevUUID
  3208. 0x0000000000013a34 0x2 ./Profile/devinfoservice.o
  3209. 0x0000000000013a34 devInfoFirmwareRevUUID
  3210. *fill* 0x0000000000013a36 0x2
  3211. .sdata2.devInfoHardwareRevUUID
  3212. 0x0000000000013a38 0x2 ./Profile/devinfoservice.o
  3213. 0x0000000000013a38 devInfoHardwareRevUUID
  3214. *fill* 0x0000000000013a3a 0x2
  3215. .sdata2.devInfoMfrNameUUID
  3216. 0x0000000000013a3c 0x2 ./Profile/devinfoservice.o
  3217. 0x0000000000013a3c devInfoMfrNameUUID
  3218. *fill* 0x0000000000013a3e 0x2
  3219. .sdata2.devInfoModelNumberUUID
  3220. 0x0000000000013a40 0x2 ./Profile/devinfoservice.o
  3221. 0x0000000000013a40 devInfoModelNumberUUID
  3222. *fill* 0x0000000000013a42 0x2
  3223. .sdata2.devInfoPnpIdUUID
  3224. 0x0000000000013a44 0x2 ./Profile/devinfoservice.o
  3225. 0x0000000000013a44 devInfoPnpIdUUID
  3226. *fill* 0x0000000000013a46 0x2
  3227. .sdata2.devInfoSerialNumberUUID
  3228. 0x0000000000013a48 0x2 ./Profile/devinfoservice.o
  3229. 0x0000000000013a48 devInfoSerialNumberUUID
  3230. *fill* 0x0000000000013a4a 0x2
  3231. .sdata2.devInfoServUUID
  3232. 0x0000000000013a4c 0x2 ./Profile/devinfoservice.o
  3233. 0x0000000000013a4c devInfoServUUID
  3234. *fill* 0x0000000000013a4e 0x2
  3235. .sdata2.devInfoService
  3236. 0x0000000000013a50 0x8 ./Profile/devinfoservice.o
  3237. .sdata2.devInfoSoftwareRevUUID
  3238. 0x0000000000013a58 0x2 ./Profile/devinfoservice.o
  3239. 0x0000000000013a58 devInfoSoftwareRevUUID
  3240. *fill* 0x0000000000013a5a 0x2
  3241. .sdata2.devInfoSystemIdUUID
  3242. 0x0000000000013a5c 0x2 ./Profile/devinfoservice.o
  3243. 0x0000000000013a5c devInfoSystemIdUUID
  3244. *fill* 0x0000000000013a5e 0x2
  3245. .sdata2.simpleProfileServUUID
  3246. 0x0000000000013a60 0x2 ./Profile/gattprofile.o
  3247. 0x0000000000013a60 simpleProfileServUUID
  3248. *fill* 0x0000000000013a62 0x2
  3249. .sdata2.simpleProfileService
  3250. 0x0000000000013a64 0x8 ./Profile/gattprofile.o
  3251. .sdata2.simpleProfilechar1UUID
  3252. 0x0000000000013a6c 0x2 ./Profile/gattprofile.o
  3253. 0x0000000000013a6c simpleProfilechar1UUID
  3254. *fill* 0x0000000000013a6e 0x2
  3255. .sdata2.simpleProfilechar2UUID
  3256. 0x0000000000013a70 0x2 ./Profile/gattprofile.o
  3257. 0x0000000000013a70 simpleProfilechar2UUID
  3258. *fill* 0x0000000000013a72 0x2
  3259. .sdata2.simpleProfilechar3UUID
  3260. 0x0000000000013a74 0x2 ./Profile/gattprofile.o
  3261. 0x0000000000013a74 simpleProfilechar3UUID
  3262. *fill* 0x0000000000013a76 0x2
  3263. .sdata2.simpleProfilechar4UUID
  3264. 0x0000000000013a78 0x2 ./Profile/gattprofile.o
  3265. 0x0000000000013a78 simpleProfilechar4UUID
  3266. *fill* 0x0000000000013a7a 0x2
  3267. .sdata2._global_impure_ptr
  3268. 0x0000000000013a7c 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)
  3269. 0x0000000000013a7c _global_impure_ptr
  3270. *(.gnu.linkonce.t.*)
  3271. 0x0000000000013a80 . = ALIGN (0x4)
  3272. .rela.dyn 0x0000000000013a80 0x0
  3273. .rela.init 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3274. .rela.vector 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3275. .rela.text.handle_reset
  3276. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3277. .rela.text._sbrk
  3278. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3279. .rela.sdata.curbrk.4953
  3280. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3281. .rela.got 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3282. .rela.text._sbrk_r
  3283. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3284. .rela.text._write_r
  3285. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3286. .rela.text._close_r
  3287. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3288. .rela.text._lseek_r
  3289. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3290. .rela.text._svfprintf_r
  3291. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3292. .rela.text.__ssvfscanf_r
  3293. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3294. .rela.text._vfprintf_r
  3295. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3296. .rela.text._read_r
  3297. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3298. .rela.text._fstat_r
  3299. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3300. .rela.text._isatty_r
  3301. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3302. .rela.text._close
  3303. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3304. .rela.text._fstat
  3305. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3306. .rela.text._isatty
  3307. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3308. .rela.text._lseek
  3309. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3310. .rela.text._read
  3311. 0x0000000000013a80 0x0 ./components/ws2812b/user_spi.o
  3312. .fini 0x0000000000013a80 0x0
  3313. *(SORT_NONE(.fini))
  3314. 0x0000000000013a80 . = ALIGN (0x4)
  3315. [!provide] PROVIDE (_etext = .)
  3316. [!provide] PROVIDE (_eitcm = .)
  3317. .preinit_array 0x0000000000013a80 0x0
  3318. [!provide] PROVIDE (__preinit_array_start = .)
  3319. *(.preinit_array)
  3320. [!provide] PROVIDE (__preinit_array_end = .)
  3321. .init_array 0x0000000000013a80 0x0
  3322. [!provide] PROVIDE (__init_array_start = .)
  3323. *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
  3324. *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
  3325. [!provide] PROVIDE (__init_array_end = .)
  3326. .fini_array 0x0000000000013a80 0x0
  3327. [!provide] PROVIDE (__fini_array_start = .)
  3328. *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
  3329. *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
  3330. [!provide] PROVIDE (__fini_array_end = .)
  3331. .ctors
  3332. *crtbegin.o(.ctors)
  3333. *crtbegin?.o(.ctors)
  3334. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
  3335. *(SORT_BY_NAME(.ctors.*))
  3336. *(.ctors)
  3337. .dtors
  3338. *crtbegin.o(.dtors)
  3339. *crtbegin?.o(.dtors)
  3340. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
  3341. *(SORT_BY_NAME(.dtors.*))
  3342. *(.dtors)
  3343. .dalign 0x0000000020004000 0x0 load address 0x0000000000013a80
  3344. 0x0000000020004000 . = ALIGN (0x4)
  3345. 0x0000000020004000 PROVIDE (_data_vma = .)
  3346. .dlalign 0x0000000000013a80 0x0
  3347. 0x0000000000013a80 . = ALIGN (0x4)
  3348. 0x0000000000013a80 PROVIDE (_data_lma = .)
  3349. .data 0x0000000020004000 0x7a0 load address 0x0000000000013a80
  3350. *(.gnu.linkonce.r.*)
  3351. *(.data .data.*)
  3352. .data.user_ws2812b_work
  3353. 0x0000000020004000 0x58 ./components/ws2812b/user_ws2812b.o
  3354. .data.led_work
  3355. 0x0000000020004058 0x140 ./components/led/user_led.o
  3356. .data.elect_work
  3357. 0x0000000020004198 0x38 ./components/electlock/user_elect.o
  3358. .data.user_config_param
  3359. 0x00000000200041d0 0x4d ./components/config/user_config.o
  3360. 0x00000000200041d0 user_config_param
  3361. *fill* 0x000000002000421d 0x3
  3362. .data.dipsw_work
  3363. 0x0000000020004220 0x60 ./components/can/dip_sw.o
  3364. .data.cabi_data
  3365. 0x0000000020004280 0x12 ./components/action/user_sever.o
  3366. *fill* 0x0000000020004292 0x2
  3367. .data.Peripheral_PeripheralCBs
  3368. 0x0000000020004294 0xc ./User/peripheral.o
  3369. .data.advertData
  3370. 0x00000000200042a0 0x15 ./User/peripheral.o
  3371. *fill* 0x00000000200042b5 0x3
  3372. .data.attDeviceName
  3373. 0x00000000200042b8 0x15 ./User/peripheral.o
  3374. *fill* 0x00000000200042cd 0x3
  3375. .data.scanRspData
  3376. 0x00000000200042d0 0x12 ./User/peripheral.o
  3377. *fill* 0x00000000200042e2 0x2
  3378. .data.AHBPrescTable
  3379. 0x00000000200042e4 0x10 ./User/system_ch32v20x.o
  3380. 0x00000000200042e4 AHBPrescTable
  3381. .data.APBAHBPrescTable
  3382. 0x00000000200042f4 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3383. .data.devInfoAttrTbl
  3384. 0x0000000020004304 0x130 ./Profile/devinfoservice.o
  3385. .data.devInfoCBs
  3386. 0x0000000020004434 0xc ./Profile/devinfoservice.o
  3387. 0x0000000020004434 devInfoCBs
  3388. .data.simpleProfileAttrTbl
  3389. 0x0000000020004440 0xe0 ./Profile/gattprofile.o
  3390. .data.simpleProfileCBs
  3391. 0x0000000020004520 0xc ./Profile/gattprofile.o
  3392. 0x0000000020004520 simpleProfileCBs
  3393. .data.simpleProfileChar1UserDesp
  3394. 0x000000002000452c 0x12 ./Profile/gattprofile.o
  3395. *fill* 0x000000002000453e 0x2
  3396. .data.simpleProfileChar2UserDesp
  3397. 0x0000000020004540 0x12 ./Profile/gattprofile.o
  3398. *fill* 0x0000000020004552 0x2
  3399. .data.simpleProfileChar3UserDesp
  3400. 0x0000000020004554 0x12 ./Profile/gattprofile.o
  3401. *fill* 0x0000000020004566 0x2
  3402. .data.simpleProfileChar4UserDesp
  3403. 0x0000000020004568 0x12 ./Profile/gattprofile.o
  3404. *fill* 0x000000002000457a 0x2
  3405. .data 0x000000002000457c 0xd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3406. *fill* 0x0000000020004589 0x3
  3407. .data.rel.local
  3408. 0x000000002000458c 0x4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3409. 0x000000002000458c base64char
  3410. .data.impure_data
  3411. 0x0000000020004590 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)
  3412. .data.__global_locale
  3413. 0x00000000200045f0 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)
  3414. 0x00000000200045f0 __global_locale
  3415. *(.gnu.linkonce.d.*)
  3416. 0x0000000020004760 . = ALIGN (0x8)
  3417. *fill* 0x000000002000475c 0x4
  3418. *(.sdata .sdata.*)
  3419. .sdata.user_ws2812b_task_id
  3420. 0x0000000020004760 0x1 ./components/ws2812b/user_ws2812b.o
  3421. 0x0000000020004760 user_ws2812b_task_id
  3422. .sdata.led_task_id
  3423. 0x0000000020004761 0x1 ./components/led/user_led.o
  3424. 0x0000000020004761 led_task_id
  3425. .sdata.elect_task_id
  3426. 0x0000000020004762 0x1 ./components/electlock/user_elect.o
  3427. 0x0000000020004762 elect_task_id
  3428. .sdata.user_can_task_id
  3429. 0x0000000020004763 0x1 ./components/can/user_can.o
  3430. 0x0000000020004763 user_can_task_id
  3431. .sdata.can_idx
  3432. 0x0000000020004764 0x1 ./components/action/user_sever.o
  3433. *fill* 0x0000000020004765 0x3
  3434. .sdata.offline_timeout
  3435. 0x0000000020004768 0x4 ./components/action/user_sever.o
  3436. .sdata.rst_timeout
  3437. 0x000000002000476c 0x1 ./components/action/user_sever.o
  3438. .sdata.user_server_task_id
  3439. 0x000000002000476d 0x1 ./components/action/user_sever.o
  3440. 0x000000002000476d user_server_task_id
  3441. *fill* 0x000000002000476e 0x2
  3442. .sdata.Peripheral_SimpleProfileCBs
  3443. 0x0000000020004770 0x4 ./User/peripheral.o
  3444. .sdata.Peripheral_TaskID
  3445. 0x0000000020004774 0x1 ./User/peripheral.o
  3446. .sdata.peripheralMTU
  3447. 0x0000000020004775 0x1 ./User/peripheral.o
  3448. *fill* 0x0000000020004776 0x2
  3449. .sdata.SystemCoreClock
  3450. 0x0000000020004778 0x4 ./User/system_ch32v20x.o
  3451. 0x0000000020004778 SystemCoreClock
  3452. .sdata.ADCPrescTable
  3453. 0x000000002000477c 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3454. .sdata.curbrk.4953
  3455. 0x0000000020004780 0x4 ./SRC/Debug/debug.o
  3456. .sdata.devInfo11073CertProps
  3457. 0x0000000020004784 0x1 ./Profile/devinfoservice.o
  3458. .sdata.devInfoFirmwareRevProps
  3459. 0x0000000020004785 0x1 ./Profile/devinfoservice.o
  3460. .sdata.devInfoHardwareRevProps
  3461. 0x0000000020004786 0x1 ./Profile/devinfoservice.o
  3462. .sdata.devInfoMfrNameProps
  3463. 0x0000000020004787 0x1 ./Profile/devinfoservice.o
  3464. .sdata.devInfoModelNumberProps
  3465. 0x0000000020004788 0x1 ./Profile/devinfoservice.o
  3466. *fill* 0x0000000020004789 0x3
  3467. .sdata.devInfoPnpId
  3468. 0x000000002000478c 0x7 ./Profile/devinfoservice.o
  3469. .sdata.devInfoPnpIdProps
  3470. 0x0000000020004793 0x1 ./Profile/devinfoservice.o
  3471. .sdata.devInfoSerialNumberProps
  3472. 0x0000000020004794 0x1 ./Profile/devinfoservice.o
  3473. .sdata.devInfoSoftwareRevProps
  3474. 0x0000000020004795 0x1 ./Profile/devinfoservice.o
  3475. .sdata.devInfoSystemIdProps
  3476. 0x0000000020004796 0x1 ./Profile/devinfoservice.o
  3477. .sdata.simpleProfileChar1Props
  3478. 0x0000000020004797 0x1 ./Profile/gattprofile.o
  3479. .sdata.simpleProfileChar2Props
  3480. 0x0000000020004798 0x1 ./Profile/gattprofile.o
  3481. .sdata.simpleProfileChar3Props
  3482. 0x0000000020004799 0x1 ./Profile/gattprofile.o
  3483. .sdata.simpleProfileChar4Props
  3484. 0x000000002000479a 0x1 ./Profile/gattprofile.o
  3485. *fill* 0x000000002000479b 0x1
  3486. .sdata._impure_ptr
  3487. 0x000000002000479c 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)
  3488. 0x000000002000479c _impure_ptr
  3489. *(.gnu.linkonce.s.*)
  3490. 0x00000000200047a0 . = ALIGN (0x8)
  3491. *(.srodata.cst16)
  3492. *(.srodata.cst8)
  3493. *(.srodata.cst4)
  3494. *(.srodata.cst2)
  3495. *(.srodata .srodata.*)
  3496. 0x00000000200047a0 . = ALIGN (0x4)
  3497. 0x00000000200047a0 PROVIDE (_edata = .)
  3498. .got 0x00000000200047a0 0x8 load address 0x0000000000014220
  3499. .got 0x00000000200047a0 0x8 ./components/ws2812b/user_spi.o
  3500. 0x00000000200047a0 _GLOBAL_OFFSET_TABLE_
  3501. .got.plt 0x00000000200047a8 0x8 load address 0x0000000000014228
  3502. .got.plt 0x00000000200047a8 0x8 ./components/ws2812b/user_spi.o
  3503. .bss 0x00000000200047b0 0x21b0 load address 0x0000000000014230
  3504. 0x00000000200047b0 . = ALIGN (0x4)
  3505. 0x00000000200047b0 PROVIDE (_sbss = .)
  3506. *(.sbss*)
  3507. .sbss.alarm_stat
  3508. 0x00000000200047b0 0x4 ./components/led/user_led.o
  3509. .sbss.elect_in_upload
  3510. 0x00000000200047b4 0x4 ./components/electlock/user_elect.o
  3511. .sbss.dipsw_addr
  3512. 0x00000000200047b8 0x1 ./components/can/dip_sw.o
  3513. *fill* 0x00000000200047b9 0x3
  3514. .sbss.dipsw_upload
  3515. 0x00000000200047bc 0x4 ./components/can/dip_sw.o
  3516. 0x00000000200047bc dipsw_upload
  3517. .sbss.can_node_id
  3518. 0x00000000200047c0 0x1 ./components/can/user_can.o
  3519. *fill* 0x00000000200047c1 0x3
  3520. .sbss.xRecv_data
  3521. 0x00000000200047c4 0x4 ./components/can/user_can.o
  3522. .sbss.token 0x00000000200047c8 0x4 ./components/action/ble_action.o
  3523. .sbss.unixTime
  3524. 0x00000000200047cc 0x4 ./components/action/ble_action.o
  3525. .sbss.upload_ble_data
  3526. 0x00000000200047d0 0x4 ./components/action/ble_action.o
  3527. .sbss.can_open_data
  3528. 0x00000000200047d4 0x8 ./components/action/user_sever.o
  3529. .sbss.offline_stat
  3530. 0x00000000200047dc 0x1 ./components/action/user_sever.o
  3531. *fill* 0x00000000200047dd 0x3
  3532. .sbss.MacAddr 0x00000000200047e0 0x6 ./User/app_main.o
  3533. 0x00000000200047e0 MacAddr
  3534. *fill* 0x00000000200047e6 0x2
  3535. .sbss.Broadcaster_BroadcasterCBs
  3536. 0x00000000200047e8 0x8 ./User/peripheral.o
  3537. .sbss.ble_connect
  3538. 0x00000000200047f0 0x4 ./User/peripheral.o
  3539. .sbss.download_ble_data
  3540. 0x00000000200047f4 0x4 ./User/peripheral.o
  3541. .sbss.download_ble_file
  3542. 0x00000000200047f8 0x4 ./User/peripheral.o
  3543. .sbss.peripheralConnList
  3544. 0x00000000200047fc 0x8 ./User/peripheral.o
  3545. .sbss.NVIC_Priority_Group
  3546. 0x0000000020004804 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
  3547. 0x0000000020004804 NVIC_Priority_Group
  3548. .sbss.p_ms 0x0000000020004808 0x2 ./SRC/Debug/debug.o
  3549. .sbss.p_us 0x000000002000480a 0x1 ./SRC/Debug/debug.o
  3550. *fill* 0x000000002000480b 0x1
  3551. .sbss.devInfoSystemId
  3552. 0x000000002000480c 0x8 ./Profile/devinfoservice.o
  3553. .sbss.simpleProfile_AppCBs
  3554. 0x0000000020004814 0x4 ./Profile/gattprofile.o
  3555. .sbss.g_LLE_IRQLibHandlerLocation
  3556. 0x0000000020004818 0x4 ./HAL/MCU.o
  3557. 0x0000000020004818 g_LLE_IRQLibHandlerLocation
  3558. .sbss.halTaskID
  3559. 0x000000002000481c 0x1 ./HAL/MCU.o
  3560. 0x000000002000481c halTaskID
  3561. *fill* 0x000000002000481d 0x3
  3562. .sbss.RTCTigFlag
  3563. 0x0000000020004820 0x4 ./HAL/RTC.o
  3564. 0x0000000020004820 RTCTigFlag
  3565. .sbss.__malloc_free_list
  3566. 0x0000000020004824 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)
  3567. 0x0000000020004824 __malloc_free_list
  3568. .sbss.__malloc_sbrk_start
  3569. 0x0000000020004828 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)
  3570. 0x0000000020004828 __malloc_sbrk_start
  3571. *(.gnu.linkonce.sb.*)
  3572. *(.bss*)
  3573. .bss.g_roundKeyTable
  3574. 0x000000002000482c 0xb0 ./components/tools/AES_PKCS7.o
  3575. .bss.user_can_work
  3576. 0x00000000200048dc 0x20 ./components/can/user_can.o
  3577. *fill* 0x00000000200048fc 0x4
  3578. .bss.block_buf
  3579. 0x0000000020004900 0x100 ./components/action/ble_action.o
  3580. 0x0000000020004900 block_buf
  3581. .bss.MEM_BUF 0x0000000020004a00 0x1c00 ./User/app_main.o
  3582. 0x0000000020004a00 MEM_BUF
  3583. .bss.Peripheral_BondMgrCBs
  3584. 0x0000000020006600 0xc ./User/peripheral.o
  3585. .bss.simpleProfileChar1
  3586. 0x000000002000660c 0x100 ./Profile/gattprofile.o
  3587. .bss.simpleProfileChar2
  3588. 0x000000002000670c 0x100 ./Profile/gattprofile.o
  3589. .bss.simpleProfileChar3
  3590. 0x000000002000680c 0x100 ./Profile/gattprofile.o
  3591. .bss.simpleProfileChar4
  3592. 0x000000002000690c 0x40 ./Profile/gattprofile.o
  3593. .bss.simpleProfileChar4Config
  3594. 0x000000002000694c 0x10 ./Profile/gattprofile.o
  3595. *(.gnu.linkonce.b.*)
  3596. *(COMMON*)
  3597. COMMON 0x000000002000695c 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)
  3598. 0x000000002000695c errno
  3599. 0x0000000020006960 . = ALIGN (0x4)
  3600. 0x0000000020006960 PROVIDE (_ebss = .)
  3601. 0x0000000020006960 PROVIDE (_end = _ebss)
  3602. [!provide] PROVIDE (end = .)
  3603. .stack 0x0000000020010000 0x0
  3604. 0x0000000020010000 PROVIDE (_heap_end = .)
  3605. 0x0000000020010000 . = ALIGN (0x4)
  3606. 0x0000000020010000 PROVIDE (_eusrstack = .)
  3607. OUTPUT(mainboard.elf elf32-littleriscv)
  3608. .debug_info 0x0000000000000000 0x3152e
  3609. .debug_info 0x0000000000000000 0x1492 ./components/ws2812b/user_spi.o
  3610. .debug_info 0x0000000000001492 0x1667 ./components/ws2812b/user_ws2812b.o
  3611. .debug_info 0x0000000000002af9 0x1170 ./components/tools/AES_PKCS7.o
  3612. .debug_info 0x0000000000003c69 0x11e2 ./components/tools/_string.o
  3613. .debug_info 0x0000000000004e4b 0xb67 ./components/tools/tools.o
  3614. .debug_info 0x00000000000059b2 0x1e24 ./components/led/user_led.o
  3615. .debug_info 0x00000000000077d6 0x1387 ./components/electlock/user_elect.o
  3616. .debug_info 0x0000000000008b5d 0x1035 ./components/config/user_config.o
  3617. .debug_info 0x0000000000009b92 0x132a ./components/can/dip_sw.o
  3618. .debug_info 0x000000000000aebc 0x1a9b ./components/can/user_can.o
  3619. .debug_info 0x000000000000c957 0x1e0b ./components/action/ble_action.o
  3620. .debug_info 0x000000000000e762 0x1a60 ./components/action/user_sever.o
  3621. .debug_info 0x00000000000101c2 0xf75 ./User/app_main.o
  3622. .debug_info 0x0000000000011137 0x12c8 ./User/ch32v20x_it.o
  3623. .debug_info 0x00000000000123ff 0x2de1 ./User/peripheral.o
  3624. .debug_info 0x00000000000151e0 0xb89 ./User/system_ch32v20x.o
  3625. .debug_info 0x0000000000015d69 0x22 ./Startup/startup_ch32v20x_D8W.o
  3626. .debug_info 0x0000000000015d8b 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
  3627. .debug_info 0x0000000000017473 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
  3628. .debug_info 0x0000000000018c79 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3629. .debug_info 0x000000000001970d 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
  3630. .debug_info 0x000000000001a42e 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
  3631. .debug_info 0x000000000001b03b 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
  3632. .debug_info 0x000000000001c618 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3633. .debug_info 0x000000000001d7bc 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3634. .debug_info 0x000000000001e330 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
  3635. .debug_info 0x000000000001f1c6 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
  3636. .debug_info 0x000000000002021a 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3637. .debug_info 0x0000000000021493 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  3638. .debug_info 0x0000000000022455 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
  3639. .debug_info 0x0000000000023716 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
  3640. .debug_info 0x00000000000261d6 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3641. .debug_info 0x00000000000285e9 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
  3642. .debug_info 0x0000000000029929 0xf51 ./SRC/Debug/debug.o
  3643. .debug_info 0x000000000002a87a 0x11aa ./Profile/devinfoservice.o
  3644. .debug_info 0x000000000002ba24 0x1567 ./Profile/gattprofile.o
  3645. .debug_info 0x000000000002cf8b 0x22 ./LIB/ble_task_scheduler.o
  3646. .debug_info 0x000000000002cfad 0x1a85 ./HAL/MCU.o
  3647. .debug_info 0x000000000002ea32 0xd55 ./HAL/RTC.o
  3648. .debug_info 0x000000000002f787 0x107e d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3649. .debug_info 0x0000000000030805 0x161 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3650. .debug_info 0x0000000000030966 0xbc8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3651. .debug_abbrev 0x0000000000000000 0x8d0b
  3652. .debug_abbrev 0x0000000000000000 0x2bb ./components/ws2812b/user_spi.o
  3653. .debug_abbrev 0x00000000000002bb 0x4e8 ./components/ws2812b/user_ws2812b.o
  3654. .debug_abbrev 0x00000000000007a3 0x408 ./components/tools/AES_PKCS7.o
  3655. .debug_abbrev 0x0000000000000bab 0x38e ./components/tools/_string.o
  3656. .debug_abbrev 0x0000000000000f39 0x30f ./components/tools/tools.o
  3657. .debug_abbrev 0x0000000000001248 0x495 ./components/led/user_led.o
  3658. .debug_abbrev 0x00000000000016dd 0x470 ./components/electlock/user_elect.o
  3659. .debug_abbrev 0x0000000000001b4d 0x3b8 ./components/config/user_config.o
  3660. .debug_abbrev 0x0000000000001f05 0x41d ./components/can/dip_sw.o
  3661. .debug_abbrev 0x0000000000002322 0x43b ./components/can/user_can.o
  3662. .debug_abbrev 0x000000000000275d 0x54f ./components/action/ble_action.o
  3663. .debug_abbrev 0x0000000000002cac 0x49b ./components/action/user_sever.o
  3664. .debug_abbrev 0x0000000000003147 0x2d3 ./User/app_main.o
  3665. .debug_abbrev 0x000000000000341a 0x2ed ./User/ch32v20x_it.o
  3666. .debug_abbrev 0x0000000000003707 0x4a1 ./User/peripheral.o
  3667. .debug_abbrev 0x0000000000003ba8 0x2c0 ./User/system_ch32v20x.o
  3668. .debug_abbrev 0x0000000000003e68 0x12 ./Startup/startup_ch32v20x_D8W.o
  3669. .debug_abbrev 0x0000000000003e7a 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
  3670. .debug_abbrev 0x0000000000004226 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
  3671. .debug_abbrev 0x0000000000004614 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3672. .debug_abbrev 0x000000000000490b 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
  3673. .debug_abbrev 0x0000000000004c0d 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
  3674. .debug_abbrev 0x0000000000004ee7 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
  3675. .debug_abbrev 0x000000000000534f 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3676. .debug_abbrev 0x00000000000056a3 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3677. .debug_abbrev 0x0000000000005925 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
  3678. .debug_abbrev 0x0000000000005c0f 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
  3679. .debug_abbrev 0x0000000000005fab 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3680. .debug_abbrev 0x000000000000631f 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
  3681. .debug_abbrev 0x0000000000006649 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
  3682. .debug_abbrev 0x000000000000696e 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
  3683. .debug_abbrev 0x0000000000006d9f 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3684. .debug_abbrev 0x00000000000071e6 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
  3685. .debug_abbrev 0x000000000000750b 0x2f0 ./SRC/Debug/debug.o
  3686. .debug_abbrev 0x00000000000077fb 0x327 ./Profile/devinfoservice.o
  3687. .debug_abbrev 0x0000000000007b22 0x3ce ./Profile/gattprofile.o
  3688. .debug_abbrev 0x0000000000007ef0 0x12 ./LIB/ble_task_scheduler.o
  3689. .debug_abbrev 0x0000000000007f02 0x43e ./HAL/MCU.o
  3690. .debug_abbrev 0x0000000000008340 0x2b4 ./HAL/RTC.o
  3691. .debug_abbrev 0x00000000000085f4 0x37f d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3692. .debug_abbrev 0x0000000000008973 0xdd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3693. .debug_abbrev 0x0000000000008a50 0x2bb d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3694. .debug_loc 0x0000000000000000 0xdde9
  3695. .debug_loc 0x0000000000000000 0x147 ./components/ws2812b/user_spi.o
  3696. .debug_loc 0x0000000000000147 0x8e4 ./components/ws2812b/user_ws2812b.o
  3697. .debug_loc 0x0000000000000a2b 0x753 ./components/tools/AES_PKCS7.o
  3698. .debug_loc 0x000000000000117e 0xdad ./components/tools/_string.o
  3699. .debug_loc 0x0000000000001f2b 0x12e ./components/tools/tools.o
  3700. .debug_loc 0x0000000000002059 0x423 ./components/led/user_led.o
  3701. .debug_loc 0x000000000000247c 0x115 ./components/electlock/user_elect.o
  3702. .debug_loc 0x0000000000002591 0x253 ./components/config/user_config.o
  3703. .debug_loc 0x00000000000027e4 0x157 ./components/can/dip_sw.o
  3704. .debug_loc 0x000000000000293b 0x35b ./components/can/user_can.o
  3705. .debug_loc 0x0000000000002c96 0x3d5 ./components/action/ble_action.o
  3706. .debug_loc 0x000000000000306b 0x54c ./components/action/user_sever.o
  3707. .debug_loc 0x00000000000035b7 0x69e ./User/peripheral.o
  3708. .debug_loc 0x0000000000003c55 0xc2 ./User/system_ch32v20x.o
  3709. .debug_loc 0x0000000000003d17 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
  3710. .debug_loc 0x00000000000047f1 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
  3711. .debug_loc 0x000000000000518a 0x6e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3712. .debug_loc 0x00000000000051f8 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
  3713. .debug_loc 0x000000000000534d 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
  3714. .debug_loc 0x00000000000054ce 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
  3715. .debug_loc 0x0000000000006190 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3716. .debug_loc 0x0000000000006897 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3717. .debug_loc 0x00000000000068ff 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
  3718. .debug_loc 0x000000000000692c 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
  3719. .debug_loc 0x0000000000006bca 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
  3720. .debug_loc 0x0000000000007377 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
  3721. .debug_loc 0x00000000000078c6 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
  3722. .debug_loc 0x0000000000007e8f 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
  3723. .debug_loc 0x000000000000994b 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3724. .debug_loc 0x000000000000aef1 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
  3725. .debug_loc 0x000000000000b643 0x1a8 ./SRC/Debug/debug.o
  3726. .debug_loc 0x000000000000b7eb 0x419 ./Profile/devinfoservice.o
  3727. .debug_loc 0x000000000000bc04 0xb8e ./Profile/gattprofile.o
  3728. .debug_loc 0x000000000000c792 0x40c ./HAL/MCU.o
  3729. .debug_loc 0x000000000000cb9e 0x8b ./HAL/RTC.o
  3730. .debug_loc 0x000000000000cc29 0x559 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3731. .debug_loc 0x000000000000d182 0x569 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3732. .debug_loc 0x000000000000d6eb 0x6fe d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3733. .debug_aranges 0x0000000000000000 0x1720
  3734. .debug_aranges
  3735. 0x0000000000000000 0x38 ./components/ws2812b/user_spi.o
  3736. .debug_aranges
  3737. 0x0000000000000038 0xa0 ./components/ws2812b/user_ws2812b.o
  3738. .debug_aranges
  3739. 0x00000000000000d8 0x58 ./components/tools/AES_PKCS7.o
  3740. .debug_aranges
  3741. 0x0000000000000130 0xc8 ./components/tools/_string.o
  3742. .debug_aranges
  3743. 0x00000000000001f8 0x38 ./components/tools/tools.o
  3744. .debug_aranges
  3745. 0x0000000000000230 0x70 ./components/led/user_led.o
  3746. .debug_aranges
  3747. 0x00000000000002a0 0x60 ./components/electlock/user_elect.o
  3748. .debug_aranges
  3749. 0x0000000000000300 0x60 ./components/config/user_config.o
  3750. .debug_aranges
  3751. 0x0000000000000360 0x80 ./components/can/dip_sw.o
  3752. .debug_aranges
  3753. 0x00000000000003e0 0x50 ./components/can/user_can.o
  3754. .debug_aranges
  3755. 0x0000000000000430 0x90 ./components/action/ble_action.o
  3756. .debug_aranges
  3757. 0x00000000000004c0 0x50 ./components/action/user_sever.o
  3758. .debug_aranges
  3759. 0x0000000000000510 0x28 ./User/app_main.o
  3760. .debug_aranges
  3761. 0x0000000000000538 0x48 ./User/ch32v20x_it.o
  3762. .debug_aranges
  3763. 0x0000000000000580 0x70 ./User/peripheral.o
  3764. .debug_aranges
  3765. 0x00000000000005f0 0x28 ./User/system_ch32v20x.o
  3766. .debug_aranges
  3767. 0x0000000000000618 0x30 ./Startup/startup_ch32v20x_D8W.o
  3768. .debug_aranges
  3769. 0x0000000000000648 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
  3770. .debug_aranges
  3771. 0x0000000000000798 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
  3772. .debug_aranges
  3773. 0x0000000000000870 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3774. .debug_aranges
  3775. 0x00000000000008b8 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
  3776. .debug_aranges
  3777. 0x0000000000000918 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
  3778. .debug_aranges
  3779. 0x0000000000000968 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
  3780. .debug_aranges
  3781. 0x0000000000000a78 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3782. .debug_aranges
  3783. 0x0000000000000b28 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3784. .debug_aranges
  3785. 0x0000000000000b70 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
  3786. .debug_aranges
  3787. 0x0000000000000b98 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
  3788. .debug_aranges
  3789. 0x0000000000000c20 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3790. .debug_aranges
  3791. 0x0000000000000d50 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
  3792. .debug_aranges
  3793. 0x0000000000000dd8 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
  3794. .debug_aranges
  3795. 0x0000000000000ea8 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
  3796. .debug_aranges
  3797. 0x0000000000001178 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3798. .debug_aranges
  3799. 0x0000000000001448 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
  3800. .debug_aranges
  3801. 0x0000000000001538 0x50 ./SRC/Debug/debug.o
  3802. .debug_aranges
  3803. 0x0000000000001588 0x38 ./Profile/devinfoservice.o
  3804. .debug_aranges
  3805. 0x00000000000015c0 0x58 ./Profile/gattprofile.o
  3806. .debug_aranges
  3807. 0x0000000000001618 0x28 ./LIB/ble_task_scheduler.o
  3808. .debug_aranges
  3809. 0x0000000000001640 0x50 ./HAL/MCU.o
  3810. .debug_aranges
  3811. 0x0000000000001690 0x30 ./HAL/RTC.o
  3812. .debug_aranges
  3813. 0x00000000000016c0 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3814. .debug_aranges
  3815. 0x00000000000016e0 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3816. .debug_aranges
  3817. 0x0000000000001700 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3818. .debug_ranges 0x0000000000000000 0x20c0
  3819. .debug_ranges 0x0000000000000000 0x28 ./components/ws2812b/user_spi.o
  3820. .debug_ranges 0x0000000000000028 0x208 ./components/ws2812b/user_ws2812b.o
  3821. .debug_ranges 0x0000000000000230 0xe0 ./components/tools/AES_PKCS7.o
  3822. .debug_ranges 0x0000000000000310 0xd8 ./components/tools/_string.o
  3823. .debug_ranges 0x00000000000003e8 0x40 ./components/tools/tools.o
  3824. .debug_ranges 0x0000000000000428 0x130 ./components/led/user_led.o
  3825. .debug_ranges 0x0000000000000558 0xc0 ./components/electlock/user_elect.o
  3826. .debug_ranges 0x0000000000000618 0x50 ./components/config/user_config.o
  3827. .debug_ranges 0x0000000000000668 0xe0 ./components/can/dip_sw.o
  3828. .debug_ranges 0x0000000000000748 0x158 ./components/can/user_can.o
  3829. .debug_ranges 0x00000000000008a0 0x1a8 ./components/action/ble_action.o
  3830. .debug_ranges 0x0000000000000a48 0x170 ./components/action/user_sever.o
  3831. .debug_ranges 0x0000000000000bb8 0x18 ./User/app_main.o
  3832. .debug_ranges 0x0000000000000bd0 0x38 ./User/ch32v20x_it.o
  3833. .debug_ranges 0x0000000000000c08 0xf8 ./User/peripheral.o
  3834. .debug_ranges 0x0000000000000d00 0x38 ./User/system_ch32v20x.o
  3835. .debug_ranges 0x0000000000000d38 0x28 ./Startup/startup_ch32v20x_D8W.o
  3836. .debug_ranges 0x0000000000000d60 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
  3837. .debug_ranges 0x0000000000000ea0 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
  3838. .debug_ranges 0x0000000000000f98 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3839. .debug_ranges 0x0000000000000fe8 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
  3840. .debug_ranges 0x0000000000001038 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
  3841. .debug_ranges 0x0000000000001078 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  3842. .debug_ranges 0x0000000000001178 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3843. .debug_ranges 0x0000000000001218 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3844. .debug_ranges 0x0000000000001250 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
  3845. .debug_ranges 0x0000000000001298 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
  3846. .debug_ranges 0x0000000000001310 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3847. .debug_ranges 0x0000000000001430 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
  3848. .debug_ranges 0x00000000000014a8 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
  3849. .debug_ranges 0x0000000000001568 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
  3850. .debug_ranges 0x0000000000001870 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3851. .debug_ranges 0x0000000000001b70 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
  3852. .debug_ranges 0x0000000000001c50 0x40 ./SRC/Debug/debug.o
  3853. .debug_ranges 0x0000000000001c90 0x28 ./Profile/devinfoservice.o
  3854. .debug_ranges 0x0000000000001cb8 0x128 ./Profile/gattprofile.o
  3855. .debug_ranges 0x0000000000001de0 0x20 ./LIB/ble_task_scheduler.o
  3856. .debug_ranges 0x0000000000001e00 0x88 ./HAL/MCU.o
  3857. .debug_ranges 0x0000000000001e88 0x20 ./HAL/RTC.o
  3858. .debug_ranges 0x0000000000001ea8 0x28 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3859. .debug_ranges 0x0000000000001ed0 0x1f0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3860. .debug_line 0x0000000000000000 0x27482
  3861. .debug_line 0x0000000000000000 0xb6b ./components/ws2812b/user_spi.o
  3862. .debug_line 0x0000000000000b6b 0x16b5 ./components/ws2812b/user_ws2812b.o
  3863. .debug_line 0x0000000000002220 0xc31 ./components/tools/AES_PKCS7.o
  3864. .debug_line 0x0000000000002e51 0x1222 ./components/tools/_string.o
  3865. .debug_line 0x0000000000004073 0x5cc ./components/tools/tools.o
  3866. .debug_line 0x000000000000463f 0x140c ./components/led/user_led.o
  3867. .debug_line 0x0000000000005a4b 0xd36 ./components/electlock/user_elect.o
  3868. .debug_line 0x0000000000006781 0x97c ./components/config/user_config.o
  3869. .debug_line 0x00000000000070fd 0xd49 ./components/can/dip_sw.o
  3870. .debug_line 0x0000000000007e46 0xeb4 ./components/can/user_can.o
  3871. .debug_line 0x0000000000008cfa 0x15be ./components/action/ble_action.o
  3872. .debug_line 0x000000000000a2b8 0x1321 ./components/action/user_sever.o
  3873. .debug_line 0x000000000000b5d9 0x9b3 ./User/app_main.o
  3874. .debug_line 0x000000000000bf8c 0x7e7 ./User/ch32v20x_it.o
  3875. .debug_line 0x000000000000c773 0xf9e ./User/peripheral.o
  3876. .debug_line 0x000000000000d711 0x7ec ./User/system_ch32v20x.o
  3877. .debug_line 0x000000000000defd 0x128 ./Startup/startup_ch32v20x_D8W.o
  3878. .debug_line 0x000000000000e025 0x19f3 ./SRC/Peripheral/src/ch32v20x_adc.o
  3879. .debug_line 0x000000000000fa18 0x1b85 ./SRC/Peripheral/src/ch32v20x_can.o
  3880. .debug_line 0x000000000001159d 0x4a7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3881. .debug_line 0x0000000000011a44 0x902 ./SRC/Peripheral/src/ch32v20x_dma.o
  3882. .debug_line 0x0000000000012346 0x721 ./SRC/Peripheral/src/ch32v20x_exti.o
  3883. .debug_line 0x0000000000012a67 0x26ae ./SRC/Peripheral/src/ch32v20x_flash.o
  3884. .debug_line 0x0000000000015115 0x11ec ./SRC/Peripheral/src/ch32v20x_gpio.o
  3885. .debug_line 0x0000000000016301 0x540 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3886. .debug_line 0x0000000000016841 0x528 ./SRC/Peripheral/src/ch32v20x_misc.o
  3887. .debug_line 0x0000000000016d69 0xd00 ./SRC/Peripheral/src/ch32v20x_pwr.o
  3888. .debug_line 0x0000000000017a69 0x1338 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3889. .debug_line 0x0000000000018da1 0x16f8 ./SRC/Peripheral/src/ch32v20x_rtc.o
  3890. .debug_line 0x000000000001a499 0xeec ./SRC/Peripheral/src/ch32v20x_spi.o
  3891. .debug_line 0x000000000001b385 0x3360 ./SRC/Peripheral/src/ch32v20x_tim.o
  3892. .debug_line 0x000000000001e6e5 0x2c96 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3893. .debug_line 0x000000000002137b 0x1010 ./SRC/Peripheral/src/ch32v20x_usart.o
  3894. .debug_line 0x000000000002238b 0x8ce ./SRC/Debug/debug.o
  3895. .debug_line 0x0000000000022c59 0x940 ./Profile/devinfoservice.o
  3896. .debug_line 0x0000000000023599 0xc4e ./Profile/gattprofile.o
  3897. .debug_line 0x00000000000241e7 0x2f2 ./LIB/ble_task_scheduler.o
  3898. .debug_line 0x00000000000244d9 0xf8a ./HAL/MCU.o
  3899. .debug_line 0x0000000000025463 0x7f5 ./HAL/RTC.o
  3900. .debug_line 0x0000000000025c58 0x60d d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3901. .debug_line 0x0000000000026265 0x5f4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3902. .debug_line 0x0000000000026859 0xc29 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3903. .debug_str 0x0000000000000000 0x892e
  3904. .debug_str 0x0000000000000000 0xe50 ./components/ws2812b/user_spi.o
  3905. 0xf10 (size before relaxing)
  3906. .debug_str 0x0000000000000e50 0x6b2 ./components/ws2812b/user_ws2812b.o
  3907. 0xda6 (size before relaxing)
  3908. .debug_str 0x0000000000001502 0x14c ./components/tools/AES_PKCS7.o
  3909. 0x73b (size before relaxing)
  3910. .debug_str 0x000000000000164e 0x192 ./components/tools/_string.o
  3911. 0x78e (size before relaxing)
  3912. .debug_str 0x00000000000017e0 0xa2 ./components/tools/tools.o
  3913. 0x6d3 (size before relaxing)
  3914. .debug_str 0x0000000000001882 0x89b ./components/led/user_led.o
  3915. 0x11a4 (size before relaxing)
  3916. .debug_str 0x000000000000211d 0x32b ./components/electlock/user_elect.o
  3917. 0xca4 (size before relaxing)
  3918. .debug_str 0x0000000000002448 0x17a ./components/config/user_config.o
  3919. 0x999 (size before relaxing)
  3920. .debug_str 0x00000000000025c2 0x219 ./components/can/dip_sw.o
  3921. 0xc2a (size before relaxing)
  3922. .debug_str 0x00000000000027db 0x424 ./components/can/user_can.o
  3923. 0x12a5 (size before relaxing)
  3924. .debug_str 0x0000000000002bff 0x420 ./components/action/ble_action.o
  3925. 0xed5 (size before relaxing)
  3926. .debug_str 0x000000000000301f 0x471 ./components/action/user_sever.o
  3927. 0xdf6 (size before relaxing)
  3928. .debug_str 0x0000000000003490 0x108 ./User/app_main.o
  3929. 0xa76 (size before relaxing)
  3930. .debug_str 0x0000000000003598 0xe7 ./User/ch32v20x_it.o
  3931. 0xb15 (size before relaxing)
  3932. .debug_str 0x000000000000367f 0xe7b ./User/peripheral.o
  3933. 0x1615 (size before relaxing)
  3934. .debug_str 0x00000000000044fa 0xf5 ./User/system_ch32v20x.o
  3935. 0x70c (size before relaxing)
  3936. .debug_str 0x00000000000045ef 0x2e ./Startup/startup_ch32v20x_D8W.o
  3937. 0x87 (size before relaxing)
  3938. .debug_str 0x000000000000461d 0x632 ./SRC/Peripheral/src/ch32v20x_adc.o
  3939. 0xcab (size before relaxing)
  3940. .debug_str 0x0000000000004c4f 0x2e0 ./SRC/Peripheral/src/ch32v20x_can.o
  3941. 0xc4f (size before relaxing)
  3942. .debug_str 0x0000000000004f2f 0xd2 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3943. 0x6da (size before relaxing)
  3944. .debug_str 0x0000000000005001 0x10f ./SRC/Peripheral/src/ch32v20x_dma.o
  3945. 0x887 (size before relaxing)
  3946. .debug_str 0x0000000000005110 0x202 ./SRC/Peripheral/src/ch32v20x_exti.o
  3947. 0x821 (size before relaxing)
  3948. .debug_str 0x0000000000005312 0x4cd ./SRC/Peripheral/src/ch32v20x_flash.o
  3949. 0xbb3 (size before relaxing)
  3950. .debug_str 0x00000000000057df 0x250 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3951. 0xa44 (size before relaxing)
  3952. .debug_str 0x0000000000005a2f 0x10b ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3953. 0x798 (size before relaxing)
  3954. .debug_str 0x0000000000005b3a 0x109 ./SRC/Peripheral/src/ch32v20x_misc.o
  3955. 0xb63 (size before relaxing)
  3956. .debug_str 0x0000000000005c43 0x1f1 ./SRC/Peripheral/src/ch32v20x_pwr.o
  3957. 0x8f0 (size before relaxing)
  3958. .debug_str 0x0000000000005e34 0x3e7 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3959. 0xb62 (size before relaxing)
  3960. .debug_str 0x000000000000621b 0x30a ./SRC/Peripheral/src/ch32v20x_rtc.o
  3961. 0x9c9 (size before relaxing)
  3962. .debug_str 0x0000000000006525 0x2bb ./SRC/Peripheral/src/ch32v20x_spi.o
  3963. 0xb23 (size before relaxing)
  3964. .debug_str 0x00000000000067e0 0x8a4 ./SRC/Peripheral/src/ch32v20x_tim.o
  3965. 0x134d (size before relaxing)
  3966. .debug_str 0x0000000000007084 0x698 ./SRC/Peripheral/src/ch32v20x_tim5.o
  3967. 0x13b2 (size before relaxing)
  3968. .debug_str 0x000000000000771c 0x430 ./SRC/Peripheral/src/ch32v20x_usart.o
  3969. 0xb7e (size before relaxing)
  3970. .debug_str 0x0000000000007b4c 0xee ./SRC/Debug/debug.o
  3971. 0x9bc (size before relaxing)
  3972. .debug_str 0x0000000000007c3a 0x37a ./Profile/devinfoservice.o
  3973. 0xbb7 (size before relaxing)
  3974. .debug_str 0x0000000000007fb4 0x2ba ./Profile/gattprofile.o
  3975. 0xc64 (size before relaxing)
  3976. .debug_str 0x000000000000826e 0x6c ./LIB/ble_task_scheduler.o
  3977. 0xd1 (size before relaxing)
  3978. .debug_str 0x00000000000082da 0x324 ./HAL/MCU.o
  3979. 0x117d (size before relaxing)
  3980. .debug_str 0x00000000000085fe 0xe1 ./HAL/RTC.o
  3981. 0x856 (size before relaxing)
  3982. .debug_str 0x00000000000086df 0x187 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3983. 0x6d2 (size before relaxing)
  3984. .debug_str 0x0000000000008866 0x4c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  3985. 0x116 (size before relaxing)
  3986. .debug_str 0x00000000000088b2 0x7c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3987. 0x5d9 (size before relaxing)
  3988. .comment 0x0000000000000000 0x66
  3989. .comment 0x0000000000000000 0x33 ./components/ws2812b/user_spi.o
  3990. 0x34 (size before relaxing)
  3991. .comment 0x0000000000000033 0x34 ./components/ws2812b/user_ws2812b.o
  3992. .comment 0x0000000000000033 0x34 ./components/tools/AES_PKCS7.o
  3993. .comment 0x0000000000000033 0x34 ./components/tools/_string.o
  3994. .comment 0x0000000000000033 0x34 ./components/tools/tools.o
  3995. .comment 0x0000000000000033 0x34 ./components/led/user_led.o
  3996. .comment 0x0000000000000033 0x34 ./components/electlock/user_elect.o
  3997. .comment 0x0000000000000033 0x34 ./components/config/user_config.o
  3998. .comment 0x0000000000000033 0x34 ./components/can/dip_sw.o
  3999. .comment 0x0000000000000033 0x34 ./components/can/user_can.o
  4000. .comment 0x0000000000000033 0x34 ./components/action/ble_action.o
  4001. .comment 0x0000000000000033 0x34 ./components/action/user_sever.o
  4002. .comment 0x0000000000000033 0x34 ./User/app_main.o
  4003. .comment 0x0000000000000033 0x34 ./User/ch32v20x_it.o
  4004. .comment 0x0000000000000033 0x34 ./User/peripheral.o
  4005. .comment 0x0000000000000033 0x34 ./User/system_ch32v20x.o
  4006. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_adc.o
  4007. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
  4008. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4009. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
  4010. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
  4011. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
  4012. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4013. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4014. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
  4015. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4016. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4017. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4018. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
  4019. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
  4020. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4021. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
  4022. .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
  4023. .comment 0x0000000000000033 0x34 ./Profile/devinfoservice.o
  4024. .comment 0x0000000000000033 0x34 ./Profile/gattprofile.o
  4025. .comment 0x0000000000000033 0x34 ./HAL/MCU.o
  4026. .comment 0x0000000000000033 0x34 ./HAL/RTC.o
  4027. .comment 0x0000000000000033 0x33 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4028. 0x34 (size before relaxing)
  4029. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  4030. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4031. .debug_frame 0x0000000000000000 0x522c
  4032. .debug_frame 0x0000000000000000 0xac ./components/ws2812b/user_spi.o
  4033. .debug_frame 0x00000000000000ac 0x23c ./components/ws2812b/user_ws2812b.o
  4034. .debug_frame 0x00000000000002e8 0x15c ./components/tools/AES_PKCS7.o
  4035. .debug_frame 0x0000000000000444 0x278 ./components/tools/_string.o
  4036. .debug_frame 0x00000000000006bc 0x6c ./components/tools/tools.o
  4037. .debug_frame 0x0000000000000728 0x164 ./components/led/user_led.o
  4038. .debug_frame 0x000000000000088c 0x110 ./components/electlock/user_elect.o
  4039. .debug_frame 0x000000000000099c 0xf4 ./components/config/user_config.o
  4040. .debug_frame 0x0000000000000a90 0x190 ./components/can/dip_sw.o
  4041. .debug_frame 0x0000000000000c20 0x120 ./components/can/user_can.o
  4042. .debug_frame 0x0000000000000d40 0x19c ./components/action/ble_action.o
  4043. .debug_frame 0x0000000000000edc 0xd8 ./components/action/user_sever.o
  4044. .debug_frame 0x0000000000000fb4 0x40 ./User/app_main.o
  4045. .debug_frame 0x0000000000000ff4 0x7c ./User/ch32v20x_it.o
  4046. .debug_frame 0x0000000000001070 0x160 ./User/peripheral.o
  4047. .debug_frame 0x00000000000011d0 0x3c ./User/system_ch32v20x.o
  4048. .debug_frame 0x000000000000120c 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
  4049. .debug_frame 0x00000000000014c8 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
  4050. .debug_frame 0x0000000000001668 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4051. .debug_frame 0x00000000000016d8 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
  4052. .debug_frame 0x0000000000001798 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
  4053. .debug_frame 0x0000000000001828 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
  4054. .debug_frame 0x0000000000001b78 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4055. .debug_frame 0x0000000000001cf0 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4056. .debug_frame 0x0000000000001d60 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
  4057. .debug_frame 0x0000000000001d90 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
  4058. .debug_frame 0x0000000000001e8c 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4059. .debug_frame 0x00000000000020dc 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4060. .debug_frame 0x0000000000002244 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
  4061. .debug_frame 0x00000000000023fc 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
  4062. .debug_frame 0x0000000000002a64 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
  4063. .debug_frame 0x00000000000030ac 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4064. .debug_frame 0x000000000000329c 0xc0 ./SRC/Debug/debug.o
  4065. .debug_frame 0x000000000000335c 0x80 ./Profile/devinfoservice.o
  4066. .debug_frame 0x00000000000033dc 0x154 ./Profile/gattprofile.o
  4067. .debug_frame 0x0000000000003530 0x11c ./HAL/MCU.o
  4068. .debug_frame 0x000000000000364c 0x60 ./HAL/RTC.o
  4069. .debug_frame 0x00000000000036ac 0x12c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4070. .debug_frame 0x00000000000037d8 0x30 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(base64.o)
  4071. .debug_frame 0x0000000000003808 0x4c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_CABINET_CONTROL/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4072. .debug_frame 0x0000000000003854 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)
  4073. .debug_frame 0x0000000000003898 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)
  4074. .debug_frame 0x00000000000038e8 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)
  4075. .debug_frame 0x0000000000003908 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)
  4076. .debug_frame 0x0000000000003928 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)
  4077. .debug_frame 0x000000000000397c 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)
  4078. .debug_frame 0x00000000000039c0 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)
  4079. .debug_frame 0x00000000000039e0 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)
  4080. .debug_frame 0x0000000000003a18 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)
  4081. .debug_frame 0x0000000000003a38 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)
  4082. .debug_frame 0x0000000000003a58 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)
  4083. .debug_frame 0x0000000000003a88 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)
  4084. .debug_frame 0x0000000000003aa8 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)
  4085. .debug_frame 0x0000000000003ae8 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)
  4086. .debug_frame 0x0000000000003b28 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)
  4087. .debug_frame 0x0000000000003be4 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)
  4088. .debug_frame 0x0000000000003c70 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)
  4089. .debug_frame 0x0000000000003cd0 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)
  4090. .debug_frame 0x0000000000003d24 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)
  4091. .debug_frame 0x0000000000003d78 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)
  4092. .debug_frame 0x0000000000003da8 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)
  4093. .debug_frame 0x0000000000003dc8 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)
  4094. .debug_frame 0x0000000000003e10 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)
  4095. .debug_frame 0x0000000000003e64 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)
  4096. .debug_frame 0x0000000000003f08 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)
  4097. .debug_frame 0x0000000000003f28 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)
  4098. .debug_frame 0x000000000000407c 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)
  4099. .debug_frame 0x00000000000040ec 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)
  4100. .debug_frame 0x000000000000413c 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)
  4101. .debug_frame 0x000000000000416c 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)
  4102. .debug_frame 0x00000000000041a8 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)
  4103. .debug_frame 0x00000000000041d8 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)
  4104. .debug_frame 0x0000000000004270 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)
  4105. .debug_frame 0x00000000000042ec 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)
  4106. .debug_frame 0x0000000000004434 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)
  4107. .debug_frame 0x00000000000044bc 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)
  4108. .debug_frame 0x0000000000004540 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)
  4109. .debug_frame 0x00000000000045c0 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)
  4110. .debug_frame 0x0000000000004638 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)
  4111. .debug_frame 0x0000000000004678 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)
  4112. .debug_frame 0x00000000000046a8 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)
  4113. .debug_frame 0x000000000000470c 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)
  4114. .debug_frame 0x0000000000004744 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)
  4115. .debug_frame 0x0000000000004764 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)
  4116. .debug_frame 0x0000000000004794 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)
  4117. .debug_frame 0x0000000000004a74 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)
  4118. .debug_frame 0x0000000000004aa4 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)
  4119. .debug_frame 0x0000000000004ae4 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)
  4120. .debug_frame 0x0000000000004bc4 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)
  4121. .debug_frame 0x0000000000004c78 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)
  4122. .debug_frame 0x0000000000004d48 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)
  4123. .debug_frame 0x0000000000004de8 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)
  4124. .debug_frame 0x0000000000004e18 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)
  4125. .debug_frame 0x0000000000004e88 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)
  4126. .debug_frame 0x0000000000004ea8 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)
  4127. .debug_frame 0x0000000000004ec8 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)
  4128. .debug_frame 0x0000000000004f38 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)
  4129. .debug_frame 0x0000000000004fbc 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)
  4130. .debug_frame 0x0000000000004fec 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)
  4131. .debug_frame 0x000000000000501c 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)
  4132. .debug_frame 0x000000000000504c 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)
  4133. .debug_frame 0x000000000000506c 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)
  4134. .debug_frame 0x000000000000508c 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)
  4135. .debug_frame 0x00000000000050ac 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)
  4136. .debug_frame 0x00000000000050cc 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)
  4137. .debug_frame 0x00000000000050ec 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)
  4138. .debug_frame 0x0000000000005124 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)
  4139. .debug_frame 0x0000000000005160 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)
  4140. .debug_frame 0x000000000000518c 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)
  4141. .debug_frame 0x00000000000051ac 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)
  4142. .debug_frame 0x00000000000051cc 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)
  4143. .debug_frame 0x00000000000051ec 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)
  4144. .debug_frame 0x000000000000520c 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)
  4145. .stab 0x0000000000000000 0x84
  4146. .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)
  4147. .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)
  4148. 0x24 (size before relaxing)
  4149. .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)
  4150. 0x24 (size before relaxing)
  4151. .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)
  4152. 0x24 (size before relaxing)
  4153. .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)
  4154. 0x24 (size before relaxing)
  4155. .stabstr 0x0000000000000000 0x117
  4156. .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)