mainboard.map 407 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527
  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_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  13. ./components/action/ble_action.o (get_gb_token)
  14. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  15. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (base64_encode)
  16. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  17. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (set_production_lic_key)
  18. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  19. d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (__umoddi3)
  20. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
  21. ./components/tools/my_math.o (__adddf3)
  22. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
  23. ./components/tools/my_math.o (__divdf3)
  24. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  25. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__eqdf2)
  26. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
  27. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__gtdf2)
  28. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
  29. ./components/tools/my_math.o (__muldf3)
  30. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
  31. ./components/tools/my_math.o (__subdf3)
  32. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
  33. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o) (__unorddf2)
  34. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  35. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o) (__floatsidf)
  36. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  37. ./components/tools/_string.o (__addsf3)
  38. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
  39. ./components/tools/_string.o (__divsf3)
  40. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  41. ./components/tools/my_math.o (__ltsf2)
  42. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  43. ./components/tools/_string.o (__mulsf3)
  44. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  45. ./components/tools/_string.o (__subsf3)
  46. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(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/nfc/user_nfc.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_ws2812b.o
  205. .data 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  206. .bss 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
  207. .text 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
  208. .data 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
  209. .bss 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.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 0x11d4 ./components/tools/my_math.o
  304. .debug_str 0x0000000000000000 0x7c9 ./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 0x4f8 ./components/tools/user_crc16.o
  334. .debug_str 0x0000000000000000 0x683 ./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/nfc/fm175xx.o
  338. .data 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  339. .bss 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
  340. .text.GetReg 0x0000000000000000 0x18 ./components/nfc/fm175xx.o
  341. .text.Read_Reg_All
  342. 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
  343. .text.Read_Ext_Reg
  344. 0x0000000000000000 0x20 ./components/nfc/fm175xx.o
  345. .text.ModifyReg_Ext
  346. 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
  347. .text.Get_FIFODataLenth
  348. 0x0000000000000000 0x58 ./components/nfc/fm175xx.o
  349. .text.FM175X_SoftPowerdown
  350. 0x0000000000000000 0x34 ./components/nfc/fm175xx.o
  351. .text.FM175XX_Initial
  352. 0x0000000000000000 0xe ./components/nfc/fm175xx.o
  353. .text 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  354. .data 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  355. .bss 0x0000000000000000 0x0 ./components/nfc/lpcd.o
  356. .text.Lpcd_Reset_Status
  357. 0x0000000000000000 0x26 ./components/nfc/lpcd.o
  358. .text.Lpcd_Set_Timer
  359. 0x0000000000000000 0x68 ./components/nfc/lpcd.o
  360. .text.Lpcd_Set_Gain
  361. 0x0000000000000000 0x1a ./components/nfc/lpcd.o
  362. .text.Lpcd_Set_Threshold
  363. 0x0000000000000000 0x58 ./components/nfc/lpcd.o
  364. .text.Lpcd_Set_Driver
  365. 0x0000000000000000 0x94 ./components/nfc/lpcd.o
  366. .text.Lpcd_Set_Reference
  367. 0x0000000000000000 0x38 ./components/nfc/lpcd.o
  368. .text.Lpcd_WaitFor_Irq
  369. 0x0000000000000000 0x46 ./components/nfc/lpcd.o
  370. .text.Lpcd_Get_Value
  371. 0x0000000000000000 0x34 ./components/nfc/lpcd.o
  372. .text.Lpcd_Get_Calibration_Value
  373. 0x0000000000000000 0x72 ./components/nfc/lpcd.o
  374. .text.Lpcd_Calibrate_Reference
  375. 0x0000000000000000 0x94 ./components/nfc/lpcd.o
  376. .text.Lpcd_Calibrate_Driver
  377. 0x0000000000000000 0x152 ./components/nfc/lpcd.o
  378. .text.Lpcd_Calibration_Restore
  379. 0x0000000000000000 0x16 ./components/nfc/lpcd.o
  380. .text.Lpcd_Calibration_Backup
  381. 0x0000000000000000 0x16 ./components/nfc/lpcd.o
  382. .text.Lpcd_Get_IRQ
  383. 0x0000000000000000 0x3e ./components/nfc/lpcd.o
  384. .text.Lpcd_Set_IE
  385. 0x0000000000000000 0x22 ./components/nfc/lpcd.o
  386. .text.Lpcd_Set_Mode
  387. 0x0000000000000000 0x110 ./components/nfc/lpcd.o
  388. .text.Lpcd_Set_Aux
  389. 0x0000000000000000 0xd0 ./components/nfc/lpcd.o
  390. .text.Lpcd_Calibration_Event
  391. 0x0000000000000000 0x4c ./components/nfc/lpcd.o
  392. .text.Lpcd_IRQ_Event
  393. 0x0000000000000000 0x4e ./components/nfc/lpcd.o
  394. .bss.Lpcd 0x0000000000000000 0x14 ./components/nfc/lpcd.o
  395. .rodata.LPCD_GAIN
  396. 0x0000000000000000 0xb ./components/nfc/lpcd.o
  397. .sdata2.LPCD_N_DRIVER
  398. 0x0000000000000000 0x7 ./components/nfc/lpcd.o
  399. .sdata2.LPCD_P_DRIVER
  400. 0x0000000000000000 0x7 ./components/nfc/lpcd.o
  401. .text 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  402. .data 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  403. .bss 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
  404. .text.Mifare_Auth
  405. 0x0000000000000000 0x94 ./components/nfc/mifare_card.o
  406. .text.Mifare_Blockread
  407. 0x0000000000000000 0x4e ./components/nfc/mifare_card.o
  408. .text.Mifare_Blockwrite
  409. 0x0000000000000000 0x80 ./components/nfc/mifare_card.o
  410. .text.Mifare_Blockset
  411. 0x0000000000000000 0x5a ./components/nfc/mifare_card.o
  412. .text.Mifare_Blockinc
  413. 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
  414. .text.Mifare_Blockdec
  415. 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
  416. .text.Mifare_Transfer
  417. 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
  418. .text.Mifare_Restore
  419. 0x0000000000000000 0x76 ./components/nfc/mifare_card.o
  420. .debug_info 0x0000000000000000 0x1111 ./components/nfc/mifare_card.o
  421. .debug_abbrev 0x0000000000000000 0x25d ./components/nfc/mifare_card.o
  422. .debug_loc 0x0000000000000000 0x30e ./components/nfc/mifare_card.o
  423. .debug_aranges
  424. 0x0000000000000000 0x58 ./components/nfc/mifare_card.o
  425. .debug_ranges 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
  426. .debug_line 0x0000000000000000 0xc1a ./components/nfc/mifare_card.o
  427. .debug_str 0x0000000000000000 0x73f ./components/nfc/mifare_card.o
  428. .comment 0x0000000000000000 0x34 ./components/nfc/mifare_card.o
  429. .debug_frame 0x0000000000000000 0x120 ./components/nfc/mifare_card.o
  430. .text 0x0000000000000000 0x0 ./components/nfc/type_a.o
  431. .data 0x0000000000000000 0x0 ./components/nfc/type_a.o
  432. .bss 0x0000000000000000 0x0 ./components/nfc/type_a.o
  433. .text.TypeA_Save_UID
  434. 0x0000000000000000 0x92 ./components/nfc/type_a.o
  435. .rodata.TypeA_Save_UID
  436. 0x0000000000000000 0x20 ./components/nfc/type_a.o
  437. .text.TypeA_WakeUp
  438. 0x0000000000000000 0x8c ./components/nfc/type_a.o
  439. .text 0x0000000000000000 0x0 ./components/nfc/type_b.o
  440. .data 0x0000000000000000 0x0 ./components/nfc/type_b.o
  441. .bss 0x0000000000000000 0x0 ./components/nfc/type_b.o
  442. .text.TypeB_Halt
  443. 0x0000000000000000 0x3e ./components/nfc/type_b.o
  444. .text.TypeB_WUP
  445. 0x0000000000000000 0x5a ./components/nfc/type_b.o
  446. .text.TypeB_Request
  447. 0x0000000000000000 0x56 ./components/nfc/type_b.o
  448. .text.TypeB_Select
  449. 0x0000000000000000 0x4e ./components/nfc/type_b.o
  450. .text.TypeB_GetUID
  451. 0x0000000000000000 0x38 ./components/nfc/type_b.o
  452. .debug_info 0x0000000000000000 0xe16 ./components/nfc/type_b.o
  453. .debug_abbrev 0x0000000000000000 0x274 ./components/nfc/type_b.o
  454. .debug_loc 0x0000000000000000 0x230 ./components/nfc/type_b.o
  455. .debug_aranges
  456. 0x0000000000000000 0x40 ./components/nfc/type_b.o
  457. .debug_ranges 0x0000000000000000 0x30 ./components/nfc/type_b.o
  458. .debug_line 0x0000000000000000 0x7a8 ./components/nfc/type_b.o
  459. .debug_str 0x0000000000000000 0x6cf ./components/nfc/type_b.o
  460. .comment 0x0000000000000000 0x34 ./components/nfc/type_b.o
  461. .debug_frame 0x0000000000000000 0xb4 ./components/nfc/type_b.o
  462. .text 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  463. .data 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  464. .bss 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
  465. .text.NFC_HardReset
  466. 0x0000000000000000 0xb4 ./components/nfc/user_nfc.o
  467. .rodata.NFC_HardReset
  468. 0x0000000000000000 0x28 ./components/nfc/user_nfc.o
  469. .text.NFC_HardPowerdown
  470. 0x0000000000000000 0x68 ./components/nfc/user_nfc.o
  471. .rodata.NFC_HardPowerdown
  472. 0x0000000000000000 0x14 ./components/nfc/user_nfc.o
  473. .text.SetBitMask
  474. 0x0000000000000000 0x2a ./components/nfc/user_nfc.o
  475. .text.ClearBitMask
  476. 0x0000000000000000 0x2e ./components/nfc/user_nfc.o
  477. .text 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  478. .data 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  479. .bss 0x0000000000000000 0x0 ./components/nfc/user_spi.o
  480. .text 0x0000000000000000 0x0 ./components/led/user_led.o
  481. .data 0x0000000000000000 0x0 ./components/led/user_led.o
  482. .bss 0x0000000000000000 0x0 ./components/led/user_led.o
  483. .text 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
  484. .data 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
  485. .bss 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
  486. .text 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  487. .data 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  488. .bss 0x0000000000000000 0x0 ./components/electlock/user_elect.o
  489. .text 0x0000000000000000 0x0 ./components/config/user_config.o
  490. .data 0x0000000000000000 0x0 ./components/config/user_config.o
  491. .bss 0x0000000000000000 0x0 ./components/config/user_config.o
  492. .text 0x0000000000000000 0x0 ./components/can/dip_sw.o
  493. .data 0x0000000000000000 0x0 ./components/can/dip_sw.o
  494. .bss 0x0000000000000000 0x0 ./components/can/dip_sw.o
  495. .text 0x0000000000000000 0x0 ./components/can/user_can.o
  496. .data 0x0000000000000000 0x0 ./components/can/user_can.o
  497. .bss 0x0000000000000000 0x0 ./components/can/user_can.o
  498. .text 0x0000000000000000 0x0 ./components/action/ble_action.o
  499. .data 0x0000000000000000 0x0 ./components/action/ble_action.o
  500. .bss 0x0000000000000000 0x0 ./components/action/ble_action.o
  501. .text.get_unixTime
  502. 0x0000000000000000 0xa ./components/action/ble_action.o
  503. .text.set_unixTime
  504. 0x0000000000000000 0xa ./components/action/ble_action.o
  505. .text 0x0000000000000000 0x0 ./components/action/user_sever.o
  506. .data 0x0000000000000000 0x0 ./components/action/user_sever.o
  507. .bss 0x0000000000000000 0x0 ./components/action/user_sever.o
  508. .text 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  509. .data 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  510. .bss 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
  511. .text.app_drv_fifo_length
  512. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  513. .text.app_drv_fifo_init
  514. 0x0000000000000000 0x22 ./User/app_drv_fifo/app_drv_fifo.o
  515. .text.app_drv_fifo_push
  516. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  517. .text.app_drv_fifo_pop
  518. 0x0000000000000000 0x16 ./User/app_drv_fifo/app_drv_fifo.o
  519. .text.app_drv_fifo_flush
  520. 0x0000000000000000 0x6 ./User/app_drv_fifo/app_drv_fifo.o
  521. .text.app_drv_fifo_is_empty
  522. 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
  523. .text.app_drv_fifo_is_full
  524. 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
  525. .text.app_drv_fifo_write
  526. 0x0000000000000000 0x62 ./User/app_drv_fifo/app_drv_fifo.o
  527. .text.app_drv_fifo_write_from_same_addr
  528. 0x0000000000000000 0x52 ./User/app_drv_fifo/app_drv_fifo.o
  529. .text.app_drv_fifo_read
  530. 0x0000000000000000 0x54 ./User/app_drv_fifo/app_drv_fifo.o
  531. .text.app_drv_fifo_read_to_same_addr
  532. 0x0000000000000000 0x3e ./User/app_drv_fifo/app_drv_fifo.o
  533. .debug_info 0x0000000000000000 0x5db ./User/app_drv_fifo/app_drv_fifo.o
  534. .debug_abbrev 0x0000000000000000 0x1a8 ./User/app_drv_fifo/app_drv_fifo.o
  535. .debug_loc 0x0000000000000000 0x3a4 ./User/app_drv_fifo/app_drv_fifo.o
  536. .debug_aranges
  537. 0x0000000000000000 0x70 ./User/app_drv_fifo/app_drv_fifo.o
  538. .debug_ranges 0x0000000000000000 0xa8 ./User/app_drv_fifo/app_drv_fifo.o
  539. .debug_line 0x0000000000000000 0x8ac ./User/app_drv_fifo/app_drv_fifo.o
  540. .debug_str 0x0000000000000000 0x477 ./User/app_drv_fifo/app_drv_fifo.o
  541. .comment 0x0000000000000000 0x34 ./User/app_drv_fifo/app_drv_fifo.o
  542. .debug_frame 0x0000000000000000 0xc0 ./User/app_drv_fifo/app_drv_fifo.o
  543. .text 0x0000000000000000 0x0 ./User/app_main.o
  544. .data 0x0000000000000000 0x0 ./User/app_main.o
  545. .bss 0x0000000000000000 0x0 ./User/app_main.o
  546. .text 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  547. .data 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  548. .bss 0x0000000000000000 0x0 ./User/ch32v20x_it.o
  549. .text 0x0000000000000000 0x0 ./User/peripheral.o
  550. .data 0x0000000000000000 0x0 ./User/peripheral.o
  551. .bss 0x0000000000000000 0x0 ./User/peripheral.o
  552. .text 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  553. .data 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  554. .bss 0x0000000000000000 0x0 ./User/system_ch32v20x.o
  555. .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  556. .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  557. .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  558. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  559. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  560. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  561. .text.ADC_StructInit
  562. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  563. .text.ADC_DMACmd
  564. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  565. .text.ADC_ITConfig
  566. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
  567. .text.ADC_ResetCalibration
  568. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  569. .text.ADC_GetResetCalibrationStatus
  570. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  571. .text.ADC_StartCalibration
  572. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  573. .text.ADC_GetCalibrationStatus
  574. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  575. .text.ADC_GetSoftwareStartConvStatus
  576. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  577. .text.ADC_DiscModeChannelCountConfig
  578. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  579. .text.ADC_DiscModeCmd
  580. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  581. .text.ADC_ExternalTrigConvCmd
  582. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  583. .text.ADC_GetDualModeConversionValue
  584. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  585. .text.ADC_AutoInjectedConvCmd
  586. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  587. .text.ADC_InjectedDiscModeCmd
  588. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  589. .text.ADC_ExternalTrigInjectedConvConfig
  590. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
  591. .text.ADC_ExternalTrigInjectedConvCmd
  592. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  593. .text.ADC_SoftwareStartInjectedConvCmd
  594. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  595. .text.ADC_GetSoftwareStartInjectedConvCmdStatus
  596. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  597. .text.ADC_InjectedChannelConfig
  598. 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
  599. .text.ADC_InjectedSequencerLengthConfig
  600. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  601. .text.ADC_SetInjectedOffset
  602. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  603. .text.ADC_GetInjectedConversionValue
  604. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  605. .text.ADC_AnalogWatchdogCmd
  606. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  607. .text.ADC_AnalogWatchdogThresholdsConfig
  608. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
  609. .text.ADC_AnalogWatchdogSingleChannelConfig
  610. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  611. .text.ADC_ClearFlag
  612. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  613. .text.ADC_GetITStatus
  614. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  615. .text.ADC_ClearITPendingBit
  616. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  617. .text.TempSensor_Volt_To_Temper
  618. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
  619. .text.Get_CalibrationValue
  620. 0x0000000000000000 0x142 ./SRC/Peripheral/src/ch32v20x_adc.o
  621. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  622. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  623. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  624. .text.BKP_DeInit
  625. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  626. .text.BKP_TamperPinLevelConfig
  627. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  628. .text.BKP_TamperPinCmd
  629. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  630. .text.BKP_ITConfig
  631. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  632. .text.BKP_RTCOutputConfig
  633. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  634. .text.BKP_SetRTCCalibrationValue
  635. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  636. .text.BKP_WriteBackupRegister
  637. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  638. .text.BKP_ReadBackupRegister
  639. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  640. .text.BKP_GetFlagStatus
  641. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  642. .text.BKP_ClearFlag
  643. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  644. .text.BKP_GetITStatus
  645. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  646. .text.BKP_ClearITPendingBit
  647. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  648. .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
  649. .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
  650. .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
  651. .debug_aranges
  652. 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
  653. .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
  654. .debug_line 0x0000000000000000 0x7e7 ./SRC/Peripheral/src/ch32v20x_bkp.o
  655. .debug_str 0x0000000000000000 0xb35 ./SRC/Peripheral/src/ch32v20x_bkp.o
  656. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
  657. .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
  658. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  659. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  660. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  661. .text.CAN_DeInit
  662. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
  663. .text.CAN_StructInit
  664. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
  665. .text.CAN_SlaveStartBank
  666. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
  667. .text.CAN_DBGFreeze
  668. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
  669. .text.CAN_TTComModeCmd
  670. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
  671. .text.CAN_CancelTransmit
  672. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
  673. .text.CAN_FIFORelease
  674. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  675. .text.CAN_MessagePending
  676. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  677. .text.CAN_OperatingModeRequest
  678. 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
  679. .text.CAN_Sleep
  680. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  681. .text.CAN_WakeUp
  682. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
  683. .text.CAN_GetLastErrorCode
  684. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
  685. .text.CAN_GetReceiveErrorCounter
  686. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
  687. .text.CAN_GetLSBTransmitErrorCounter
  688. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
  689. .text.CAN_GetFlagStatus
  690. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
  691. .text.CAN_ClearFlag
  692. 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
  693. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  694. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  695. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  696. .text.CRC_ResetDR
  697. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  698. .text.CRC_CalcCRC
  699. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  700. .text.CRC_CalcBlockCRC
  701. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
  702. .text.CRC_GetCRC
  703. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  704. .text.CRC_SetIDRegister
  705. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  706. .text.CRC_GetIDRegister
  707. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  708. .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
  709. .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
  710. .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
  711. .debug_aranges
  712. 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
  713. .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
  714. .debug_line 0x0000000000000000 0x4de ./SRC/Peripheral/src/ch32v20x_crc.o
  715. .debug_str 0x0000000000000000 0x70b ./SRC/Peripheral/src/ch32v20x_crc.o
  716. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
  717. .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
  718. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  719. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  720. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  721. .text.DBGMCU_GetREVID
  722. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  723. .text.DBGMCU_GetDEVID
  724. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  725. .text.__get_DEBUG_CR
  726. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  727. .text.__set_DEBUG_CR
  728. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  729. .text.DBGMCU_Config
  730. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  731. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  732. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  733. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  734. .text.DMA_StructInit
  735. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
  736. .text.DMA_GetCurrDataCounter
  737. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  738. .text.DMA_ClearFlag
  739. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  740. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  741. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  742. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  743. .text.EXTI_DeInit
  744. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
  745. .text.EXTI_Init
  746. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
  747. .text.EXTI_StructInit
  748. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  749. .text.EXTI_GenerateSWInterrupt
  750. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
  751. .text.EXTI_GetFlagStatus
  752. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  753. .text.EXTI_ClearFlag
  754. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  755. .text.EXTI_GetITStatus
  756. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
  757. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  758. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  759. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  760. .text.ROM_ERASE
  761. 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
  762. .text.FLASH_Unlock
  763. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
  764. .text.FLASH_UnlockBank1
  765. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  766. .text.FLASH_Lock
  767. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  768. .text.FLASH_LockBank1
  769. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  770. .text.FLASH_GetUserOptionByte
  771. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
  772. .text.FLASH_GetWriteProtectionOptionByte
  773. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  774. .text.FLASH_GetReadOutProtectionStatus
  775. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
  776. .text.FLASH_ITConfig
  777. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  778. .text.FLASH_GetFlagStatus
  779. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  780. .text.FLASH_ClearFlag
  781. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  782. .text.FLASH_GetStatus
  783. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  784. .text.FLASH_GetBank1Status
  785. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  786. .text.FLASH_WaitForLastOperation
  787. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_flash.o
  788. .text.FLASH_ErasePage
  789. 0x0000000000000000 0x4e ./SRC/Peripheral/src/ch32v20x_flash.o
  790. .text.FLASH_EraseAllPages
  791. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  792. .text.FLASH_EraseAllBank1Pages
  793. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  794. .text.FLASH_EraseOptionBytes
  795. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
  796. .text.FLASH_ProgramWord
  797. 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
  798. .text.FLASH_ProgramHalfWord
  799. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  800. .text.FLASH_ProgramOptionByteData
  801. 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
  802. .text.FLASH_EnableWriteProtection
  803. 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  804. .text.FLASH_ReadOutProtection
  805. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
  806. .text.FLASH_UserOptionByteConfig
  807. 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
  808. .text.FLASH_WaitForLastBank1Operation
  809. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  810. .text.FLASH_EraseBlock_32K_Fast
  811. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
  812. .text.FLASH_Access_Clock_Cfg
  813. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  814. .text.FLASH_Enhance_Mode
  815. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  816. .text.FLASH_ROM_ERASE
  817. 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
  818. .text.FLASH_ROM_WRITE
  819. 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
  820. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  821. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  822. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  823. .text.GPIO_DeInit
  824. 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  825. .text.GPIO_AFIODeInit
  826. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
  827. .text.GPIO_StructInit
  828. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
  829. .text.GPIO_ReadInputData
  830. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  831. .text.GPIO_ReadOutputDataBit
  832. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  833. .text.GPIO_ReadOutputData
  834. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  835. .text.GPIO_SetBits
  836. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  837. .text.GPIO_ResetBits
  838. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  839. .text.GPIO_Write
  840. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  841. .text.GPIO_PinLockConfig
  842. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
  843. .text.GPIO_EventOutputConfig
  844. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
  845. .text.GPIO_EventOutputCmd
  846. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
  847. .text.GPIO_PinRemapConfig
  848. 0x0000000000000000 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  849. .text.GPIO_EXTILineConfig
  850. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
  851. .text.GPIO_ETH_MediaInterfaceConfig
  852. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
  853. .text.GPIO_IPD_Unused
  854. 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
  855. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  856. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  857. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  858. .text.I2C_DeInit
  859. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
  860. .text.I2C_Init
  861. 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
  862. .text.I2C_StructInit
  863. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  864. .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  865. .text.I2C_DMACmd
  866. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
  867. .text.I2C_DMALastTransferCmd
  868. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  869. .text.I2C_GenerateSTART
  870. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  871. .text.I2C_GenerateSTOP
  872. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  873. .text.I2C_AcknowledgeConfig
  874. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  875. .text.I2C_OwnAddress2Config
  876. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  877. .text.I2C_DualAddressCmd
  878. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  879. .text.I2C_GeneralCallCmd
  880. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  881. .text.I2C_ITConfig
  882. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  883. .text.I2C_SendData
  884. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  885. .text.I2C_ReceiveData
  886. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  887. .text.I2C_Send7bitAddress
  888. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  889. .text.I2C_ReadRegister
  890. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  891. .text.I2C_SoftwareResetCmd
  892. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  893. .text.I2C_NACKPositionConfig
  894. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
  895. .text.I2C_SMBusAlertConfig
  896. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  897. .text.I2C_TransmitPEC
  898. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  899. .text.I2C_PECPositionConfig
  900. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  901. .text.I2C_CalculatePEC
  902. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  903. .text.I2C_GetPEC
  904. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
  905. .text.I2C_ARPCmd
  906. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  907. .text.I2C_StretchClockCmd
  908. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  909. .text.I2C_FastModeDutyCycleConfig
  910. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  911. .text.I2C_CheckEvent
  912. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  913. .text.I2C_GetLastEvent
  914. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
  915. .text.I2C_GetFlagStatus
  916. 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
  917. .text.I2C_ClearFlag
  918. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  919. .text.I2C_GetITStatus
  920. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
  921. .text.I2C_ClearITPendingBit
  922. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  923. .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
  924. .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
  925. .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  926. .debug_aranges
  927. 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
  928. .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
  929. .debug_line 0x0000000000000000 0x12c8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  930. .debug_str 0x0000000000000000 0xb70 ./SRC/Peripheral/src/ch32v20x_i2c.o
  931. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
  932. .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
  933. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  934. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  935. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  936. .text.IWDG_WriteAccessCmd
  937. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  938. .text.IWDG_SetPrescaler
  939. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  940. .text.IWDG_SetReload
  941. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  942. .text.IWDG_Enable
  943. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  944. .text.IWDG_GetFlagStatus
  945. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  946. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  947. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  948. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  949. .text.NVIC_PriorityGroupConfig
  950. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
  951. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  952. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  953. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  954. .text.OPA_DeInit
  955. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
  956. .text.OPA_Init
  957. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
  958. .text.OPA_StructInit
  959. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
  960. .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
  961. .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
  962. .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
  963. .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
  964. .debug_aranges
  965. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
  966. .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
  967. .debug_line 0x0000000000000000 0x5a1 ./SRC/Peripheral/src/ch32v20x_opa.o
  968. .debug_str 0x0000000000000000 0x74b ./SRC/Peripheral/src/ch32v20x_opa.o
  969. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
  970. .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
  971. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  972. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  973. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  974. .text.PWR_DeInit
  975. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
  976. .text.PWR_PVDCmd
  977. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
  978. .text.PWR_PVDLevelConfig
  979. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
  980. .text.PWR_WakeUpPinCmd
  981. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  982. .text.PWR_EnterSTOPMode
  983. 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
  984. .text.PWR_EnterSTANDBYMode
  985. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  986. .text.PWR_GetFlagStatus
  987. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  988. .text.PWR_ClearFlag
  989. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  990. .text.PWR_EnterSTANDBYMode_RAM
  991. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  992. .text.PWR_EnterSTANDBYMode_RAM_LV
  993. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  994. .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
  995. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  996. .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
  997. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  998. .text.PWR_EnterSTOPMode_RAM_LV
  999. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
  1000. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1001. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1002. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1003. .text.RCC_DeInit
  1004. 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1005. .text.RCC_HSEConfig
  1006. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  1007. .text.RCC_AdjustHSICalibrationValue
  1008. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1009. .text.RCC_HSICmd
  1010. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1011. .text.RCC_PLLConfig
  1012. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1013. .text.RCC_PLLCmd
  1014. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1015. .text.RCC_SYSCLKConfig
  1016. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  1017. .text.RCC_GetSYSCLKSource
  1018. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
  1019. .text.RCC_HCLKConfig
  1020. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1021. .text.RCC_PCLK1Config
  1022. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1023. .text.RCC_PCLK2Config
  1024. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1025. .text.RCC_ITConfig
  1026. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1027. .text.RCC_USBCLKConfig
  1028. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  1029. .text.RCC_LSICmd
  1030. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1031. .text.RCC_APB1PeriphResetCmd
  1032. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1033. .text.RCC_BackupResetCmd
  1034. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1035. .text.RCC_ClockSecuritySystemCmd
  1036. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1037. .text.RCC_MCOConfig
  1038. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1039. .text.RCC_WaitForHSEStartUp
  1040. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  1041. .text.RCC_ClearFlag
  1042. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1043. .text.RCC_GetITStatus
  1044. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  1045. .text.RCC_ClearITPendingBit
  1046. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1047. .text.RCC_ADCCLKADJcmd
  1048. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1049. .text.RCC_ETHDIVConfig
  1050. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  1051. .text.RCC_USB5PRE_JUDGE
  1052. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1053. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1054. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1055. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1056. .text.RTC_ITConfig
  1057. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
  1058. .text.RTC_SetAlarm
  1059. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1060. .text.RTC_GetDivider
  1061. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1062. .text.RTC_WaitForSynchro
  1063. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1064. .text.RTC_GetFlagStatus
  1065. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1066. .text.RTC_GetITStatus
  1067. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1068. .text.Calibration_LSI
  1069. 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1070. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1071. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1072. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  1073. .text.SPI_I2S_DeInit
  1074. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
  1075. .text.I2S_Init
  1076. 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
  1077. .text.SPI_StructInit
  1078. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
  1079. .text.I2S_StructInit
  1080. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  1081. .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  1082. .text.SPI_I2S_ITConfig
  1083. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
  1084. .text.SPI_NSSInternalSoftwareConfig
  1085. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
  1086. .text.SPI_SSOutputCmd
  1087. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
  1088. .text.SPI_DataSizeConfig
  1089. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  1090. .text.SPI_TransmitCRC
  1091. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  1092. .text.SPI_GetCRC
  1093. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  1094. .text.SPI_GetCRCPolynomial
  1095. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  1096. .text.SPI_BiDirectionalLineConfig
  1097. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  1098. .text.SPI_I2S_ClearFlag
  1099. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
  1100. .text.SPI_I2S_GetITStatus
  1101. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
  1102. .text.SPI_I2S_ClearITPendingBit
  1103. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  1104. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1105. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1106. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1107. .text.TI1_Config
  1108. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  1109. .text.TI2_Config
  1110. 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
  1111. .text.TIM_DeInit
  1112. 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1113. .text.TIM_TimeBaseInit
  1114. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  1115. .text.TIM_OC1Init
  1116. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  1117. .text.TIM_OC2Init
  1118. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
  1119. .text.TIM_OC3Init
  1120. 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
  1121. .text.TIM_OC4Init
  1122. 0x0000000000000000 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
  1123. .text.TIM_BDTRConfig
  1124. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1125. .text.TIM_TimeBaseStructInit
  1126. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1127. .text.TIM_OCStructInit
  1128. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
  1129. .text.TIM_ICStructInit
  1130. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1131. .text.TIM_BDTRStructInit
  1132. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
  1133. .text.TIM_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1134. .text.TIM_CtrlPWMOutputs
  1135. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1136. .text.TIM_ITConfig
  1137. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1138. .text.TIM_GenerateEvent
  1139. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1140. .text.TIM_DMAConfig
  1141. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  1142. .text.TIM_DMACmd
  1143. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  1144. .text.TIM_InternalClockConfig
  1145. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1146. .text.TIM_ITRxExternalClockConfig
  1147. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1148. .text.TIM_TIxExternalClockConfig
  1149. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
  1150. .text.TIM_ETRConfig
  1151. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1152. .text.TIM_ETRClockMode1Config
  1153. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
  1154. .text.TIM_ETRClockMode2Config
  1155. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1156. .text.TIM_PrescalerConfig
  1157. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1158. .text.TIM_CounterModeConfig
  1159. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1160. .text.TIM_SelectInputTrigger
  1161. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1162. .text.TIM_EncoderInterfaceConfig
  1163. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
  1164. .text.TIM_ForcedOC1Config
  1165. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1166. .text.TIM_ForcedOC2Config
  1167. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1168. .text.TIM_ForcedOC3Config
  1169. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1170. .text.TIM_ForcedOC4Config
  1171. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1172. .text.TIM_ARRPreloadConfig
  1173. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1174. .text.TIM_SelectCOM
  1175. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1176. .text.TIM_SelectCCDMA
  1177. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1178. .text.TIM_CCPreloadControl
  1179. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1180. .text.TIM_OC1PreloadConfig
  1181. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1182. .text.TIM_OC2PreloadConfig
  1183. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1184. .text.TIM_OC3PreloadConfig
  1185. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1186. .text.TIM_OC4PreloadConfig
  1187. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1188. .text.TIM_OC1FastConfig
  1189. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1190. .text.TIM_OC2FastConfig
  1191. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1192. .text.TIM_OC3FastConfig
  1193. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1194. .text.TIM_OC4FastConfig
  1195. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1196. .text.TIM_ClearOC1Ref
  1197. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1198. .text.TIM_ClearOC2Ref
  1199. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1200. .text.TIM_ClearOC3Ref
  1201. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  1202. .text.TIM_ClearOC4Ref
  1203. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  1204. .text.TIM_OC1PolarityConfig
  1205. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1206. .text.TIM_OC1NPolarityConfig
  1207. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  1208. .text.TIM_OC2PolarityConfig
  1209. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1210. .text.TIM_OC2NPolarityConfig
  1211. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1212. .text.TIM_OC3PolarityConfig
  1213. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1214. .text.TIM_OC3NPolarityConfig
  1215. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1216. .text.TIM_OC4PolarityConfig
  1217. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  1218. .text.TIM_CCxCmd
  1219. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1220. .text.TIM_CCxNCmd
  1221. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  1222. .text.TIM_SelectOCxM
  1223. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
  1224. .text.TIM_UpdateDisableConfig
  1225. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1226. .text.TIM_UpdateRequestConfig
  1227. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1228. .text.TIM_SelectHallSensor
  1229. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1230. .text.TIM_SelectOnePulseMode
  1231. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1232. .text.TIM_SelectOutputTrigger
  1233. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1234. .text.TIM_SelectSlaveMode
  1235. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1236. .text.TIM_SelectMasterSlaveMode
  1237. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1238. .text.TIM_SetCounter
  1239. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1240. .text.TIM_SetAutoreload
  1241. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1242. .text.TIM_SetCompare1
  1243. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1244. .text.TIM_SetCompare2
  1245. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1246. .text.TIM_SetCompare3
  1247. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1248. .text.TIM_SetCompare4
  1249. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1250. .text.TIM_SetIC1Prescaler
  1251. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1252. .text.TIM_SetIC2Prescaler
  1253. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1254. .text.TIM_PWMIConfig
  1255. 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1256. .text.TIM_SetIC3Prescaler
  1257. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  1258. .text.TIM_SetIC4Prescaler
  1259. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  1260. .text.TIM_ICInit
  1261. 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
  1262. .text.TIM_SetClockDivision
  1263. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1264. .text.TIM_GetCapture1
  1265. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1266. .text.TIM_GetCapture2
  1267. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1268. .text.TIM_GetCapture3
  1269. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1270. .text.TIM_GetCapture4
  1271. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  1272. .text.TIM_GetCounter
  1273. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1274. .text.TIM_GetPrescaler
  1275. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  1276. .text.TIM_GetFlagStatus
  1277. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
  1278. .text.TIM_ClearFlag
  1279. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1280. .text.TIM_GetITStatus
  1281. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1282. .text.TIM_ClearITPendingBit
  1283. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  1284. .debug_info 0x0000000000000000 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1285. .debug_abbrev 0x0000000000000000 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
  1286. .debug_loc 0x0000000000000000 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
  1287. .debug_aranges
  1288. 0x0000000000000000 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
  1289. .debug_ranges 0x0000000000000000 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
  1290. .debug_line 0x0000000000000000 0x3358 ./SRC/Peripheral/src/ch32v20x_tim.o
  1291. .debug_str 0x0000000000000000 0x1349 ./SRC/Peripheral/src/ch32v20x_tim.o
  1292. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
  1293. .debug_frame 0x0000000000000000 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
  1294. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1295. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1296. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1297. .text.TI1_Config
  1298. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1299. .text.TI2_Config
  1300. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1301. .text.TIM5_DeInit
  1302. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1303. .text.TIM5_TimeBaseInit
  1304. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1305. .text.TIM5_OC1Init
  1306. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1307. .text.TIM5_OC2Init
  1308. 0x0000000000000000 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1309. .text.TIM5_OC3Init
  1310. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1311. .text.TIM5_OC4Init
  1312. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1313. .text.TIM5_BDTRConfig
  1314. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1315. .text.TIM5_TimeBaseStructInit
  1316. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1317. .text.TIM5_OCStructInit
  1318. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1319. .text.TIM5_ICStructInit
  1320. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1321. .text.TIM5_BDTRStructInit
  1322. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1323. .text.TIM5_Cmd
  1324. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1325. .text.TIM5_CtrlPWMOutputs
  1326. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1327. .text.TIM5_ITConfig
  1328. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1329. .text.TIM5_GenerateEvent
  1330. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1331. .text.TIM5_DMAConfig
  1332. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
  1333. .text.TIM5_DMACmd
  1334. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1335. .text.TIM5_InternalClockConfig
  1336. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1337. .text.TIM5_ITRxExternalClockConfig
  1338. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1339. .text.TIM5_TIxExternalClockConfig
  1340. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1341. .text.TIM5_ETRClockMode1Config
  1342. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1343. .text.TIM5_ETRClockMode2Config
  1344. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1345. .text.TIM5_ETRConfig
  1346. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1347. .text.TIM5_PrescalerConfig
  1348. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
  1349. .text.TIM5_CounterModeConfig
  1350. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1351. .text.TIM5_SelectInputTrigger
  1352. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1353. .text.TIM5_EncoderInterfaceConfig
  1354. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1355. .text.TIM5_ForcedOC1Config
  1356. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1357. .text.TIM5_ForcedOC2Config
  1358. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1359. .text.TIM5_ForcedOC3Config
  1360. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1361. .text.TIM5_ForcedOC4Config
  1362. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1363. .text.TIM5_ARRPreloadConfig
  1364. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1365. .text.TIM5_SelectCOM
  1366. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1367. .text.TIM5_SelectCCDMA
  1368. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1369. .text.TIM5_CCPreloadControl
  1370. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1371. .text.TIM5_OC1PreloadConfig
  1372. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1373. .text.TIM5_OC2PreloadConfig
  1374. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1375. .text.TIM5_OC3PreloadConfig
  1376. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1377. .text.TIM5_OC4PreloadConfig
  1378. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1379. .text.TIM5_OC1FastConfig
  1380. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1381. .text.TIM5_OC2FastConfig
  1382. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1383. .text.TIM5_OC3FastConfig
  1384. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1385. .text.TIM5_OC4FastConfig
  1386. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1387. .text.TIM5_ClearOC1Ref
  1388. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1389. .text.TIM5_ClearOC2Ref
  1390. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1391. .text.TIM5_ClearOC3Ref
  1392. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1393. .text.TIM5_ClearOC4Ref
  1394. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  1395. .text.TIM5_OC1PolarityConfig
  1396. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1397. .text.TIM5_OC1NPolarityConfig
  1398. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1399. .text.TIM5_OC2PolarityConfig
  1400. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1401. .text.TIM5_OC2NPolarityConfig
  1402. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1403. .text.TIM5_OC3PolarityConfig
  1404. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1405. .text.TIM5_OC3NPolarityConfig
  1406. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1407. .text.TIM5_OC4PolarityConfig
  1408. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1409. .text.TIM5_CCxCmd
  1410. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1411. .text.TIM5_CCxNCmd
  1412. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1413. .text.TIM5_SelectOCxM
  1414. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1415. .text.TIM5_UpdateDisableConfig
  1416. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1417. .text.TIM5_UpdateRequestConfig
  1418. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1419. .text.TIM5_SelectHallSensor
  1420. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1421. .text.TIM5_SelectOnePulseMode
  1422. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1423. .text.TIM5_SelectOutputTrigger
  1424. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1425. .text.TIM5_SelectSlaveMode
  1426. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1427. .text.TIM5_SelectMasterSlaveMode
  1428. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1429. .text.TIM5_SetCounter
  1430. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1431. .text.TIM5_SetAutoreload
  1432. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1433. .text.TIM5_SetCompare1
  1434. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1435. .text.TIM5_SetCompare2
  1436. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1437. .text.TIM5_SetCompare3
  1438. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1439. .text.TIM5_SetCompare4
  1440. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1441. .text.TIM5_SetIC1Prescaler
  1442. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1443. .text.TIM5_SetIC2Prescaler
  1444. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1445. .text.TIM5_PWMIConfig
  1446. 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1447. .text.TIM5_SetIC3Prescaler
  1448. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1449. .text.TIM5_SetIC4Prescaler
  1450. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1451. .text.TIM5_ICInit
  1452. 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1453. .text.TIM5_SetClockDivision
  1454. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1455. .text.TIM5_GetCapture1
  1456. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1457. .text.TIM5_GetCapture2
  1458. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1459. .text.TIM5_GetCapture3
  1460. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1461. .text.TIM5_GetCapture4
  1462. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1463. .text.TIM5_GetCounter
  1464. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1465. .text.TIM5_GetPrescaler
  1466. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1467. .text.TIM5_GetFlagStatus
  1468. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1469. .text.TIM5_ClearFlag
  1470. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1471. .text.TIM5_GetITStatus
  1472. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1473. .text.TIM5_ClearITPendingBit
  1474. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1475. .debug_info 0x0000000000000000 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1476. .debug_abbrev 0x0000000000000000 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1477. .debug_loc 0x0000000000000000 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1478. .debug_aranges
  1479. 0x0000000000000000 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1480. .debug_ranges 0x0000000000000000 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1481. .debug_line 0x0000000000000000 0x2c8e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1482. .debug_str 0x0000000000000000 0x13ae ./SRC/Peripheral/src/ch32v20x_tim5.o
  1483. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1484. .debug_frame 0x0000000000000000 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1485. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1486. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1487. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1488. .text.USART_DeInit
  1489. 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
  1490. .text.USART_StructInit
  1491. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1492. .text.USART_ClockInit
  1493. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
  1494. .text.USART_ClockStructInit
  1495. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1496. .text.USART_ITConfig
  1497. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
  1498. .text.USART_DMACmd
  1499. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1500. .text.USART_SetAddress
  1501. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1502. .text.USART_WakeUpConfig
  1503. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1504. .text.USART_ReceiverWakeUpCmd
  1505. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1506. .text.USART_LINBreakDetectLengthConfig
  1507. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1508. .text.USART_LINCmd
  1509. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1510. .text.USART_ReceiveData
  1511. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1512. .text.USART_SendBreak
  1513. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1514. .text.USART_SetGuardTime
  1515. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1516. .text.USART_SetPrescaler
  1517. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1518. .text.USART_SmartCardCmd
  1519. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
  1520. .text.USART_SmartCardNACKCmd
  1521. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1522. .text.USART_HalfDuplexCmd
  1523. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1524. .text.USART_IrDAConfig
  1525. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1526. .text.USART_IrDACmd
  1527. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1528. .text.USART_ClearFlag
  1529. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
  1530. .text.USART_GetITStatus
  1531. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
  1532. .text.USART_ClearITPendingBit
  1533. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1534. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1535. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1536. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1537. .text.WWDG_DeInit
  1538. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1539. .text.WWDG_SetPrescaler
  1540. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1541. .text.WWDG_SetWindowValue
  1542. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1543. .text.WWDG_EnableIT
  1544. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1545. .text.WWDG_SetCounter
  1546. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1547. .text.WWDG_Enable
  1548. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1549. .text.WWDG_GetFlagStatus
  1550. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1551. .text.WWDG_ClearFlag
  1552. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1553. .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1554. .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1555. .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1556. .debug_aranges
  1557. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1558. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1559. .debug_line 0x0000000000000000 0x616 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1560. .debug_str 0x0000000000000000 0x742 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1561. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1562. .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1563. .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1564. .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1565. .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1566. .text.SDI_Printf_Enable
  1567. 0x0000000000000000 0x22 ./SRC/Debug/debug.o
  1568. .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1569. .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1570. .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1571. .text.__get_MSTATUS
  1572. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1573. .text.__set_MSTATUS
  1574. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1575. .text.__get_MISA
  1576. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1577. .text.__set_MISA
  1578. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1579. .text.__get_MTVEC
  1580. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1581. .text.__set_MTVEC
  1582. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1583. .text.__get_MSCRATCH
  1584. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1585. .text.__set_MSCRATCH
  1586. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1587. .text.__get_MEPC
  1588. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1589. .text.__set_MEPC
  1590. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1591. .text.__get_MCAUSE
  1592. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1593. .text.__set_MCAUSE
  1594. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1595. .text.__get_MTVAL
  1596. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1597. .text.__set_MTVAL
  1598. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1599. .text.__get_MVENDORID
  1600. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1601. .text.__get_MARCHID
  1602. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1603. .text.__get_MIMPID
  1604. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1605. .text.__get_MHARTID
  1606. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1607. .text.__get_SP
  1608. 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
  1609. .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
  1610. .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
  1611. .debug_aranges
  1612. 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
  1613. .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
  1614. .debug_line 0x0000000000000000 0x4f4 ./SRC/Core/core_riscv.o
  1615. .debug_str 0x0000000000000000 0x32c ./SRC/Core/core_riscv.o
  1616. .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
  1617. .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
  1618. .text 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1619. .data 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1620. .bss 0x0000000000000000 0x0 ./Profile/devinfoservice.o
  1621. .text.DevInfo_SetParameter
  1622. 0x0000000000000000 0x28 ./Profile/devinfoservice.o
  1623. .text.DevInfo_GetParameter
  1624. 0x0000000000000000 0xce ./Profile/devinfoservice.o
  1625. .rodata.DevInfo_GetParameter
  1626. 0x0000000000000000 0x24 ./Profile/devinfoservice.o
  1627. .text 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1628. .data 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1629. .bss 0x0000000000000000 0x0 ./Profile/gattprofile.o
  1630. .text.SimpleProfile_GetParameter
  1631. 0x0000000000000000 0x78 ./Profile/gattprofile.o
  1632. .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1633. .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1634. .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1635. .text 0x0000000000000000 0x0 ./HAL/MCU.o
  1636. .data 0x0000000000000000 0x0 ./HAL/MCU.o
  1637. .bss 0x0000000000000000 0x0 ./HAL/MCU.o
  1638. .text.Lib_Calibration_LSI
  1639. 0x0000000000000000 0xa ./HAL/MCU.o
  1640. .text 0x0000000000000000 0x0 ./HAL/RTC.o
  1641. .data 0x0000000000000000 0x0 ./HAL/RTC.o
  1642. .bss 0x0000000000000000 0x0 ./HAL/RTC.o
  1643. .text.RTC_SetTignTime
  1644. 0x0000000000000000 0x2e ./HAL/RTC.o
  1645. .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1646. .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1647. .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1648. .text.BLE_LowPower
  1649. 0x0000000000000000 0x4 ./HAL/SLEEP.o
  1650. .text.HAL_SleepInit
  1651. 0x0000000000000000 0x2 ./HAL/SLEEP.o
  1652. .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
  1653. .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
  1654. .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
  1655. .debug_aranges
  1656. 0x0000000000000000 0x28 ./HAL/SLEEP.o
  1657. .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
  1658. .debug_line 0x0000000000000000 0x3ff ./HAL/SLEEP.o
  1659. .debug_str 0x0000000000000000 0x687 ./HAL/SLEEP.o
  1660. .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
  1661. .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
  1662. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1663. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1664. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1665. .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)
  1666. .rodata.log.cst8
  1667. 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)
  1668. .rodata.log.str1.4
  1669. 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)
  1670. .debug_frame 0x0000000000000000 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
  1671. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  1672. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  1673. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
  1674. .text.__ieee754_log
  1675. 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)
  1676. .rodata.__ieee754_log.cst8
  1677. 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)
  1678. .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)
  1679. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1680. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1681. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1682. .sdata.__fdlib_version
  1683. 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)
  1684. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1685. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1686. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1687. .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)
  1688. .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)
  1689. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  1690. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  1691. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
  1692. .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)
  1693. .rodata.nan.cst8
  1694. 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)
  1695. .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)
  1696. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  1697. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  1698. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  1699. .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1700. .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  1701. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  1702. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  1703. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
  1704. .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)
  1705. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1706. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1707. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1708. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1709. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1710. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  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/rv32imacxw/ilp32\libgcc.a(eqdf2.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/rv32imacxw/ilp32\libgcc.a(eqdf2.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/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
  1714. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1715. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1716. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1717. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1718. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1719. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1720. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1721. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1722. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1723. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1724. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1725. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1726. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  1727. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  1728. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
  1729. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  1730. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  1731. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
  1732. .text.__addsf3
  1733. 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)
  1734. .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)
  1735. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1736. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1737. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1738. .text.__divsf3
  1739. 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)
  1740. .rodata.__divsf3
  1741. 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)
  1742. .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)
  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/rv32imacxw/ilp32\libgcc.a(lesf2.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/rv32imacxw/ilp32\libgcc.a(lesf2.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/rv32imacxw/ilp32\libgcc.a(lesf2.o)
  1746. .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)
  1747. .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)
  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/rv32imacxw/ilp32\libgcc.a(mulsf3.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/rv32imacxw/ilp32\libgcc.a(mulsf3.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/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
  1751. .text.__mulsf3
  1752. 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)
  1753. .rodata.__mulsf3
  1754. 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)
  1755. .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)
  1756. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  1757. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  1758. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
  1759. .text.__subsf3
  1760. 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)
  1761. .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)
  1762. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1763. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1764. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1765. .text.__floatsisf
  1766. 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)
  1767. .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)
  1768. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1769. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1770. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  1771. .text.__floatunsisf
  1772. 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)
  1773. .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)
  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/rv32imacxw/ilp32\libgcc.a(extendsfdf2.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/rv32imacxw/ilp32\libgcc.a(extendsfdf2.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/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
  1777. .text.__extendsfdf2
  1778. 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)
  1779. .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)
  1780. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  1781. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  1782. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
  1783. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  1784. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  1785. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
  1786. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  1787. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  1788. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
  1789. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1790. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1791. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1792. .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)
  1793. .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)
  1794. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1795. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1796. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  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-malloc.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-malloc.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-malloc.o)
  1800. .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)
  1801. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1802. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1803. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  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-memset.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-memset.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-nano-freer.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-nano-freer.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-nano-freer.o)
  1809. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  1810. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  1811. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.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-nano-vfprintf_float.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-nano-vfprintf_float.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-nano-vfprintf_float.o)
  1815. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  1816. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  1817. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.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-nano-vfscanf_float.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-nano-vfscanf_float.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-nano-vfscanf_float.o)
  1821. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  1822. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  1823. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  1824. .text._printf_r
  1825. 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)
  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-puts.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-puts.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-puts.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-realloc.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-realloc.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-realloc.o)
  1832. .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)
  1833. .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)
  1834. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  1835. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  1836. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  1837. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1838. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1839. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
  1840. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1841. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1842. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
  1843. .text._sprintf_r
  1844. 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)
  1845. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  1846. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  1847. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
  1848. .text._sscanf_r
  1849. 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)
  1850. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  1851. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  1852. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  1853. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  1854. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  1855. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
  1856. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1857. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1858. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1859. .text.strtod_l
  1860. 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)
  1861. .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)
  1862. .text.strtof_l
  1863. 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)
  1864. .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)
  1865. .rodata.strtof_l.cst4
  1866. 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
  1867. .rodata.strtof_l.cst8
  1868. 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)
  1869. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1870. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1871. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1872. .text.strtol_l
  1873. 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)
  1874. .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)
  1875. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  1876. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  1877. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  1878. .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)
  1879. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1880. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1881. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1882. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1883. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1884. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1885. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1886. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1887. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1888. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1889. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1890. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1891. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1892. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1893. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1894. .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)
  1895. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1896. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1897. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1898. .text.__fp_lock
  1899. 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)
  1900. .text.__fp_unlock
  1901. 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)
  1902. .text._cleanup
  1903. 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)
  1904. .text.__sfp_lock_acquire
  1905. 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)
  1906. .text.__sfp_lock_release
  1907. 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)
  1908. .text.__sinit_lock_acquire
  1909. 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)
  1910. .text.__sinit_lock_release
  1911. 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)
  1912. .text.__fp_lock_all
  1913. 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)
  1914. .text.__fp_unlock_all
  1915. 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)
  1916. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1917. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1918. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1919. .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)
  1920. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1921. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1922. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
  1923. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  1924. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  1925. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
  1926. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1927. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1928. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
  1929. .text._setlocale_r
  1930. 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)
  1931. .text.__locale_mb_cur_max
  1932. 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)
  1933. .text.setlocale
  1934. 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)
  1935. .sbss._PathLocale
  1936. 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)
  1937. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1938. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1939. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1940. .text.localeconv
  1941. 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)
  1942. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1943. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1944. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1945. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1946. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1947. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1948. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1949. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1950. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1951. .text._mbtowc_r
  1952. 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)
  1953. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  1954. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  1955. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  1956. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1957. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1958. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1959. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1960. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1961. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
  1962. .text._mprec_log10
  1963. 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)
  1964. .rodata.__mprec_tinytens
  1965. 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)
  1966. .rodata._mprec_log10.cst8
  1967. 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)
  1968. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  1969. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  1970. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
  1971. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1972. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1973. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1974. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  1975. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  1976. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
  1977. .text.__ssprint_r
  1978. 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)
  1979. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  1980. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  1981. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
  1982. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1983. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1984. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  1985. .text.__sprint_r
  1986. 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)
  1987. .text.vfprintf
  1988. 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)
  1989. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1990. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1991. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1992. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1993. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1994. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1995. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1996. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1997. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1998. .text.cleanup_glue
  1999. 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)
  2000. .text._reclaim_reent
  2001. 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)
  2002. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2003. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2004. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2005. .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)
  2006. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2007. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2008. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2009. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2010. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2011. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2012. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2013. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2014. .text.strtoul_l
  2015. 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)
  2016. .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)
  2017. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2018. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2019. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2020. .text._ungetc_r
  2021. 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)
  2022. .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)
  2023. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2024. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2025. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2026. .text._wctomb_r
  2027. 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)
  2028. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2029. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2030. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2031. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2032. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2033. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2034. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2035. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2036. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2037. .text.__sfvwrite_r
  2038. 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)
  2039. .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)
  2040. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2041. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2042. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2043. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2044. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2045. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  2046. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  2047. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  2048. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  2049. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2050. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2051. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2052. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2053. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2054. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2055. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2056. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2057. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2058. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2059. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2060. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2061. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2062. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2063. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2064. .text.__unordsf2
  2065. 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)
  2066. .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)
  2067. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2068. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2069. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2070. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2071. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2072. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
  2073. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2074. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2075. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2076. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2077. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2078. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2079. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2080. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2081. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2082. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2083. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2084. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2085. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2086. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2087. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  2088. Memory Configuration
  2089. Name Origin Length Attributes
  2090. FLASH 0x0000000000005000 0x000000000003b000 xr
  2091. RAM 0x0000000020004000 0x000000000000c000 xrw
  2092. *default* 0x0000000000000000 0xffffffffffffffff
  2093. Linker script and memory map
  2094. LOAD ./components/ws2812b/user_ws2812b.o
  2095. LOAD ./components/ws2812b/ws2812b_spi.o
  2096. LOAD ./components/tools/AES_PKCS7.o
  2097. LOAD ./components/tools/_string.o
  2098. LOAD ./components/tools/my_math.o
  2099. LOAD ./components/tools/tools.o
  2100. LOAD ./components/tools/user_crc16.o
  2101. LOAD ./components/nfc/fm175xx.o
  2102. LOAD ./components/nfc/lpcd.o
  2103. LOAD ./components/nfc/mifare_card.o
  2104. LOAD ./components/nfc/type_a.o
  2105. LOAD ./components/nfc/type_b.o
  2106. LOAD ./components/nfc/user_nfc.o
  2107. LOAD ./components/nfc/user_spi.o
  2108. LOAD ./components/led/user_led.o
  2109. LOAD ./components/electlock/elect_sw.o
  2110. LOAD ./components/electlock/user_elect.o
  2111. LOAD ./components/config/user_config.o
  2112. LOAD ./components/can/dip_sw.o
  2113. LOAD ./components/can/user_can.o
  2114. LOAD ./components/action/ble_action.o
  2115. LOAD ./components/action/user_sever.o
  2116. LOAD ./User/app_drv_fifo/app_drv_fifo.o
  2117. LOAD ./User/app_main.o
  2118. LOAD ./User/ch32v20x_it.o
  2119. LOAD ./User/peripheral.o
  2120. LOAD ./User/system_ch32v20x.o
  2121. LOAD ./Startup/startup_ch32v20x_D8W.o
  2122. LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
  2123. LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
  2124. LOAD ./SRC/Peripheral/src/ch32v20x_can.o
  2125. LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
  2126. LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2127. LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
  2128. LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
  2129. LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
  2130. LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
  2131. LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
  2132. LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2133. LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
  2134. LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
  2135. LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
  2136. LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
  2137. LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
  2138. LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
  2139. LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
  2140. LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
  2141. LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
  2142. LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
  2143. LOAD ./SRC/Debug/debug.o
  2144. LOAD ./SRC/Core/core_riscv.o
  2145. LOAD ./Profile/devinfoservice.o
  2146. LOAD ./Profile/gattprofile.o
  2147. LOAD ./LIB/ble_task_scheduler.o
  2148. LOAD ./HAL/MCU.o
  2149. LOAD ./HAL/RTC.o
  2150. LOAD ./HAL/SLEEP.o
  2151. 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
  2152. LOAD d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a
  2153. 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
  2154. 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
  2155. 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
  2156. 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
  2157. 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
  2158. START GROUP
  2159. 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
  2160. 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
  2161. 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
  2162. END GROUP
  2163. START GROUP
  2164. 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
  2165. 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
  2166. 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
  2167. END GROUP
  2168. 0x0000000000000800 __stack_size = 0x800
  2169. [!provide] PROVIDE (_stack_size = __stack_size)
  2170. 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
  2171. .init 0x0000000000005000 0x3c
  2172. 0x0000000000005000 _sinit = .
  2173. 0x0000000000005000 . = ALIGN (0x4)
  2174. *(SORT_NONE(.init))
  2175. .init 0x0000000000005000 0x38 ./Startup/startup_ch32v20x_D8W.o
  2176. 0x0000000000005000 _start
  2177. *(.ImageFlag)
  2178. .ImageFlag 0x0000000000005038 0x4 ./User/app_main.o
  2179. 0x0000000000005038 Image_Flag
  2180. *(.ImageFlag.*)
  2181. 0x000000000000503c . = ALIGN (0x4)
  2182. 0x000000000000503c _einit = .
  2183. .vector 0x000000000000503c 0x144
  2184. *(.vector)
  2185. .vector 0x000000000000503c 0x118 ./Startup/startup_ch32v20x_D8W.o
  2186. 0x0000000000005180 . = ALIGN (0x40)
  2187. *fill* 0x0000000000005154 0x2c
  2188. *(SORT_NONE(.handle_reset))
  2189. .highcode 0x0000000000005180 0xec
  2190. 0x0000000000005180 . = ALIGN (0x4)
  2191. *(.highcode)
  2192. .highcode 0x0000000000005180 0x14 ./User/app_main.o
  2193. 0x0000000000005180 Main_Circulation
  2194. .highcode 0x0000000000005194 0x4e ./LIB/ble_task_scheduler.o
  2195. 0x0000000000005194 Ecall_U_Mode_Handler
  2196. 0x0000000000005194 Ecall_M_Mode_Handler
  2197. *(.highcode.*)
  2198. *fill* 0x00000000000051e2 0x2
  2199. .highcode.LLE_IRQHandler
  2200. 0x00000000000051e4 0x86 ./LIB/ble_task_scheduler.o
  2201. 0x00000000000051e4 LLE_IRQHandler
  2202. 0x000000000000526c . = ALIGN (0x4)
  2203. *fill* 0x000000000000526a 0x2
  2204. .text 0x0000000000005270 0xf060
  2205. 0x0000000000005270 . = ALIGN (0x4)
  2206. *(.text)
  2207. .text 0x0000000000005270 0x210 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  2208. 0x0000000000005270 get_gb_token
  2209. 0x00000000000052a6 wch_base64_decode
  2210. 0x00000000000052a8 wch_base64_encode
  2211. 0x00000000000052aa Wch_AES_get_length
  2212. 0x00000000000052ae device_encrypt
  2213. 0x000000000000530e device_decrypt
  2214. 0x00000000000053d6 production_lic_set
  2215. 0x000000000000540c check_lic_stat
  2216. .text 0x0000000000005480 0x26c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  2217. 0x0000000000005480 base64_encode
  2218. 0x00000000000055ce base64_decode
  2219. .text 0x00000000000056ec 0x4b8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  2220. 0x00000000000056ec set_production_lic_key
  2221. 0x00000000000059a4 get_AesKey
  2222. .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)
  2223. 0x0000000000005ba4 memset
  2224. *(.text.*)
  2225. .text.vUser_ws2812b_set_wrByte
  2226. 0x0000000000005c4c 0x28 ./components/ws2812b/user_ws2812b.o
  2227. .text.user_ws2812b_task_process_event
  2228. 0x0000000000005c74 0xe0 ./components/ws2812b/user_ws2812b.o
  2229. .text.vUser_ws2812b_task_start
  2230. 0x0000000000005d54 0x12 ./components/ws2812b/user_ws2812b.o
  2231. 0x0000000000005d54 vUser_ws2812b_task_start
  2232. .text.vUser_ws2812b_init
  2233. 0x0000000000005d66 0x8e ./components/ws2812b/user_ws2812b.o
  2234. 0x0000000000005d66 vUser_ws2812b_init
  2235. .text.vUser_ws2812b_set_tx_stat
  2236. 0x0000000000005df4 0x6 ./components/ws2812b/user_ws2812b.o
  2237. 0x0000000000005df4 vUser_ws2812b_set_tx_stat
  2238. .text.vUser_ws2812b_set_stat
  2239. 0x0000000000005dfa 0x1c ./components/ws2812b/user_ws2812b.o
  2240. 0x0000000000005dfa vUser_ws2812b_set_stat
  2241. .text.Ws2812b_spi_dma_init
  2242. 0x0000000000005e16 0x7a ./components/ws2812b/ws2812b_spi.o
  2243. 0x0000000000005e16 Ws2812b_spi_dma_init
  2244. .text.ws2812b_spi_Init
  2245. 0x0000000000005e90 0x8c ./components/ws2812b/ws2812b_spi.o
  2246. 0x0000000000005e90 ws2812b_spi_Init
  2247. .text.bWs2812b_spi_WriteByte
  2248. 0x0000000000005f1c 0x42 ./components/ws2812b/ws2812b_spi.o
  2249. 0x0000000000005f1c bWs2812b_spi_WriteByte
  2250. .text.XorBytes
  2251. 0x0000000000005f5e 0x22 ./components/tools/AES_PKCS7.o
  2252. .text.ShiftRows
  2253. 0x0000000000005f80 0x60 ./components/tools/AES_PKCS7.o
  2254. .text.GfMultBy02
  2255. 0x0000000000005fe0 0x18 ./components/tools/AES_PKCS7.o
  2256. .text.MixColumns
  2257. 0x0000000000005ff8 0xee ./components/tools/AES_PKCS7.o
  2258. .text.AES_Init
  2259. 0x00000000000060e6 0x9e ./components/tools/AES_PKCS7.o
  2260. 0x00000000000060e6 AES_Init
  2261. .text.AES_get_length
  2262. 0x0000000000006184 0x6 ./components/tools/AES_PKCS7.o
  2263. 0x0000000000006184 AES_get_length
  2264. .text.AES_Encrypt_PKCS7
  2265. 0x000000000000618a 0x102 ./components/tools/AES_PKCS7.o
  2266. 0x000000000000618a AES_Encrypt_PKCS7
  2267. .text.AES_Decrypt
  2268. 0x000000000000628c 0xba ./components/tools/AES_PKCS7.o
  2269. 0x000000000000628c AES_Decrypt
  2270. .text._strlen 0x0000000000006346 0x14 ./components/tools/_string.o
  2271. 0x0000000000006346 _strlen
  2272. .text._strstr 0x000000000000635a 0x6c ./components/tools/_string.o
  2273. 0x000000000000635a _strstr
  2274. .text.rng_init
  2275. 0x00000000000063c6 0x2 ./components/tools/tools.o
  2276. 0x00000000000063c6 rng_init
  2277. .text.Get_Rand
  2278. 0x00000000000063c8 0xa ./components/tools/tools.o
  2279. 0x00000000000063c8 Get_Rand
  2280. .text.SetReg 0x00000000000063d2 0x10 ./components/nfc/fm175xx.o
  2281. 0x00000000000063d2 SetReg
  2282. .text.Read_Reg
  2283. 0x00000000000063e2 0x4 ./components/nfc/fm175xx.o
  2284. 0x00000000000063e2 Read_Reg
  2285. .text.Write_Reg
  2286. 0x00000000000063e6 0x10 ./components/nfc/fm175xx.o
  2287. 0x00000000000063e6 Write_Reg
  2288. .text.Read_FIFO
  2289. 0x00000000000063f6 0x2c ./components/nfc/fm175xx.o
  2290. 0x00000000000063f6 Read_FIFO
  2291. .text.Write_FIFO
  2292. 0x0000000000006422 0x2c ./components/nfc/fm175xx.o
  2293. 0x0000000000006422 Write_FIFO
  2294. .text.Set_BitMask
  2295. 0x000000000000644e 0x26 ./components/nfc/fm175xx.o
  2296. 0x000000000000644e Set_BitMask
  2297. .text.Clear_FIFO
  2298. 0x0000000000006474 0x1c ./components/nfc/fm175xx.o
  2299. 0x0000000000006474 Clear_FIFO
  2300. .text.Clear_BitMask
  2301. 0x0000000000006490 0x2a ./components/nfc/fm175xx.o
  2302. 0x0000000000006490 Clear_BitMask
  2303. .text.Write_Ext_Reg
  2304. 0x00000000000064ba 0x2e ./components/nfc/fm175xx.o
  2305. 0x00000000000064ba Write_Ext_Reg
  2306. .text.Set_Rf 0x00000000000064e8 0x78 ./components/nfc/fm175xx.o
  2307. 0x00000000000064e8 Set_Rf
  2308. .text.Pcd_Comm
  2309. 0x0000000000006560 0x16e ./components/nfc/fm175xx.o
  2310. 0x0000000000006560 Pcd_Comm
  2311. .text.Pcd_SetTimer
  2312. 0x00000000000066ce 0x74 ./components/nfc/fm175xx.o
  2313. 0x00000000000066ce Pcd_SetTimer
  2314. .text.Pcd_ConfigISOType
  2315. 0x0000000000006742 0xd4 ./components/nfc/fm175xx.o
  2316. 0x0000000000006742 Pcd_ConfigISOType
  2317. .text.FM175X_SoftReset
  2318. 0x0000000000006816 0x1c ./components/nfc/fm175xx.o
  2319. 0x0000000000006816 FM175X_SoftReset
  2320. .text.Lpcd_Set_IRQ_pin
  2321. 0x0000000000006832 0x18 ./components/nfc/lpcd.o
  2322. 0x0000000000006832 Lpcd_Set_IRQ_pin
  2323. .text.Lpcd_Init_Register
  2324. 0x000000000000684a 0x2a ./components/nfc/lpcd.o
  2325. 0x000000000000684a Lpcd_Init_Register
  2326. .text.TyteA_Read
  2327. 0x0000000000006874 0x5e ./components/nfc/lpcd.o
  2328. 0x0000000000006874 TyteA_Read
  2329. .text.RightMoveBit
  2330. 0x00000000000068d2 0x1a ./components/nfc/type_a.o
  2331. 0x00000000000068d2 RightMoveBit
  2332. .text.LeftMoveBit
  2333. 0x00000000000068ec 0x1c ./components/nfc/type_a.o
  2334. 0x00000000000068ec LeftMoveBit
  2335. .text.CollSaveUID
  2336. 0x0000000000006908 0xd4 ./components/nfc/type_a.o
  2337. 0x0000000000006908 CollSaveUID
  2338. .text.TypeA_Set_BitFraming
  2339. 0x00000000000069dc 0xf4 ./components/nfc/type_a.o
  2340. 0x00000000000069dc TypeA_Set_BitFraming
  2341. .text.TypeA_Request
  2342. 0x0000000000006ad0 0x72 ./components/nfc/type_a.o
  2343. 0x0000000000006ad0 TypeA_Request
  2344. .text.TypeA_Anticollision
  2345. 0x0000000000006b42 0xb4 ./components/nfc/type_a.o
  2346. 0x0000000000006b42 TypeA_Anticollision
  2347. .text.TypeA_Select
  2348. 0x0000000000006bf6 0x94 ./components/nfc/type_a.o
  2349. 0x0000000000006bf6 TypeA_Select
  2350. .text.TypeA_CardActive
  2351. 0x0000000000006c8a 0xfe ./components/nfc/type_a.o
  2352. 0x0000000000006c8a TypeA_CardActive
  2353. .text.TypeA_Halt
  2354. 0x0000000000006d88 0x54 ./components/nfc/type_a.o
  2355. 0x0000000000006d88 TypeA_Halt
  2356. .text.set_nfc_cs
  2357. 0x0000000000006ddc 0x64 ./components/nfc/user_nfc.o
  2358. .text.nfc_rst_disable
  2359. 0x0000000000006e40 0x50 ./components/nfc/user_nfc.o
  2360. .text.prvUser_nfc_upload_card_stat
  2361. 0x0000000000006e90 0x64 ./components/nfc/user_nfc.o
  2362. .text.user_nfc_task_process_event
  2363. 0x0000000000006ef4 0x260 ./components/nfc/user_nfc.o
  2364. .text.ReadRawRC
  2365. 0x0000000000007154 0x34 ./components/nfc/user_nfc.o
  2366. 0x0000000000007154 ReadRawRC
  2367. .text.WriteRawRC
  2368. 0x0000000000007188 0x2c ./components/nfc/user_nfc.o
  2369. 0x0000000000007188 WriteRawRC
  2370. .text.vUser_nfc_set_upload_key_stat_func
  2371. 0x00000000000071b4 0x6 ./components/nfc/user_nfc.o
  2372. 0x00000000000071b4 vUser_nfc_set_upload_key_stat_func
  2373. .text.vUser_nfc_task_start
  2374. 0x00000000000071ba 0x12 ./components/nfc/user_nfc.o
  2375. 0x00000000000071ba vUser_nfc_task_start
  2376. .text.vUser_nfc_init
  2377. 0x00000000000071cc 0x192 ./components/nfc/user_nfc.o
  2378. 0x00000000000071cc vUser_nfc_init
  2379. .text.user_spi_Init
  2380. 0x000000000000735e 0x9c ./components/nfc/user_spi.o
  2381. 0x000000000000735e user_spi_Init
  2382. .text.SPI_ReadWriteByte
  2383. 0x00000000000073fa 0x60 ./components/nfc/user_spi.o
  2384. 0x00000000000073fa SPI_ReadWriteByte
  2385. .text.prvSet_led_duty
  2386. 0x000000000000745a 0x20 ./components/led/user_led.o
  2387. .text.led_task_process_event
  2388. 0x000000000000747a 0x11c ./components/led/user_led.o
  2389. .text.set_led_indication
  2390. 0x0000000000007596 0xf4 ./components/led/user_led.o
  2391. 0x0000000000007596 set_led_indication
  2392. .text.led_task_init
  2393. 0x000000000000768a 0x2c ./components/led/user_led.o
  2394. 0x000000000000768a led_task_init
  2395. .text.led_task_start
  2396. 0x00000000000076b6 0x12 ./components/led/user_led.o
  2397. 0x00000000000076b6 led_task_start
  2398. .text.vUser_led_set_view_stat
  2399. 0x00000000000076c8 0xf2 ./components/led/user_led.o
  2400. 0x00000000000076c8 vUser_led_set_view_stat
  2401. .text.vUser_led_set_alarm_view
  2402. 0x00000000000077ba 0x138 ./components/led/user_led.o
  2403. 0x00000000000077ba vUser_led_set_alarm_view
  2404. .text.get_electsw05_level
  2405. 0x00000000000078f2 0x1c ./components/electlock/elect_sw.o
  2406. .text.get_electsw04_level
  2407. 0x000000000000790e 0x1c ./components/electlock/elect_sw.o
  2408. .text.get_electsw03_level
  2409. 0x000000000000792a 0x1c ./components/electlock/elect_sw.o
  2410. .text.get_electsw02_level
  2411. 0x0000000000007946 0x1c ./components/electlock/elect_sw.o
  2412. .text.get_electsw01_level
  2413. 0x0000000000007962 0x1c ./components/electlock/elect_sw.o
  2414. .text.vElectsw_init
  2415. 0x000000000000797e 0x78 ./components/electlock/elect_sw.o
  2416. 0x000000000000797e vElectsw_init
  2417. .text.electsw_task_process_event
  2418. 0x00000000000079f6 0xda ./components/electlock/elect_sw.o
  2419. 0x00000000000079f6 electsw_task_process_event
  2420. .text.electsw_task_start
  2421. 0x0000000000007ad0 0x12 ./components/electlock/elect_sw.o
  2422. 0x0000000000007ad0 electsw_task_start
  2423. .text.vElectsw_set_upload_func
  2424. 0x0000000000007ae2 0x6 ./components/electlock/elect_sw.o
  2425. 0x0000000000007ae2 vElectsw_set_upload_func
  2426. .text.elect_05_work_stat
  2427. 0x0000000000007ae8 0x70 ./components/electlock/user_elect.o
  2428. .text.elect_04_work_stat
  2429. 0x0000000000007b58 0x66 ./components/electlock/user_elect.o
  2430. .text.elect_03_work_stat
  2431. 0x0000000000007bbe 0x5e ./components/electlock/user_elect.o
  2432. .text.elect_02_work_stat
  2433. 0x0000000000007c1c 0x6a ./components/electlock/user_elect.o
  2434. .text.elect_01_work_stat
  2435. 0x0000000000007c86 0x6a ./components/electlock/user_elect.o
  2436. .text.elect_task_process_event
  2437. 0x0000000000007cf0 0xcc ./components/electlock/user_elect.o
  2438. .text.set_elect_work_stat
  2439. 0x0000000000007dbc 0x48 ./components/electlock/user_elect.o
  2440. 0x0000000000007dbc set_elect_work_stat
  2441. .text.elect_start
  2442. 0x0000000000007e04 0x28 ./components/electlock/user_elect.o
  2443. 0x0000000000007e04 elect_start
  2444. .text.elect_task_init
  2445. 0x0000000000007e2c 0x19e ./components/electlock/user_elect.o
  2446. 0x0000000000007e2c elect_task_init
  2447. .text.elect_task_start
  2448. 0x0000000000007fca 0x12 ./components/electlock/user_elect.o
  2449. 0x0000000000007fca elect_task_start
  2450. .text.vUser_elect_set_upload_stat_func
  2451. 0x0000000000007fdc 0x6 ./components/electlock/user_elect.o
  2452. 0x0000000000007fdc vUser_elect_set_upload_stat_func
  2453. .text.set_user_config_param_init
  2454. 0x0000000000007fe2 0x1c ./components/config/user_config.o
  2455. 0x0000000000007fe2 set_user_config_param_init
  2456. .text.check_can_baud
  2457. 0x0000000000007ffe 0x66 ./components/config/user_config.o
  2458. 0x0000000000007ffe check_can_baud
  2459. .text.FLASH_read
  2460. 0x0000000000008064 0x18 ./components/config/user_config.o
  2461. 0x0000000000008064 FLASH_read
  2462. .text.User_Config_Write_Config
  2463. 0x000000000000807c 0x50 ./components/config/user_config.o
  2464. 0x000000000000807c User_Config_Write_Config
  2465. .text.User_Config_Read_Config
  2466. 0x00000000000080cc 0x94 ./components/config/user_config.o
  2467. 0x00000000000080cc User_Config_Read_Config
  2468. .text.user_config_save_can_baud
  2469. 0x0000000000008160 0x3e ./components/config/user_config.o
  2470. 0x0000000000008160 user_config_save_can_baud
  2471. .text.user_config_init
  2472. 0x000000000000819e 0x2 ./components/config/user_config.o
  2473. 0x000000000000819e user_config_init
  2474. .text.get_dipsw08_level
  2475. 0x00000000000081a0 0x4 ./components/can/dip_sw.o
  2476. .text.set_dispsw_addr
  2477. 0x00000000000081a4 0x74 ./components/can/dip_sw.o
  2478. .text.get_dipsw07_level
  2479. 0x0000000000008218 0x1a ./components/can/dip_sw.o
  2480. .text.get_dipsw06_level
  2481. 0x0000000000008232 0x1a ./components/can/dip_sw.o
  2482. .text.get_dipsw05_level
  2483. 0x000000000000824c 0x1a ./components/can/dip_sw.o
  2484. .text.get_dipsw04_level
  2485. 0x0000000000008266 0x1a ./components/can/dip_sw.o
  2486. .text.get_dipsw03_level
  2487. 0x0000000000008280 0x1e ./components/can/dip_sw.o
  2488. .text.get_dipsw02_level
  2489. 0x000000000000829e 0x1e ./components/can/dip_sw.o
  2490. .text.get_dipsw01_level
  2491. 0x00000000000082bc 0x1e ./components/can/dip_sw.o
  2492. .text.vDipsw_init
  2493. 0x00000000000082da 0xae ./components/can/dip_sw.o
  2494. 0x00000000000082da vDipsw_init
  2495. .text.dipsw_task_process_event
  2496. 0x0000000000008388 0xac ./components/can/dip_sw.o
  2497. 0x0000000000008388 dipsw_task_process_event
  2498. .text.dipsw_task_start
  2499. 0x0000000000008434 0x12 ./components/can/dip_sw.o
  2500. 0x0000000000008434 dipsw_task_start
  2501. .text.vDipsw_set_upload_func
  2502. 0x0000000000008446 0x6 ./components/can/dip_sw.o
  2503. 0x0000000000008446 vDipsw_set_upload_func
  2504. .text.ucCAN_Send_Msg
  2505. 0x000000000000844c 0x98 ./components/can/user_can.o
  2506. 0x000000000000844c ucCAN_Send_Msg
  2507. .text.user_can_task_process_event
  2508. 0x00000000000084e4 0x78 ./components/can/user_can.o
  2509. .text.vUser_can_send_data
  2510. 0x000000000000855c 0x4e ./components/can/user_can.o
  2511. 0x000000000000855c vUser_can_send_data
  2512. .text.vUser_can_recv_data
  2513. 0x00000000000085aa 0x36 ./components/can/user_can.o
  2514. 0x00000000000085aa vUser_can_recv_data
  2515. .text.vUser_can_set_recv_data_func
  2516. 0x00000000000085e0 0x6 ./components/can/user_can.o
  2517. 0x00000000000085e0 vUser_can_set_recv_data_func
  2518. .text.vUser_can_set_addr
  2519. 0x00000000000085e6 0x6c ./components/can/user_can.o
  2520. 0x00000000000085e6 vUser_can_set_addr
  2521. .text.vUser_can_init
  2522. 0x0000000000008652 0x1b2 ./components/can/user_can.o
  2523. 0x0000000000008652 vUser_can_init
  2524. .text.ble_owned_data_send
  2525. 0x0000000000008804 0x10 ./components/action/ble_action.o
  2526. .text.ble_action_set_rst
  2527. 0x0000000000008814 0x24 ./components/action/ble_action.o
  2528. .text.set_token
  2529. 0x0000000000008838 0x20 ./components/action/ble_action.o
  2530. .text.Set_ble_data_s_sendData
  2531. 0x0000000000008858 0x7a ./components/action/ble_action.o
  2532. .text.ble_devRst_set_stat_send
  2533. 0x00000000000088d2 0x2c ./components/action/ble_action.o
  2534. .text.Check_UnixTime_Token
  2535. 0x00000000000088fe 0x3a ./components/action/ble_action.o
  2536. .text.ble_Return_Stat_Send.constprop.3
  2537. 0x0000000000008938 0x1e ./components/action/ble_action.o
  2538. .text.Jump_OTA
  2539. 0x0000000000008956 0x48 ./components/action/ble_action.o
  2540. 0x0000000000008956 Jump_OTA
  2541. .text.ble_connect_act
  2542. 0x000000000000899e 0x18 ./components/action/ble_action.o
  2543. 0x000000000000899e ble_connect_act
  2544. .text.ble_get_nfc_send
  2545. 0x00000000000089b6 0x7a ./components/action/ble_action.o
  2546. 0x00000000000089b6 ble_get_nfc_send
  2547. .text.download_ble_data_callback
  2548. 0x0000000000008a30 0x314 ./components/action/ble_action.o
  2549. 0x0000000000008a30 download_ble_data_callback
  2550. .text.vBle_action_init
  2551. 0x0000000000008d44 0x4 ./components/action/ble_action.o
  2552. 0x0000000000008d44 vBle_action_init
  2553. .text.download_ble_file_callback
  2554. 0x0000000000008d48 0x4 ./components/action/ble_action.o
  2555. 0x0000000000008d48 download_ble_file_callback
  2556. .text.set_upload_ble_data_func
  2557. 0x0000000000008d4c 0x6 ./components/action/ble_action.o
  2558. 0x0000000000008d4c set_upload_ble_data_func
  2559. .text.prvUser_can_recv_data_callback
  2560. 0x0000000000008d52 0x26 ./components/action/user_sever.o
  2561. .text.vUser_server_set_led_stat
  2562. 0x0000000000008d78 0x38 ./components/action/user_sever.o
  2563. .text.vUser_elect_upload_stat_callback
  2564. 0x0000000000008db0 0x40 ./components/action/user_sever.o
  2565. .text.prvUser_nfc_upload_card_callback
  2566. 0x0000000000008df0 0x52 ./components/action/user_sever.o
  2567. .text.prvElectsw_upload_callback
  2568. 0x0000000000008e42 0x42 ./components/action/user_sever.o
  2569. .text.user_server_task_process_event
  2570. 0x0000000000008e84 0x33a ./components/action/user_sever.o
  2571. .text.prvDipsw_upload_callback
  2572. 0x00000000000091be 0x38 ./components/action/user_sever.o
  2573. .text.vUser_server_task_start
  2574. 0x00000000000091f6 0x12 ./components/action/user_sever.o
  2575. 0x00000000000091f6 vUser_server_task_start
  2576. .text.vUser_server_get_lock_data
  2577. 0x0000000000009208 0xa ./components/action/user_sever.o
  2578. 0x0000000000009208 vUser_server_get_lock_data
  2579. .text.vUser_server_init
  2580. 0x0000000000009212 0x68 ./components/action/user_sever.o
  2581. 0x0000000000009212 vUser_server_init
  2582. .text.startup.main
  2583. 0x000000000000927a 0xec ./User/app_main.o
  2584. 0x000000000000927a main
  2585. .text.NMI_Handler
  2586. 0x0000000000009366 0x4 ./User/ch32v20x_it.o
  2587. 0x0000000000009366 NMI_Handler
  2588. .text.HardFault_Handler
  2589. 0x000000000000936a 0x2 ./User/ch32v20x_it.o
  2590. 0x000000000000936a HardFault_Handler
  2591. .text.BB_IRQHandler
  2592. 0x000000000000936c 0xc ./User/ch32v20x_it.o
  2593. 0x000000000000936c BB_IRQHandler
  2594. .text.USB_LP_CAN1_RX0_IRQHandler
  2595. 0x0000000000009378 0x38 ./User/ch32v20x_it.o
  2596. 0x0000000000009378 USB_LP_CAN1_RX0_IRQHandler
  2597. .text.DMA1_Channel5_IRQHandler
  2598. 0x00000000000093b0 0x3a ./User/ch32v20x_it.o
  2599. 0x00000000000093b0 DMA1_Channel5_IRQHandler
  2600. .text.peripheralRssiCB
  2601. 0x00000000000093ea 0x2 ./User/peripheral.o
  2602. .text.simpleProfileChangeCB
  2603. 0x00000000000093ec 0x2a ./User/peripheral.o
  2604. .text.Peripheral_ProcessEvent
  2605. 0x0000000000009416 0x14e ./User/peripheral.o
  2606. 0x0000000000009416 Peripheral_ProcessEvent
  2607. .text.peripheralParamUpdateCB
  2608. 0x0000000000009564 0x30 ./User/peripheral.o
  2609. .text.Peripheral_LinkTerminated
  2610. 0x0000000000009594 0x5e ./User/peripheral.o
  2611. .text.peripheralStateNotificationCB
  2612. 0x00000000000095f2 0x19e ./User/peripheral.o
  2613. .text.Peripheral_Init
  2614. 0x0000000000009790 0x202 ./User/peripheral.o
  2615. 0x0000000000009790 Peripheral_Init
  2616. .text.ble_data_send
  2617. 0x0000000000009992 0x6a ./User/peripheral.o
  2618. 0x0000000000009992 ble_data_send
  2619. .text.set_download_ble_data_func
  2620. 0x00000000000099fc 0x6 ./User/peripheral.o
  2621. 0x00000000000099fc set_download_ble_data_func
  2622. .text.set_download_ble_file_func
  2623. 0x0000000000009a02 0x6 ./User/peripheral.o
  2624. 0x0000000000009a02 set_download_ble_file_func
  2625. .text.set_ble_connect_evtfunc
  2626. 0x0000000000009a08 0x6 ./User/peripheral.o
  2627. 0x0000000000009a08 set_ble_connect_evtfunc
  2628. .text.SystemInit
  2629. 0x0000000000009a0e 0xea ./User/system_ch32v20x.o
  2630. 0x0000000000009a0e SystemInit
  2631. .text.SystemCoreClockUpdate
  2632. 0x0000000000009af8 0xac ./User/system_ch32v20x.o
  2633. 0x0000000000009af8 SystemCoreClockUpdate
  2634. .text.vector_handler
  2635. 0x0000000000009ba4 0x2 ./Startup/startup_ch32v20x_D8W.o
  2636. 0x0000000000009ba4 EXTI2_IRQHandler
  2637. 0x0000000000009ba4 TIM1_CC_IRQHandler
  2638. 0x0000000000009ba4 SysTick_Handler
  2639. 0x0000000000009ba4 PVD_IRQHandler
  2640. 0x0000000000009ba4 EXTI3_IRQHandler
  2641. 0x0000000000009ba4 USBFS_IRQHandler
  2642. 0x0000000000009ba4 EXTI0_IRQHandler
  2643. 0x0000000000009ba4 I2C2_EV_IRQHandler
  2644. 0x0000000000009ba4 ADC1_2_IRQHandler
  2645. 0x0000000000009ba4 Break_Point_Handler
  2646. 0x0000000000009ba4 SPI1_IRQHandler
  2647. 0x0000000000009ba4 TAMPER_IRQHandler
  2648. 0x0000000000009ba4 OSCWakeUp_IRQHandler
  2649. 0x0000000000009ba4 DMA1_Channel4_IRQHandler
  2650. 0x0000000000009ba4 USART3_IRQHandler
  2651. 0x0000000000009ba4 RTC_IRQHandler
  2652. 0x0000000000009ba4 DMA1_Channel7_IRQHandler
  2653. 0x0000000000009ba4 CAN1_RX1_IRQHandler
  2654. 0x0000000000009ba4 TIM4_IRQHandler
  2655. 0x0000000000009ba4 I2C1_EV_IRQHandler
  2656. 0x0000000000009ba4 DMA1_Channel6_IRQHandler
  2657. 0x0000000000009ba4 UART4_IRQHandler
  2658. 0x0000000000009ba4 TIM3_IRQHandler
  2659. 0x0000000000009ba4 RCC_IRQHandler
  2660. 0x0000000000009ba4 TIM1_TRG_COM_IRQHandler
  2661. 0x0000000000009ba4 DMA1_Channel1_IRQHandler
  2662. 0x0000000000009ba4 EXTI15_10_IRQHandler
  2663. 0x0000000000009ba4 DMA1_Channel8_IRQHandler
  2664. 0x0000000000009ba4 TIM5_IRQHandler
  2665. 0x0000000000009ba4 EXTI9_5_IRQHandler
  2666. 0x0000000000009ba4 SPI2_IRQHandler
  2667. 0x0000000000009ba4 OSC32KCal_IRQHandler
  2668. 0x0000000000009ba4 EXTI4_IRQHandler
  2669. 0x0000000000009ba4 USB_HP_CAN1_TX_IRQHandler
  2670. 0x0000000000009ba4 DMA1_Channel3_IRQHandler
  2671. 0x0000000000009ba4 ETH_IRQHandler
  2672. 0x0000000000009ba4 TIM1_UP_IRQHandler
  2673. 0x0000000000009ba4 WWDG_IRQHandler
  2674. 0x0000000000009ba4 TIM2_IRQHandler
  2675. 0x0000000000009ba4 SW_Handler
  2676. 0x0000000000009ba4 TIM1_BRK_IRQHandler
  2677. 0x0000000000009ba4 EXTI1_IRQHandler
  2678. 0x0000000000009ba4 USART2_IRQHandler
  2679. 0x0000000000009ba4 ETHWakeUp_IRQHandler
  2680. 0x0000000000009ba4 I2C2_ER_IRQHandler
  2681. 0x0000000000009ba4 DMA1_Channel2_IRQHandler
  2682. 0x0000000000009ba4 CAN1_SCE_IRQHandler
  2683. 0x0000000000009ba4 FLASH_IRQHandler
  2684. 0x0000000000009ba4 USBFSWakeUp_IRQHandler
  2685. 0x0000000000009ba4 USART1_IRQHandler
  2686. 0x0000000000009ba4 I2C1_ER_IRQHandler
  2687. 0x0000000000009ba4 USBWakeUp_IRQHandler
  2688. .text.handle_reset
  2689. 0x0000000000009ba6 0x8a ./Startup/startup_ch32v20x_D8W.o
  2690. 0x0000000000009ba6 handle_reset
  2691. .text.ADC_DeInit
  2692. 0x0000000000009c30 0x4c ./SRC/Peripheral/src/ch32v20x_adc.o
  2693. 0x0000000000009c30 ADC_DeInit
  2694. .text.ADC_Init
  2695. 0x0000000000009c7c 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
  2696. 0x0000000000009c7c ADC_Init
  2697. .text.ADC_Cmd 0x0000000000009cd2 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
  2698. 0x0000000000009cd2 ADC_Cmd
  2699. .text.ADC_SoftwareStartConvCmd
  2700. 0x0000000000009ce2 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2701. 0x0000000000009ce2 ADC_SoftwareStartConvCmd
  2702. .text.ADC_RegularChannelConfig
  2703. 0x0000000000009cfa 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2704. 0x0000000000009cfa ADC_RegularChannelConfig
  2705. .text.ADC_GetConversionValue
  2706. 0x0000000000009db2 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2707. 0x0000000000009db2 ADC_GetConversionValue
  2708. .text.ADC_TempSensorVrefintCmd
  2709. 0x0000000000009dba 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
  2710. 0x0000000000009dba ADC_TempSensorVrefintCmd
  2711. .text.ADC_GetFlagStatus
  2712. 0x0000000000009dda 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  2713. 0x0000000000009dda ADC_GetFlagStatus
  2714. .text.ADC_BufferCmd
  2715. 0x0000000000009de4 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  2716. 0x0000000000009de4 ADC_BufferCmd
  2717. .text.CAN_Init
  2718. 0x0000000000009dfc 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
  2719. 0x0000000000009dfc CAN_Init
  2720. .text.CAN_FilterInit
  2721. 0x0000000000009ee4 0xee ./SRC/Peripheral/src/ch32v20x_can.o
  2722. 0x0000000000009ee4 CAN_FilterInit
  2723. .text.CAN_Transmit
  2724. 0x0000000000009fd2 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
  2725. 0x0000000000009fd2 CAN_Transmit
  2726. .text.CAN_TransmitStatus
  2727. 0x000000000000a08e 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
  2728. 0x000000000000a08e CAN_TransmitStatus
  2729. .text.CAN_Receive
  2730. 0x000000000000a0f0 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
  2731. 0x000000000000a0f0 CAN_Receive
  2732. .text.CAN_ITConfig
  2733. 0x000000000000a17c 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
  2734. 0x000000000000a17c CAN_ITConfig
  2735. .text.CAN_GetITStatus
  2736. 0x000000000000a18e 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
  2737. 0x000000000000a18e CAN_GetITStatus
  2738. .text.CAN_ClearITPendingBit
  2739. 0x000000000000a25e 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
  2740. 0x000000000000a25e CAN_ClearITPendingBit
  2741. .text.DBGMCU_GetCHIPID
  2742. 0x000000000000a2f2 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2743. 0x000000000000a2f2 DBGMCU_GetCHIPID
  2744. .text.DMA_DeInit
  2745. 0x000000000000a2fc 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
  2746. 0x000000000000a2fc DMA_DeInit
  2747. .text.DMA_Init
  2748. 0x000000000000a398 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
  2749. 0x000000000000a398 DMA_Init
  2750. .text.DMA_Cmd 0x000000000000a3d0 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
  2751. 0x000000000000a3d0 DMA_Cmd
  2752. .text.DMA_ITConfig
  2753. 0x000000000000a3e4 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
  2754. 0x000000000000a3e4 DMA_ITConfig
  2755. .text.DMA_SetCurrDataCounter
  2756. 0x000000000000a3f6 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  2757. 0x000000000000a3f6 DMA_SetCurrDataCounter
  2758. .text.DMA_GetFlagStatus
  2759. 0x000000000000a3fa 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
  2760. 0x000000000000a3fa DMA_GetFlagStatus
  2761. .text.DMA_GetITStatus
  2762. 0x000000000000a408 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  2763. 0x000000000000a408 DMA_GetITStatus
  2764. .text.DMA_ClearITPendingBit
  2765. 0x000000000000a40c 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  2766. 0x000000000000a40c DMA_ClearITPendingBit
  2767. .text.EXTI_ClearITPendingBit
  2768. 0x000000000000a414 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  2769. 0x000000000000a414 EXTI_ClearITPendingBit
  2770. .text.FLASH_Unlock_Fast
  2771. 0x000000000000a41e 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  2772. 0x000000000000a41e FLASH_Unlock_Fast
  2773. .text.FLASH_Lock_Fast
  2774. 0x000000000000a43c 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  2775. 0x000000000000a43c FLASH_Lock_Fast
  2776. .text.FLASH_ErasePage_Fast
  2777. 0x000000000000a44a 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  2778. 0x000000000000a44a FLASH_ErasePage_Fast
  2779. .text.FLASH_ProgramPage_Fast
  2780. 0x000000000000a478 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
  2781. 0x000000000000a478 FLASH_ProgramPage_Fast
  2782. .text.FLASH_GetMACAddress
  2783. 0x000000000000a4dc 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
  2784. 0x000000000000a4dc FLASH_GetMACAddress
  2785. .text.GPIO_Init
  2786. 0x000000000000a502 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2787. 0x000000000000a502 GPIO_Init
  2788. .text.GPIO_ReadInputDataBit
  2789. 0x000000000000a5c2 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2790. 0x000000000000a5c2 GPIO_ReadInputDataBit
  2791. .text.GPIO_WriteBit
  2792. 0x000000000000a5cc 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  2793. 0x000000000000a5cc GPIO_WriteBit
  2794. .text.IWDG_ReloadCounter
  2795. 0x000000000000a5d6 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2796. 0x000000000000a5d6 IWDG_ReloadCounter
  2797. .text.NVIC_Init
  2798. 0x000000000000a5e4 0x56 ./SRC/Peripheral/src/ch32v20x_misc.o
  2799. 0x000000000000a5e4 NVIC_Init
  2800. .text.PWR_BackupAccessCmd
  2801. 0x000000000000a63a 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2802. 0x000000000000a63a PWR_BackupAccessCmd
  2803. .text.RCC_ADCCLKConfig
  2804. 0x000000000000a650 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2805. 0x000000000000a650 RCC_ADCCLKConfig
  2806. .text.RCC_LSEConfig
  2807. 0x000000000000a662 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2808. 0x000000000000a662 RCC_LSEConfig
  2809. .text.RCC_RTCCLKConfig
  2810. 0x000000000000a68a 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
  2811. 0x000000000000a68a RCC_RTCCLKConfig
  2812. .text.RCC_RTCCLKCmd
  2813. 0x000000000000a696 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2814. 0x000000000000a696 RCC_RTCCLKCmd
  2815. .text.RCC_GetClocksFreq
  2816. 0x000000000000a6b6 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2817. 0x000000000000a6b6 RCC_GetClocksFreq
  2818. .text.RCC_AHBPeriphClockCmd
  2819. 0x000000000000a78e 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2820. 0x000000000000a78e RCC_AHBPeriphClockCmd
  2821. .text.RCC_APB2PeriphClockCmd
  2822. 0x000000000000a7ac 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2823. 0x000000000000a7ac RCC_APB2PeriphClockCmd
  2824. .text.RCC_APB1PeriphClockCmd
  2825. 0x000000000000a7ca 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2826. 0x000000000000a7ca RCC_APB1PeriphClockCmd
  2827. .text.RCC_APB2PeriphResetCmd
  2828. 0x000000000000a7e8 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2829. 0x000000000000a7e8 RCC_APB2PeriphResetCmd
  2830. .text.RCC_GetFlagStatus
  2831. 0x000000000000a806 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
  2832. 0x000000000000a806 RCC_GetFlagStatus
  2833. .text.RTC_EnterConfigMode
  2834. 0x000000000000a834 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2835. 0x000000000000a834 RTC_EnterConfigMode
  2836. .text.RTC_ExitConfigMode
  2837. 0x000000000000a846 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2838. 0x000000000000a846 RTC_ExitConfigMode
  2839. .text.RTC_GetCounter
  2840. 0x000000000000a85e 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2841. 0x000000000000a85e RTC_GetCounter
  2842. .text.RTC_SetCounter
  2843. 0x000000000000a8b8 0x28 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2844. 0x000000000000a8b8 RTC_SetCounter
  2845. .text.RTC_SetPrescaler
  2846. 0x000000000000a8e0 0x2a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2847. 0x000000000000a8e0 RTC_SetPrescaler
  2848. .text.RTC_WaitForLastTask
  2849. 0x000000000000a90a 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2850. 0x000000000000a90a RTC_WaitForLastTask
  2851. .text.RTC_ClearFlag
  2852. 0x000000000000a91a 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2853. 0x000000000000a91a RTC_ClearFlag
  2854. .text.RTC_ClearITPendingBit
  2855. 0x000000000000a92e 0x4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2856. 0x000000000000a92e RTC_ClearITPendingBit
  2857. .text.SPI_Init
  2858. 0x000000000000a932 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
  2859. 0x000000000000a932 SPI_Init
  2860. .text.SPI_Cmd 0x000000000000a970 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  2861. 0x000000000000a970 SPI_Cmd
  2862. .text.SPI_I2S_DMACmd
  2863. 0x000000000000a98a 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  2864. 0x000000000000a98a SPI_I2S_DMACmd
  2865. .text.SPI_I2S_SendData
  2866. 0x000000000000a99c 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  2867. 0x000000000000a99c SPI_I2S_SendData
  2868. .text.SPI_I2S_ReceiveData
  2869. 0x000000000000a9a0 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  2870. 0x000000000000a9a0 SPI_I2S_ReceiveData
  2871. .text.SPI_CalculateCRC
  2872. 0x000000000000a9a4 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
  2873. 0x000000000000a9a4 SPI_CalculateCRC
  2874. .text.SPI_I2S_GetFlagStatus
  2875. 0x000000000000a9ba 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  2876. 0x000000000000a9ba SPI_I2S_GetFlagStatus
  2877. .text.USART_Init
  2878. 0x000000000000a9c4 0x92 ./SRC/Peripheral/src/ch32v20x_usart.o
  2879. 0x000000000000a9c4 USART_Init
  2880. .text.USART_Cmd
  2881. 0x000000000000aa56 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  2882. 0x000000000000aa56 USART_Cmd
  2883. .text.USART_SendData
  2884. 0x000000000000aa6c 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  2885. 0x000000000000aa6c USART_SendData
  2886. .text.USART_GetFlagStatus
  2887. 0x000000000000aa74 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  2888. 0x000000000000aa74 USART_GetFlagStatus
  2889. .text.Delay_Init
  2890. 0x000000000000aa7e 0x28 ./SRC/Debug/debug.o
  2891. 0x000000000000aa7e Delay_Init
  2892. .text.Delay_Us
  2893. 0x000000000000aaa6 0x36 ./SRC/Debug/debug.o
  2894. 0x000000000000aaa6 Delay_Us
  2895. .text.Delay_Ms
  2896. 0x000000000000aadc 0x36 ./SRC/Debug/debug.o
  2897. 0x000000000000aadc Delay_Ms
  2898. .text.USART_Printf_Init
  2899. 0x000000000000ab12 0x64 ./SRC/Debug/debug.o
  2900. 0x000000000000ab12 USART_Printf_Init
  2901. .text._write 0x000000000000ab76 0x50 ./SRC/Debug/debug.o
  2902. 0x000000000000ab76 _write
  2903. .text._sbrk 0x000000000000abc6 0x2c ./SRC/Debug/debug.o
  2904. 0x000000000000abc6 _sbrk
  2905. .text.devInfo_ReadAttrCB
  2906. 0x000000000000abf2 0x1b0 ./Profile/devinfoservice.o
  2907. .text.DevInfo_AddService
  2908. 0x000000000000ada2 0x16 ./Profile/devinfoservice.o
  2909. 0x000000000000ada2 DevInfo_AddService
  2910. .text.simpleProfile_ReadAttrCB
  2911. 0x000000000000adb8 0x7c ./Profile/gattprofile.o
  2912. .text.simpleProfile_WriteAttrCB
  2913. 0x000000000000ae34 0x110 ./Profile/gattprofile.o
  2914. .text.simpleProfile_HandleConnStatusCB
  2915. 0x000000000000af44 0x4e ./Profile/gattprofile.o
  2916. .text.SimpleProfile_AddService
  2917. 0x000000000000af92 0x58 ./Profile/gattprofile.o
  2918. 0x000000000000af92 SimpleProfile_AddService
  2919. .text.SimpleProfile_RegisterAppCBs
  2920. 0x000000000000afea 0xe ./Profile/gattprofile.o
  2921. 0x000000000000afea SimpleProfile_RegisterAppCBs
  2922. .text.SimpleProfile_SetParameter
  2923. 0x000000000000aff8 0xa0 ./Profile/gattprofile.o
  2924. 0x000000000000aff8 SimpleProfile_SetParameter
  2925. .text.simpleProfileChar4_Notify
  2926. 0x000000000000b098 0x52 ./Profile/gattprofile.o
  2927. 0x000000000000b098 simpleProfileChar4_Notify
  2928. .text.Lib_Read_Flash
  2929. 0x000000000000b0ea 0x1e ./HAL/MCU.o
  2930. 0x000000000000b0ea Lib_Read_Flash
  2931. .text.Lib_Write_Flash
  2932. 0x000000000000b108 0x32 ./HAL/MCU.o
  2933. 0x000000000000b108 Lib_Write_Flash
  2934. .text.HAL_GetInterTempValue
  2935. 0x000000000000b13a 0x16c ./HAL/MCU.o
  2936. 0x000000000000b13a HAL_GetInterTempValue
  2937. .text.HAL_ProcessEvent
  2938. 0x000000000000b2a6 0x8e ./HAL/MCU.o
  2939. 0x000000000000b2a6 HAL_ProcessEvent
  2940. .text.WCHBLE_Init
  2941. 0x000000000000b334 0x134 ./HAL/MCU.o
  2942. 0x000000000000b334 WCHBLE_Init
  2943. .text.HAL_Init
  2944. 0x000000000000b468 0x3c ./HAL/MCU.o
  2945. 0x000000000000b468 HAL_Init
  2946. .text.HAL_TimeInit
  2947. 0x000000000000b4a4 0xb2 ./HAL/RTC.o
  2948. 0x000000000000b4a4 HAL_TimeInit
  2949. .text.RTCAlarm_IRQHandler
  2950. 0x000000000000b556 0x1c ./HAL/RTC.o
  2951. 0x000000000000b556 RTCAlarm_IRQHandler
  2952. .text.__umoddi3
  2953. 0x000000000000b572 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)
  2954. 0x000000000000b572 __umoddi3
  2955. .text.__adddf3
  2956. 0x000000000000b8fc 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)
  2957. 0x000000000000b8fc __adddf3
  2958. .text.__divdf3
  2959. 0x000000000000c02c 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)
  2960. 0x000000000000c02c __divdf3
  2961. .text.__eqdf2 0x000000000000c5e0 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)
  2962. 0x000000000000c5e0 __nedf2
  2963. 0x000000000000c5e0 __eqdf2
  2964. .text.__gedf2 0x000000000000c64a 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)
  2965. 0x000000000000c64a __gedf2
  2966. 0x000000000000c64a __gtdf2
  2967. .text.__muldf3
  2968. 0x000000000000c6f8 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)
  2969. 0x000000000000c6f8 __muldf3
  2970. .text.__subdf3
  2971. 0x000000000000cbb0 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)
  2972. 0x000000000000cbb0 __subdf3
  2973. .text.__unorddf2
  2974. 0x000000000000d2ec 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)
  2975. 0x000000000000d2ec __unorddf2
  2976. .text.__floatsidf
  2977. 0x000000000000d328 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)
  2978. 0x000000000000d328 __floatsidf
  2979. .text.__truncdfsf2
  2980. 0x000000000000d398 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)
  2981. 0x000000000000d398 __truncdfsf2
  2982. .text.__clzsi2
  2983. 0x000000000000d502 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)
  2984. 0x000000000000d502 __clzsi2
  2985. .text.malloc 0x000000000000d570 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)
  2986. 0x000000000000d570 malloc
  2987. .text.memcpy 0x000000000000d57a 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)
  2988. 0x000000000000d57a memcpy
  2989. .text._free_r 0x000000000000d62c 0xa8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  2990. 0x000000000000d62c _free_r
  2991. .text._malloc_r
  2992. 0x000000000000d6d4 0xda d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  2993. 0x000000000000d6d4 _malloc_r
  2994. .text.__cvt 0x000000000000d7ae 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)
  2995. 0x000000000000d7ae __cvt
  2996. .text.__exponent
  2997. 0x000000000000d898 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)
  2998. 0x000000000000d898 __exponent
  2999. .text._printf_float
  3000. 0x000000000000d91c 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)
  3001. 0x000000000000d91c _printf_float
  3002. .text._printf_common
  3003. 0x000000000000dde0 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)
  3004. 0x000000000000dde0 _printf_common
  3005. .text._printf_i
  3006. 0x000000000000deec 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)
  3007. 0x000000000000deec _printf_i
  3008. .text._scanf_float
  3009. 0x000000000000e190 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)
  3010. 0x000000000000e190 _scanf_float
  3011. .text.printf 0x000000000000e5fc 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)
  3012. 0x000000000000e5fc iprintf
  3013. 0x000000000000e5fc printf
  3014. .text._puts_r 0x000000000000e63e 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)
  3015. 0x000000000000e63e _puts_r
  3016. .text.puts 0x000000000000e71c 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)
  3017. 0x000000000000e71c puts
  3018. .text._sbrk_r 0x000000000000e728 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)
  3019. 0x000000000000e728 _sbrk_r
  3020. .text.nanf 0x000000000000e75a 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)
  3021. 0x000000000000e75a nanf
  3022. .text.sprintf 0x000000000000e766 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)
  3023. 0x000000000000e766 siprintf
  3024. 0x000000000000e766 sprintf
  3025. .text.sscanf 0x000000000000e7ac 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)
  3026. 0x000000000000e7ac siscanf
  3027. 0x000000000000e7ac sscanf
  3028. .text.__sread 0x000000000000e7fe 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)
  3029. 0x000000000000e7fe __sread
  3030. .text.__seofread
  3031. 0x000000000000e82c 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)
  3032. 0x000000000000e82c __seofread
  3033. .text.__swrite
  3034. 0x000000000000e830 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)
  3035. 0x000000000000e830 __swrite
  3036. .text.__sseek 0x000000000000e87c 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)
  3037. 0x000000000000e87c __sseek
  3038. .text.__sclose
  3039. 0x000000000000e8ae 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)
  3040. 0x000000000000e8ae __sclose
  3041. .text.strlen 0x000000000000e8b6 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)
  3042. 0x000000000000e8b6 strlen
  3043. .text.sulp 0x000000000000e8c8 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)
  3044. .text._strtod_l
  3045. 0x000000000000e916 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)
  3046. 0x000000000000e916 _strtod_l
  3047. .text._strtod_r
  3048. 0x000000000000f582 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)
  3049. 0x000000000000f582 _strtod_r
  3050. .text._strtol_l.isra.0
  3051. 0x000000000000f594 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)
  3052. .text._strtol_r
  3053. 0x000000000000f6ce 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)
  3054. 0x000000000000f6ce _strtol_r
  3055. .text.__swbuf_r
  3056. 0x000000000000f6e0 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)
  3057. 0x000000000000f6e0 __swbuf_r
  3058. .text._write_r
  3059. 0x000000000000f7a2 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)
  3060. 0x000000000000f7a2 _write_r
  3061. .text.__swsetup_r
  3062. 0x000000000000f7d8 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)
  3063. 0x000000000000f7d8 __swsetup_r
  3064. .text._close_r
  3065. 0x000000000000f8da 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)
  3066. 0x000000000000f8da _close_r
  3067. .text.quorem 0x000000000000f90c 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)
  3068. .text._dtoa_r 0x000000000000fa46 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)
  3069. 0x000000000000fa46 _dtoa_r
  3070. .text.__sflush_r
  3071. 0x000000000001065c 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)
  3072. 0x000000000001065c __sflush_r
  3073. .text._fflush_r
  3074. 0x000000000001078e 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)
  3075. 0x000000000001078e _fflush_r
  3076. .text.std 0x00000000000107f4 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)
  3077. .text._cleanup_r
  3078. 0x000000000001085a 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)
  3079. 0x000000000001085a _cleanup_r
  3080. .text.__sfmoreglue
  3081. 0x0000000000010864 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)
  3082. 0x0000000000010864 __sfmoreglue
  3083. .text.__sinit 0x00000000000108ac 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)
  3084. 0x00000000000108ac __sinit
  3085. .text.__sfp 0x000000000001091c 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)
  3086. 0x000000000001091c __sfp
  3087. .text._fwalk_reent
  3088. 0x00000000000109c0 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)
  3089. 0x00000000000109c0 _fwalk_reent
  3090. .text.rshift 0x0000000000010a2a 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)
  3091. .text.__hexdig_fun
  3092. 0x0000000000010aa0 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)
  3093. 0x0000000000010aa0 __hexdig_fun
  3094. .text.__gethex
  3095. 0x0000000000010ae0 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)
  3096. 0x0000000000010ae0 __gethex
  3097. .text.L_shift 0x0000000000010fac 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)
  3098. .text.__match 0x0000000000010fd8 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)
  3099. 0x0000000000010fd8 __match
  3100. .text.__hexnan
  3101. 0x0000000000011006 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)
  3102. 0x0000000000011006 __hexnan
  3103. .text.__locale_ctype_ptr_l
  3104. 0x0000000000011164 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)
  3105. 0x0000000000011164 __locale_ctype_ptr_l
  3106. .text.__locale_ctype_ptr
  3107. 0x000000000001116a 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)
  3108. 0x000000000001116a __locale_ctype_ptr
  3109. .text.__localeconv_l
  3110. 0x000000000001117e 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)
  3111. 0x000000000001117e __localeconv_l
  3112. .text._localeconv_r
  3113. 0x0000000000011184 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)
  3114. 0x0000000000011184 _localeconv_r
  3115. .text._lseek_r
  3116. 0x0000000000011198 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)
  3117. 0x0000000000011198 _lseek_r
  3118. .text.__swhatbuf_r
  3119. 0x00000000000111ce 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)
  3120. 0x00000000000111ce __swhatbuf_r
  3121. .text.__smakebuf_r
  3122. 0x0000000000011226 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)
  3123. 0x0000000000011226 __smakebuf_r
  3124. .text.__ascii_mbtowc
  3125. 0x00000000000112ba 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)
  3126. 0x00000000000112ba __ascii_mbtowc
  3127. .text.memchr 0x00000000000112ec 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)
  3128. 0x00000000000112ec memchr
  3129. .text.__malloc_lock
  3130. 0x0000000000011304 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)
  3131. 0x0000000000011304 __malloc_lock
  3132. .text.__malloc_unlock
  3133. 0x0000000000011306 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)
  3134. 0x0000000000011306 __malloc_unlock
  3135. .text._Balloc 0x0000000000011308 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)
  3136. 0x0000000000011308 _Balloc
  3137. .text._Bfree 0x0000000000011394 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)
  3138. 0x0000000000011394 _Bfree
  3139. .text.__multadd
  3140. 0x00000000000113d8 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)
  3141. 0x00000000000113d8 __multadd
  3142. .text.__s2b 0x0000000000011470 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)
  3143. 0x0000000000011470 __s2b
  3144. .text.__hi0bits
  3145. 0x0000000000011514 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)
  3146. 0x0000000000011514 __hi0bits
  3147. .text.__lo0bits
  3148. 0x000000000001155a 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)
  3149. 0x000000000001155a __lo0bits
  3150. .text.__i2b 0x00000000000115c4 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)
  3151. 0x00000000000115c4 __i2b
  3152. .text.__multiply
  3153. 0x00000000000115e0 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)
  3154. 0x00000000000115e0 __multiply
  3155. .text.__pow5mult
  3156. 0x0000000000011724 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)
  3157. 0x0000000000011724 __pow5mult
  3158. .text.__lshift
  3159. 0x00000000000117e2 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)
  3160. 0x00000000000117e2 __lshift
  3161. .text.__mcmp 0x00000000000118b0 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)
  3162. 0x00000000000118b0 __mcmp
  3163. .text.__mdiff 0x00000000000118e2 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)
  3164. 0x00000000000118e2 __mdiff
  3165. .text.__ulp 0x00000000000119d4 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)
  3166. 0x00000000000119d4 __ulp
  3167. .text.__b2d 0x0000000000011a1a 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)
  3168. 0x0000000000011a1a __b2d
  3169. .text.__d2b 0x0000000000011ace 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)
  3170. 0x0000000000011ace __d2b
  3171. .text.__ratio 0x0000000000011ba2 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)
  3172. 0x0000000000011ba2 __ratio
  3173. .text.__copybits
  3174. 0x0000000000011c16 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)
  3175. 0x0000000000011c16 __copybits
  3176. .text.__any_on
  3177. 0x0000000000011c4c 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)
  3178. 0x0000000000011c4c __any_on
  3179. .text._calloc_r
  3180. 0x0000000000011c92 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)
  3181. 0x0000000000011c92 _calloc_r
  3182. .text._realloc_r
  3183. 0x0000000000011cba 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)
  3184. 0x0000000000011cba _realloc_r
  3185. .text.__ssputs_r
  3186. 0x0000000000011d14 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)
  3187. 0x0000000000011d14 __ssputs_r
  3188. .text._svfprintf_r
  3189. 0x0000000000011df8 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)
  3190. 0x0000000000011df8 _svfiprintf_r
  3191. 0x0000000000011df8 _svfprintf_r
  3192. .text._sungetc_r
  3193. 0x0000000000012060 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)
  3194. 0x0000000000012060 _sungetc_r
  3195. .text.__ssrefill_r
  3196. 0x00000000000120f6 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)
  3197. 0x00000000000120f6 __ssrefill_r
  3198. .text.__ssvfscanf_r
  3199. 0x000000000001213a 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)
  3200. 0x000000000001213a __ssvfiscanf_r
  3201. 0x000000000001213a __ssvfscanf_r
  3202. .text.__sfputc_r
  3203. 0x00000000000124d8 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)
  3204. .text.__sfputs_r
  3205. 0x0000000000012500 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)
  3206. 0x0000000000012500 __sfputs_r
  3207. .text._vfprintf_r
  3208. 0x0000000000012542 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)
  3209. 0x0000000000012542 _vfprintf_r
  3210. 0x0000000000012542 _vfiprintf_r
  3211. .text._scanf_chars
  3212. 0x00000000000127ce 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)
  3213. 0x00000000000127ce _scanf_chars
  3214. .text._scanf_i
  3215. 0x00000000000128b0 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)
  3216. 0x00000000000128b0 _scanf_i
  3217. .text._read_r 0x0000000000012b08 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)
  3218. 0x0000000000012b08 _read_r
  3219. .text.__sccl 0x0000000000012b3e 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)
  3220. 0x0000000000012b3e __sccl
  3221. .text.strncmp 0x0000000000012bc0 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)
  3222. 0x0000000000012bc0 strncmp
  3223. .text._strtoul_l.isra.0
  3224. 0x0000000000012be8 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)
  3225. .text._strtoul_r
  3226. 0x0000000000012d18 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)
  3227. 0x0000000000012d18 _strtoul_r
  3228. .text.__submore
  3229. 0x0000000000012d2a 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)
  3230. 0x0000000000012d2a __submore
  3231. .text.__ascii_wctomb
  3232. 0x0000000000012db0 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)
  3233. 0x0000000000012db0 __ascii_wctomb
  3234. .text._fstat_r
  3235. 0x0000000000012dce 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)
  3236. 0x0000000000012dce _fstat_r
  3237. .text._isatty_r
  3238. 0x0000000000012e00 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)
  3239. 0x0000000000012e00 _isatty_r
  3240. .text.memmove 0x0000000000012e30 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)
  3241. 0x0000000000012e30 memmove
  3242. .text._malloc_usable_size_r
  3243. 0x0000000000012e76 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)
  3244. 0x0000000000012e76 _malloc_usable_size_r
  3245. .text.__ledf2 0x0000000000012e8a 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)
  3246. 0x0000000000012e8a __ledf2
  3247. 0x0000000000012e8a __ltdf2
  3248. .text.__fixdfsi
  3249. 0x0000000000012f40 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)
  3250. 0x0000000000012f40 __fixdfsi
  3251. .text.__fixunsdfsi
  3252. 0x0000000000012fa8 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)
  3253. 0x0000000000012fa8 __fixunsdfsi
  3254. .text.__floatunsidf
  3255. 0x0000000000013004 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)
  3256. 0x0000000000013004 __floatunsidf
  3257. .text.__extenddftf2
  3258. 0x000000000001306c 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)
  3259. 0x000000000001306c __extenddftf2
  3260. .text.__trunctfdf2
  3261. 0x000000000001320c 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)
  3262. 0x000000000001320c __trunctfdf2
  3263. .text._close 0x000000000001342a 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)
  3264. 0x000000000001342a _close
  3265. .text._fstat 0x000000000001343a 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)
  3266. 0x000000000001343a _fstat
  3267. .text._isatty 0x000000000001344a 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)
  3268. 0x000000000001344a _isatty
  3269. .text._lseek 0x000000000001345a 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)
  3270. 0x000000000001345a _lseek
  3271. .text._read 0x000000000001346a 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)
  3272. 0x000000000001346a _read
  3273. *(.rodata)
  3274. *fill* 0x000000000001347a 0x2
  3275. .rodata 0x000000000001347c 0x100 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3276. *(.rodata*)
  3277. .rodata.vUser_ws2812b_init.str1.4
  3278. 0x000000000001357c 0x19 ./components/ws2812b/user_ws2812b.o
  3279. *fill* 0x0000000000013595 0x3
  3280. .rodata.InvSBox
  3281. 0x0000000000013598 0x100 ./components/tools/AES_PKCS7.o
  3282. .rodata.SBox 0x0000000000013698 0x100 ./components/tools/AES_PKCS7.o
  3283. .rodata.TypeA_Set_BitFraming
  3284. 0x0000000000013798 0x34 ./components/nfc/type_a.o
  3285. .rodata.set_nfc_cs
  3286. 0x00000000000137cc 0x14 ./components/nfc/user_nfc.o
  3287. .rodata.prvUser_nfc_upload_card_stat.str1.4
  3288. 0x00000000000137e0 0x37 ./components/nfc/user_nfc.o
  3289. *fill* 0x0000000000013817 0x1
  3290. .rodata.user_nfc_task_process_event.str1.4
  3291. 0x0000000000013818 0x47 ./components/nfc/user_nfc.o
  3292. *fill* 0x000000000001385f 0x1
  3293. .rodata.vUser_nfc_init.str1.4
  3294. 0x0000000000013860 0x15 ./components/nfc/user_nfc.o
  3295. *fill* 0x0000000000013875 0x3
  3296. .rodata.vUser_led_set_view_stat
  3297. 0x0000000000013878 0x18 ./components/led/user_led.o
  3298. .rodata.led_task_init.str1.4
  3299. 0x0000000000013890 0x10 ./components/led/user_led.o
  3300. .rodata.vUser_led_set_view_stat.str1.4
  3301. 0x00000000000138a0 0x17 ./components/led/user_led.o
  3302. *fill* 0x00000000000138b7 0x1
  3303. .rodata.electsw_task_process_event.str1.4
  3304. 0x00000000000138b8 0x37 ./components/electlock/elect_sw.o
  3305. *fill* 0x00000000000138ef 0x1
  3306. .rodata.elect_task_init.str1.4
  3307. 0x00000000000138f0 0x12 ./components/electlock/user_elect.o
  3308. *fill* 0x0000000000013902 0x2
  3309. .rodata.elect_task_process_event.str1.4
  3310. 0x0000000000013904 0x19 ./components/electlock/user_elect.o
  3311. *fill* 0x000000000001391d 0x3
  3312. .rodata.set_elect_work_stat.str1.4
  3313. 0x0000000000013920 0x12 ./components/electlock/user_elect.o
  3314. 0x22 (size before relaxing)
  3315. *fill* 0x0000000000013932 0x2
  3316. .rodata.User_Config_Read_Config.str1.4
  3317. 0x0000000000013934 0x31 ./components/config/user_config.o
  3318. *fill* 0x0000000000013965 0x3
  3319. .rodata.set_dispsw_addr
  3320. 0x0000000000013968 0x20 ./components/can/dip_sw.o
  3321. .rodata.vUser_can_init.str1.4
  3322. 0x0000000000013988 0x15 ./components/can/user_can.o
  3323. *fill* 0x000000000001399d 0x3
  3324. .rodata.vUser_can_set_addr.str1.4
  3325. 0x00000000000139a0 0xc ./components/can/user_can.o
  3326. .rodata.download_ble_data_callback.str1.4
  3327. 0x00000000000139ac 0x69 ./components/action/ble_action.o
  3328. *fill* 0x0000000000013a15 0x3
  3329. .rodata.user_server_task_process_event.str1.4
  3330. 0x0000000000013a18 0x1d ./components/action/user_sever.o
  3331. *fill* 0x0000000000013a35 0x3
  3332. .rodata.vUser_server_init.str1.4
  3333. 0x0000000000013a38 0x18 ./components/action/user_sever.o
  3334. .rodata.main.str1.4
  3335. 0x0000000000013a50 0x22 ./User/app_main.o
  3336. *fill* 0x0000000000013a72 0x2
  3337. .rodata.peripheralStateNotificationCB
  3338. 0x0000000000013a74 0x18 ./User/peripheral.o
  3339. .rodata.Peripheral_ProcessEvent.str1.4
  3340. 0x0000000000013a8c 0x42 ./User/peripheral.o
  3341. *fill* 0x0000000000013ace 0x2
  3342. .rodata.ble_data_send.str1.4
  3343. 0x0000000000013ad0 0xf ./User/peripheral.o
  3344. *fill* 0x0000000000013adf 0x1
  3345. .rodata.peripheralParamUpdateCB.str1.4
  3346. 0x0000000000013ae0 0x1e ./User/peripheral.o
  3347. *fill* 0x0000000000013afe 0x2
  3348. .rodata.peripheralStateNotificationCB.str1.4
  3349. 0x0000000000013b00 0xb7 ./User/peripheral.o
  3350. *fill* 0x0000000000013bb7 0x1
  3351. .rodata.devInfo11073Cert
  3352. 0x0000000000013bb8 0xe ./Profile/devinfoservice.o
  3353. *fill* 0x0000000000013bc6 0x2
  3354. .rodata.devInfoFirmwareRev
  3355. 0x0000000000013bc8 0x12 ./Profile/devinfoservice.o
  3356. *fill* 0x0000000000013bda 0x2
  3357. .rodata.devInfoHardwareRev
  3358. 0x0000000000013bdc 0x12 ./Profile/devinfoservice.o
  3359. *fill* 0x0000000000013bee 0x2
  3360. .rodata.devInfoMfrName
  3361. 0x0000000000013bf0 0x12 ./Profile/devinfoservice.o
  3362. *fill* 0x0000000000013c02 0x2
  3363. .rodata.devInfoModelNumber
  3364. 0x0000000000013c04 0xd ./Profile/devinfoservice.o
  3365. *fill* 0x0000000000013c11 0x3
  3366. .rodata.devInfoSerialNumber
  3367. 0x0000000000013c14 0xe ./Profile/devinfoservice.o
  3368. *fill* 0x0000000000013c22 0x2
  3369. .rodata.devInfoSoftwareRev
  3370. 0x0000000000013c24 0x12 ./Profile/devinfoservice.o
  3371. *fill* 0x0000000000013c36 0x2
  3372. .rodata.HAL_ProcessEvent.str1.4
  3373. 0x0000000000013c38 0x3 ./HAL/MCU.o
  3374. *fill* 0x0000000000013c3b 0x1
  3375. .rodata.WCHBLE_Init.str1.4
  3376. 0x0000000000013c3c 0x49 ./HAL/MCU.o
  3377. *fill* 0x0000000000013c85 0x3
  3378. .rodata.HAL_TimeInit.str1.4
  3379. 0x0000000000013c88 0x27 ./HAL/RTC.o
  3380. *fill* 0x0000000000013caf 0x1
  3381. .rodata.str1.4
  3382. 0x0000000000013cb0 0x1a d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3383. *fill* 0x0000000000013cca 0x2
  3384. .rodata.str1.4
  3385. 0x0000000000013ccc 0x41 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3386. *fill* 0x0000000000013d0d 0x3
  3387. .rodata.__divdf3
  3388. 0x0000000000013d10 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)
  3389. .rodata.__muldf3
  3390. 0x0000000000013d50 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)
  3391. .rodata.__clz_tab
  3392. 0x0000000000013d90 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)
  3393. 0x0000000000013d90 __clz_tab
  3394. *fill* 0x0000000000013e90 0x0
  3395. .rodata._printf_float.cst8
  3396. 0x0000000000013e90 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)
  3397. .rodata._printf_float.str1.4
  3398. 0x0000000000013e98 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)
  3399. *fill* 0x0000000000013eaa 0x2
  3400. .rodata._printf_i.str1.4
  3401. 0x0000000000013eac 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)
  3402. *fill* 0x0000000000013ed1 0x3
  3403. .rodata._scanf_float.str1.4
  3404. 0x0000000000013ed4 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)
  3405. *fill* 0x0000000000013ed9 0x3
  3406. .rodata.nanf.cst4
  3407. 0x0000000000013edc 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)
  3408. .rodata._strtod_l
  3409. 0x0000000000013ee0 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)
  3410. *fill* 0x0000000000013ef4 0x4
  3411. .rodata._strtod_l.cst8
  3412. 0x0000000000013ef8 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)
  3413. .rodata._strtod_l.str1.4
  3414. 0x0000000000013f30 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)
  3415. *fill* 0x0000000000013f3f 0x1
  3416. .rodata.fpi.3395
  3417. 0x0000000000013f40 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)
  3418. .rodata.fpinan.3431
  3419. 0x0000000000013f54 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)
  3420. .rodata.tinytens
  3421. 0x0000000000013f68 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)
  3422. .rodata._dtoa_r.cst8
  3423. 0x0000000000013f90 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)
  3424. 0x48 (size before relaxing)
  3425. .rodata._dtoa_r.str1.4
  3426. 0x0000000000013fc8 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)
  3427. 0x12 (size before relaxing)
  3428. .rodata.__sf_fake_stderr
  3429. 0x0000000000013fd8 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)
  3430. 0x0000000000013fd8 __sf_fake_stderr
  3431. .rodata.__sf_fake_stdin
  3432. 0x0000000000013ff8 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)
  3433. 0x0000000000013ff8 __sf_fake_stdin
  3434. .rodata.__sf_fake_stdout
  3435. 0x0000000000014018 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)
  3436. 0x0000000000014018 __sf_fake_stdout
  3437. .rodata._setlocale_r.str1.4
  3438. 0x0000000000014038 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)
  3439. 0xd (size before relaxing)
  3440. .rodata.str1.4
  3441. 0x0000000000014042 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)
  3442. 0x2 (size before relaxing)
  3443. *fill* 0x0000000000014042 0x6
  3444. .rodata.__mprec_bigtens
  3445. 0x0000000000014048 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)
  3446. 0x0000000000014048 __mprec_bigtens
  3447. .rodata.__mprec_tens
  3448. 0x0000000000014070 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)
  3449. 0x0000000000014070 __mprec_tens
  3450. .rodata.p05.3319
  3451. 0x0000000000014138 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)
  3452. .rodata._svfprintf_r.str1.4
  3453. 0x0000000000014144 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)
  3454. .rodata.__ssvfscanf_r.str1.4
  3455. 0x0000000000014157 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)
  3456. .rodata._vfprintf_r.str1.4
  3457. 0x0000000000014157 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)
  3458. *fill* 0x0000000000014157 0x1
  3459. .rodata._scanf_i.str1.4
  3460. 0x0000000000014158 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)
  3461. *fill* 0x000000000001416a 0x2
  3462. .rodata.str1.4
  3463. 0x000000000001416c 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)
  3464. 0xb (size before relaxing)
  3465. .rodata._ctype_
  3466. 0x0000000000014178 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)
  3467. 0x0000000000014178 _ctype_
  3468. *(.sdata2.*)
  3469. *fill* 0x0000000000014279 0x3
  3470. .sdata2.Address
  3471. 0x000000000001427c 0x4 ./User/app_main.o
  3472. 0x000000000001427c Address
  3473. .sdata2.devInfo11073CertUUID
  3474. 0x0000000000014280 0x2 ./Profile/devinfoservice.o
  3475. 0x0000000000014280 devInfo11073CertUUID
  3476. *fill* 0x0000000000014282 0x2
  3477. .sdata2.devInfoFirmwareRevUUID
  3478. 0x0000000000014284 0x2 ./Profile/devinfoservice.o
  3479. 0x0000000000014284 devInfoFirmwareRevUUID
  3480. *fill* 0x0000000000014286 0x2
  3481. .sdata2.devInfoHardwareRevUUID
  3482. 0x0000000000014288 0x2 ./Profile/devinfoservice.o
  3483. 0x0000000000014288 devInfoHardwareRevUUID
  3484. *fill* 0x000000000001428a 0x2
  3485. .sdata2.devInfoMfrNameUUID
  3486. 0x000000000001428c 0x2 ./Profile/devinfoservice.o
  3487. 0x000000000001428c devInfoMfrNameUUID
  3488. *fill* 0x000000000001428e 0x2
  3489. .sdata2.devInfoModelNumberUUID
  3490. 0x0000000000014290 0x2 ./Profile/devinfoservice.o
  3491. 0x0000000000014290 devInfoModelNumberUUID
  3492. *fill* 0x0000000000014292 0x2
  3493. .sdata2.devInfoPnpIdUUID
  3494. 0x0000000000014294 0x2 ./Profile/devinfoservice.o
  3495. 0x0000000000014294 devInfoPnpIdUUID
  3496. *fill* 0x0000000000014296 0x2
  3497. .sdata2.devInfoSerialNumberUUID
  3498. 0x0000000000014298 0x2 ./Profile/devinfoservice.o
  3499. 0x0000000000014298 devInfoSerialNumberUUID
  3500. *fill* 0x000000000001429a 0x2
  3501. .sdata2.devInfoServUUID
  3502. 0x000000000001429c 0x2 ./Profile/devinfoservice.o
  3503. 0x000000000001429c devInfoServUUID
  3504. *fill* 0x000000000001429e 0x2
  3505. .sdata2.devInfoService
  3506. 0x00000000000142a0 0x8 ./Profile/devinfoservice.o
  3507. .sdata2.devInfoSoftwareRevUUID
  3508. 0x00000000000142a8 0x2 ./Profile/devinfoservice.o
  3509. 0x00000000000142a8 devInfoSoftwareRevUUID
  3510. *fill* 0x00000000000142aa 0x2
  3511. .sdata2.devInfoSystemIdUUID
  3512. 0x00000000000142ac 0x2 ./Profile/devinfoservice.o
  3513. 0x00000000000142ac devInfoSystemIdUUID
  3514. *fill* 0x00000000000142ae 0x2
  3515. .sdata2.simpleProfileServUUID
  3516. 0x00000000000142b0 0x2 ./Profile/gattprofile.o
  3517. 0x00000000000142b0 simpleProfileServUUID
  3518. *fill* 0x00000000000142b2 0x2
  3519. .sdata2.simpleProfileService
  3520. 0x00000000000142b4 0x8 ./Profile/gattprofile.o
  3521. .sdata2.simpleProfilechar1UUID
  3522. 0x00000000000142bc 0x2 ./Profile/gattprofile.o
  3523. 0x00000000000142bc simpleProfilechar1UUID
  3524. *fill* 0x00000000000142be 0x2
  3525. .sdata2.simpleProfilechar2UUID
  3526. 0x00000000000142c0 0x2 ./Profile/gattprofile.o
  3527. 0x00000000000142c0 simpleProfilechar2UUID
  3528. *fill* 0x00000000000142c2 0x2
  3529. .sdata2.simpleProfilechar3UUID
  3530. 0x00000000000142c4 0x2 ./Profile/gattprofile.o
  3531. 0x00000000000142c4 simpleProfilechar3UUID
  3532. *fill* 0x00000000000142c6 0x2
  3533. .sdata2.simpleProfilechar4UUID
  3534. 0x00000000000142c8 0x2 ./Profile/gattprofile.o
  3535. 0x00000000000142c8 simpleProfilechar4UUID
  3536. *fill* 0x00000000000142ca 0x2
  3537. .sdata2._global_impure_ptr
  3538. 0x00000000000142cc 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)
  3539. 0x00000000000142cc _global_impure_ptr
  3540. *(.gnu.linkonce.t.*)
  3541. 0x00000000000142d0 . = ALIGN (0x4)
  3542. .rela.dyn 0x00000000000142d0 0x0
  3543. .rela.init 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3544. .rela.vector 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3545. .rela.text.handle_reset
  3546. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3547. .rela.text._sbrk
  3548. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3549. .rela.sdata.curbrk.4953
  3550. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3551. .rela.got 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3552. .rela.text._sbrk_r
  3553. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3554. .rela.text._write_r
  3555. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3556. .rela.text._close_r
  3557. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3558. .rela.text._lseek_r
  3559. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3560. .rela.text._svfprintf_r
  3561. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3562. .rela.text.__ssvfscanf_r
  3563. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3564. .rela.text._vfprintf_r
  3565. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3566. .rela.text._read_r
  3567. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3568. .rela.text._fstat_r
  3569. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3570. .rela.text._isatty_r
  3571. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3572. .rela.text._close
  3573. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3574. .rela.text._fstat
  3575. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3576. .rela.text._isatty
  3577. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3578. .rela.text._lseek
  3579. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3580. .rela.text._read
  3581. 0x00000000000142d0 0x0 ./components/ws2812b/user_ws2812b.o
  3582. .fini 0x00000000000142d0 0x0
  3583. *(SORT_NONE(.fini))
  3584. 0x00000000000142d0 . = ALIGN (0x4)
  3585. [!provide] PROVIDE (_etext = .)
  3586. [!provide] PROVIDE (_eitcm = .)
  3587. .preinit_array 0x00000000000142d0 0x0
  3588. [!provide] PROVIDE (__preinit_array_start = .)
  3589. *(.preinit_array)
  3590. [!provide] PROVIDE (__preinit_array_end = .)
  3591. .init_array 0x00000000000142d0 0x0
  3592. [!provide] PROVIDE (__init_array_start = .)
  3593. *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
  3594. *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
  3595. [!provide] PROVIDE (__init_array_end = .)
  3596. .fini_array 0x00000000000142d0 0x0
  3597. [!provide] PROVIDE (__fini_array_start = .)
  3598. *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
  3599. *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
  3600. [!provide] PROVIDE (__fini_array_end = .)
  3601. .ctors
  3602. *crtbegin.o(.ctors)
  3603. *crtbegin?.o(.ctors)
  3604. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
  3605. *(SORT_BY_NAME(.ctors.*))
  3606. *(.ctors)
  3607. .dtors
  3608. *crtbegin.o(.dtors)
  3609. *crtbegin?.o(.dtors)
  3610. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
  3611. *(SORT_BY_NAME(.dtors.*))
  3612. *(.dtors)
  3613. .dalign 0x0000000020004000 0x0 load address 0x00000000000142d0
  3614. 0x0000000020004000 . = ALIGN (0x4)
  3615. 0x0000000020004000 PROVIDE (_data_vma = .)
  3616. .dlalign 0x00000000000142d0 0x0
  3617. 0x00000000000142d0 . = ALIGN (0x4)
  3618. 0x00000000000142d0 PROVIDE (_data_lma = .)
  3619. .data 0x0000000020004000 0x750 load address 0x00000000000142d0
  3620. *(.gnu.linkonce.r.*)
  3621. *(.data .data.*)
  3622. .data.led_work
  3623. 0x0000000020004000 0x150 ./components/led/user_led.o
  3624. .data.electsw_work
  3625. 0x0000000020004150 0x3c ./components/electlock/elect_sw.o
  3626. .data.elect_work
  3627. 0x000000002000418c 0x50 ./components/electlock/user_elect.o
  3628. .data.dipsw_work
  3629. 0x00000000200041dc 0x60 ./components/can/dip_sw.o
  3630. .data.Peripheral_PeripheralCBs
  3631. 0x000000002000423c 0xc ./User/peripheral.o
  3632. .data.advertData
  3633. 0x0000000020004248 0x15 ./User/peripheral.o
  3634. *fill* 0x000000002000425d 0x3
  3635. .data.attDeviceName
  3636. 0x0000000020004260 0x15 ./User/peripheral.o
  3637. *fill* 0x0000000020004275 0x3
  3638. .data.scanRspData
  3639. 0x0000000020004278 0x13 ./User/peripheral.o
  3640. *fill* 0x000000002000428b 0x1
  3641. .data.AHBPrescTable
  3642. 0x000000002000428c 0x10 ./User/system_ch32v20x.o
  3643. 0x000000002000428c AHBPrescTable
  3644. .data.APBAHBPrescTable
  3645. 0x000000002000429c 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3646. .data.devInfoAttrTbl
  3647. 0x00000000200042ac 0x130 ./Profile/devinfoservice.o
  3648. .data.devInfoCBs
  3649. 0x00000000200043dc 0xc ./Profile/devinfoservice.o
  3650. 0x00000000200043dc devInfoCBs
  3651. .data.simpleProfileAttrTbl
  3652. 0x00000000200043e8 0xe0 ./Profile/gattprofile.o
  3653. .data.simpleProfileCBs
  3654. 0x00000000200044c8 0xc ./Profile/gattprofile.o
  3655. 0x00000000200044c8 simpleProfileCBs
  3656. .data.simpleProfileChar1UserDesp
  3657. 0x00000000200044d4 0x12 ./Profile/gattprofile.o
  3658. *fill* 0x00000000200044e6 0x2
  3659. .data.simpleProfileChar2UserDesp
  3660. 0x00000000200044e8 0x12 ./Profile/gattprofile.o
  3661. *fill* 0x00000000200044fa 0x2
  3662. .data.simpleProfileChar3UserDesp
  3663. 0x00000000200044fc 0x12 ./Profile/gattprofile.o
  3664. *fill* 0x000000002000450e 0x2
  3665. .data.simpleProfileChar4UserDesp
  3666. 0x0000000020004510 0x12 ./Profile/gattprofile.o
  3667. *fill* 0x0000000020004522 0x2
  3668. .data 0x0000000020004524 0xd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3669. *fill* 0x0000000020004531 0x3
  3670. .data.rel.local
  3671. 0x0000000020004534 0x4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3672. 0x0000000020004534 base64char
  3673. .data.impure_data
  3674. 0x0000000020004538 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)
  3675. .data.__global_locale
  3676. 0x0000000020004598 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)
  3677. 0x0000000020004598 __global_locale
  3678. *(.gnu.linkonce.d.*)
  3679. 0x0000000020004708 . = ALIGN (0x8)
  3680. *fill* 0x0000000020004704 0x4
  3681. *(.sdata .sdata.*)
  3682. .sdata.user_ws2812b_task_id
  3683. 0x0000000020004708 0x1 ./components/ws2812b/user_ws2812b.o
  3684. 0x0000000020004708 user_ws2812b_task_id
  3685. .sdata.user_nfc_task_id
  3686. 0x0000000020004709 0x1 ./components/nfc/user_nfc.o
  3687. 0x0000000020004709 user_nfc_task_id
  3688. .sdata.led_task_id
  3689. 0x000000002000470a 0x1 ./components/led/user_led.o
  3690. 0x000000002000470a led_task_id
  3691. .sdata.elect_task_id
  3692. 0x000000002000470b 0x1 ./components/electlock/user_elect.o
  3693. 0x000000002000470b elect_task_id
  3694. .sdata.user_config_param
  3695. 0x000000002000470c 0x6 ./components/config/user_config.o
  3696. 0x000000002000470c user_config_param
  3697. .sdata.user_can_task_id
  3698. 0x0000000020004712 0x1 ./components/can/user_can.o
  3699. 0x0000000020004712 user_can_task_id
  3700. .sdata.can_idx
  3701. 0x0000000020004713 0x1 ./components/action/user_sever.o
  3702. .sdata.offline_timeout
  3703. 0x0000000020004714 0x4 ./components/action/user_sever.o
  3704. .sdata.rst_timeout
  3705. 0x0000000020004718 0x1 ./components/action/user_sever.o
  3706. .sdata.user_server_task_id
  3707. 0x0000000020004719 0x1 ./components/action/user_sever.o
  3708. 0x0000000020004719 user_server_task_id
  3709. *fill* 0x000000002000471a 0x2
  3710. .sdata.Peripheral_SimpleProfileCBs
  3711. 0x000000002000471c 0x4 ./User/peripheral.o
  3712. .sdata.Peripheral_TaskID
  3713. 0x0000000020004720 0x1 ./User/peripheral.o
  3714. .sdata.peripheralMTU
  3715. 0x0000000020004721 0x1 ./User/peripheral.o
  3716. *fill* 0x0000000020004722 0x2
  3717. .sdata.SystemCoreClock
  3718. 0x0000000020004724 0x4 ./User/system_ch32v20x.o
  3719. 0x0000000020004724 SystemCoreClock
  3720. .sdata.ADCPrescTable
  3721. 0x0000000020004728 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3722. .sdata.curbrk.4953
  3723. 0x000000002000472c 0x4 ./SRC/Debug/debug.o
  3724. .sdata.devInfo11073CertProps
  3725. 0x0000000020004730 0x1 ./Profile/devinfoservice.o
  3726. .sdata.devInfoFirmwareRevProps
  3727. 0x0000000020004731 0x1 ./Profile/devinfoservice.o
  3728. .sdata.devInfoHardwareRevProps
  3729. 0x0000000020004732 0x1 ./Profile/devinfoservice.o
  3730. .sdata.devInfoMfrNameProps
  3731. 0x0000000020004733 0x1 ./Profile/devinfoservice.o
  3732. .sdata.devInfoModelNumberProps
  3733. 0x0000000020004734 0x1 ./Profile/devinfoservice.o
  3734. *fill* 0x0000000020004735 0x3
  3735. .sdata.devInfoPnpId
  3736. 0x0000000020004738 0x7 ./Profile/devinfoservice.o
  3737. .sdata.devInfoPnpIdProps
  3738. 0x000000002000473f 0x1 ./Profile/devinfoservice.o
  3739. .sdata.devInfoSerialNumberProps
  3740. 0x0000000020004740 0x1 ./Profile/devinfoservice.o
  3741. .sdata.devInfoSoftwareRevProps
  3742. 0x0000000020004741 0x1 ./Profile/devinfoservice.o
  3743. .sdata.devInfoSystemIdProps
  3744. 0x0000000020004742 0x1 ./Profile/devinfoservice.o
  3745. .sdata.simpleProfileChar1Props
  3746. 0x0000000020004743 0x1 ./Profile/gattprofile.o
  3747. .sdata.simpleProfileChar2Props
  3748. 0x0000000020004744 0x1 ./Profile/gattprofile.o
  3749. .sdata.simpleProfileChar3Props
  3750. 0x0000000020004745 0x1 ./Profile/gattprofile.o
  3751. .sdata.simpleProfileChar4Props
  3752. 0x0000000020004746 0x1 ./Profile/gattprofile.o
  3753. *fill* 0x0000000020004747 0x1
  3754. .sdata._impure_ptr
  3755. 0x0000000020004748 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)
  3756. 0x0000000020004748 _impure_ptr
  3757. *(.gnu.linkonce.s.*)
  3758. 0x0000000020004750 . = ALIGN (0x8)
  3759. *fill* 0x000000002000474c 0x4
  3760. *(.srodata.cst16)
  3761. *(.srodata.cst8)
  3762. *(.srodata.cst4)
  3763. *(.srodata.cst2)
  3764. *(.srodata .srodata.*)
  3765. 0x0000000020004750 . = ALIGN (0x4)
  3766. 0x0000000020004750 PROVIDE (_edata = .)
  3767. .got 0x0000000020004750 0x8 load address 0x0000000000014a20
  3768. .got 0x0000000020004750 0x8 ./components/ws2812b/user_ws2812b.o
  3769. 0x0000000020004750 _GLOBAL_OFFSET_TABLE_
  3770. .got.plt 0x0000000020004758 0x8 load address 0x0000000000014a28
  3771. .got.plt 0x0000000020004758 0x8 ./components/ws2812b/user_ws2812b.o
  3772. .bss 0x0000000020004760 0x228c load address 0x0000000000014a30
  3773. 0x0000000020004760 . = ALIGN (0x4)
  3774. 0x0000000020004760 PROVIDE (_sbss = .)
  3775. *(.sbss*)
  3776. .sbss.CT 0x0000000020004760 0x2 ./components/nfc/user_nfc.o
  3777. .sbss.nfc_cs_idx
  3778. 0x0000000020004762 0x1 ./components/nfc/user_nfc.o
  3779. *fill* 0x0000000020004763 0x1
  3780. .sbss.xUpload_card_stat
  3781. 0x0000000020004764 0x4 ./components/nfc/user_nfc.o
  3782. .sbss.alarm_stat
  3783. 0x0000000020004768 0x4 ./components/led/user_led.o
  3784. .sbss.electsw_upload
  3785. 0x000000002000476c 0x4 ./components/electlock/elect_sw.o
  3786. 0x000000002000476c electsw_upload
  3787. .sbss.elect_start_stat
  3788. 0x0000000020004770 0x1 ./components/electlock/user_elect.o
  3789. *fill* 0x0000000020004771 0x3
  3790. .sbss.xUpload_stat
  3791. 0x0000000020004774 0x4 ./components/electlock/user_elect.o
  3792. .sbss.dipsw_addr
  3793. 0x0000000020004778 0x1 ./components/can/dip_sw.o
  3794. *fill* 0x0000000020004779 0x3
  3795. .sbss.dipsw_upload
  3796. 0x000000002000477c 0x4 ./components/can/dip_sw.o
  3797. 0x000000002000477c dipsw_upload
  3798. .sbss.can_node_id
  3799. 0x0000000020004780 0x1 ./components/can/user_can.o
  3800. *fill* 0x0000000020004781 0x3
  3801. .sbss.xRecv_data
  3802. 0x0000000020004784 0x4 ./components/can/user_can.o
  3803. .sbss.token 0x0000000020004788 0x4 ./components/action/ble_action.o
  3804. .sbss.unixTime
  3805. 0x000000002000478c 0x4 ./components/action/ble_action.o
  3806. .sbss.upload_ble_data
  3807. 0x0000000020004790 0x4 ./components/action/ble_action.o
  3808. .sbss.can_open_data
  3809. 0x0000000020004794 0x8 ./components/action/user_sever.o
  3810. .sbss.offline_stat
  3811. 0x000000002000479c 0x1 ./components/action/user_sever.o
  3812. *fill* 0x000000002000479d 0x3
  3813. .sbss.MacAddr 0x00000000200047a0 0x6 ./User/app_main.o
  3814. 0x00000000200047a0 MacAddr
  3815. *fill* 0x00000000200047a6 0x2
  3816. .sbss.Broadcaster_BroadcasterCBs
  3817. 0x00000000200047a8 0x8 ./User/peripheral.o
  3818. .sbss.ble_connect
  3819. 0x00000000200047b0 0x4 ./User/peripheral.o
  3820. .sbss.download_ble_data
  3821. 0x00000000200047b4 0x4 ./User/peripheral.o
  3822. .sbss.download_ble_file
  3823. 0x00000000200047b8 0x4 ./User/peripheral.o
  3824. .sbss.peripheralConnList
  3825. 0x00000000200047bc 0x8 ./User/peripheral.o
  3826. .sbss.NVIC_Priority_Group
  3827. 0x00000000200047c4 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
  3828. 0x00000000200047c4 NVIC_Priority_Group
  3829. .sbss.p_ms 0x00000000200047c8 0x2 ./SRC/Debug/debug.o
  3830. .sbss.p_us 0x00000000200047ca 0x1 ./SRC/Debug/debug.o
  3831. *fill* 0x00000000200047cb 0x1
  3832. .sbss.devInfoSystemId
  3833. 0x00000000200047cc 0x8 ./Profile/devinfoservice.o
  3834. .sbss.simpleProfile_AppCBs
  3835. 0x00000000200047d4 0x4 ./Profile/gattprofile.o
  3836. .sbss.g_LLE_IRQLibHandlerLocation
  3837. 0x00000000200047d8 0x4 ./HAL/MCU.o
  3838. 0x00000000200047d8 g_LLE_IRQLibHandlerLocation
  3839. .sbss.halTaskID
  3840. 0x00000000200047dc 0x1 ./HAL/MCU.o
  3841. 0x00000000200047dc halTaskID
  3842. *fill* 0x00000000200047dd 0x3
  3843. .sbss.RTCTigFlag
  3844. 0x00000000200047e0 0x4 ./HAL/RTC.o
  3845. 0x00000000200047e0 RTCTigFlag
  3846. .sbss.__malloc_free_list
  3847. 0x00000000200047e4 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)
  3848. 0x00000000200047e4 __malloc_free_list
  3849. .sbss.__malloc_sbrk_start
  3850. 0x00000000200047e8 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)
  3851. 0x00000000200047e8 __malloc_sbrk_start
  3852. *(.gnu.linkonce.sb.*)
  3853. *(.bss*)
  3854. .bss.user_ws2812b_work
  3855. 0x00000000200047ec 0xc ./components/ws2812b/user_ws2812b.o
  3856. .bss.g_roundKeyTable
  3857. 0x00000000200047f8 0xb0 ./components/tools/AES_PKCS7.o
  3858. .bss.IDA 0x00000000200048a8 0xf ./components/nfc/user_nfc.o
  3859. *fill* 0x00000000200048b7 0x1
  3860. .bss.nfc_work 0x00000000200048b8 0x94 ./components/nfc/user_nfc.o
  3861. .bss.user_can_work
  3862. 0x000000002000494c 0x20 ./components/can/user_can.o
  3863. *fill* 0x000000002000496c 0x4
  3864. .bss.block_buf
  3865. 0x0000000020004970 0x100 ./components/action/ble_action.o
  3866. 0x0000000020004970 block_buf
  3867. .bss.lock_data
  3868. 0x0000000020004a70 0x19 ./components/action/user_sever.o
  3869. *fill* 0x0000000020004a89 0x3
  3870. .bss.MEM_BUF 0x0000000020004a8c 0x1c00 ./User/app_main.o
  3871. 0x0000000020004a8c MEM_BUF
  3872. .bss.Peripheral_BondMgrCBs
  3873. 0x000000002000668c 0xc ./User/peripheral.o
  3874. .bss.simpleProfileChar1
  3875. 0x0000000020006698 0x100 ./Profile/gattprofile.o
  3876. .bss.simpleProfileChar2
  3877. 0x0000000020006798 0x100 ./Profile/gattprofile.o
  3878. .bss.simpleProfileChar3
  3879. 0x0000000020006898 0x100 ./Profile/gattprofile.o
  3880. .bss.simpleProfileChar4
  3881. 0x0000000020006998 0x40 ./Profile/gattprofile.o
  3882. .bss.simpleProfileChar4Config
  3883. 0x00000000200069d8 0x10 ./Profile/gattprofile.o
  3884. *(.gnu.linkonce.b.*)
  3885. *(COMMON*)
  3886. COMMON 0x00000000200069e8 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)
  3887. 0x00000000200069e8 errno
  3888. 0x00000000200069ec . = ALIGN (0x4)
  3889. 0x00000000200069ec PROVIDE (_ebss = .)
  3890. 0x00000000200069ec PROVIDE (_end = _ebss)
  3891. [!provide] PROVIDE (end = .)
  3892. .stack 0x0000000020010000 0x0
  3893. 0x0000000020010000 PROVIDE (_heap_end = .)
  3894. 0x0000000020010000 . = ALIGN (0x4)
  3895. 0x0000000020010000 PROVIDE (_eusrstack = .)
  3896. OUTPUT(mainboard.elf elf32-littleriscv)
  3897. .debug_info 0x0000000000000000 0x32f23
  3898. .debug_info 0x0000000000000000 0xe90 ./components/ws2812b/user_ws2812b.o
  3899. .debug_info 0x0000000000000e90 0x12e1 ./components/ws2812b/ws2812b_spi.o
  3900. .debug_info 0x0000000000002171 0x1170 ./components/tools/AES_PKCS7.o
  3901. .debug_info 0x00000000000032e1 0x11e2 ./components/tools/_string.o
  3902. .debug_info 0x00000000000044c3 0xb67 ./components/tools/tools.o
  3903. .debug_info 0x000000000000502a 0x2000 ./components/nfc/fm175xx.o
  3904. .debug_info 0x000000000000702a 0x19e7 ./components/nfc/lpcd.o
  3905. .debug_info 0x0000000000008a11 0x15e7 ./components/nfc/type_a.o
  3906. .debug_info 0x0000000000009ff8 0x19fd ./components/nfc/user_nfc.o
  3907. .debug_info 0x000000000000b9f5 0xefe ./components/nfc/user_spi.o
  3908. .debug_info 0x000000000000c8f3 0x120b ./components/led/user_led.o
  3909. .debug_info 0x000000000000dafe 0xfa4 ./components/electlock/elect_sw.o
  3910. .debug_info 0x000000000000eaa2 0x164a ./components/electlock/user_elect.o
  3911. .debug_info 0x00000000000100ec 0xdf9 ./components/config/user_config.o
  3912. .debug_info 0x0000000000010ee5 0x1207 ./components/can/dip_sw.o
  3913. .debug_info 0x00000000000120ec 0x199a ./components/can/user_can.o
  3914. .debug_info 0x0000000000013a86 0x1c1e ./components/action/ble_action.o
  3915. .debug_info 0x00000000000156a4 0x178a ./components/action/user_sever.o
  3916. .debug_info 0x0000000000016e2e 0xf4b ./User/app_main.o
  3917. .debug_info 0x0000000000017d79 0x1130 ./User/ch32v20x_it.o
  3918. .debug_info 0x0000000000018ea9 0x2de1 ./User/peripheral.o
  3919. .debug_info 0x000000000001bc8a 0xb89 ./User/system_ch32v20x.o
  3920. .debug_info 0x000000000001c813 0x22 ./Startup/startup_ch32v20x_D8W.o
  3921. .debug_info 0x000000000001c835 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
  3922. .debug_info 0x000000000001df1d 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
  3923. .debug_info 0x000000000001f723 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3924. .debug_info 0x00000000000201b7 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
  3925. .debug_info 0x0000000000020ed8 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
  3926. .debug_info 0x0000000000021ae5 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
  3927. .debug_info 0x00000000000230c2 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3928. .debug_info 0x0000000000024266 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3929. .debug_info 0x0000000000024dda 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
  3930. .debug_info 0x0000000000025c70 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
  3931. .debug_info 0x0000000000026cc4 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3932. .debug_info 0x0000000000027f3d 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  3933. .debug_info 0x0000000000028eff 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
  3934. .debug_info 0x000000000002a1c0 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
  3935. .debug_info 0x000000000002b500 0xf51 ./SRC/Debug/debug.o
  3936. .debug_info 0x000000000002c451 0x10b9 ./Profile/devinfoservice.o
  3937. .debug_info 0x000000000002d50a 0x1476 ./Profile/gattprofile.o
  3938. .debug_info 0x000000000002e980 0x22 ./LIB/ble_task_scheduler.o
  3939. .debug_info 0x000000000002e9a2 0x1a85 ./HAL/MCU.o
  3940. .debug_info 0x0000000000030427 0xd55 ./HAL/RTC.o
  3941. .debug_info 0x000000000003117c 0x107e d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3942. .debug_info 0x00000000000321fa 0x161 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3943. .debug_info 0x000000000003235b 0xbc8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3944. .debug_abbrev 0x0000000000000000 0x9973
  3945. .debug_abbrev 0x0000000000000000 0x3e9 ./components/ws2812b/user_ws2812b.o
  3946. .debug_abbrev 0x00000000000003e9 0x29f ./components/ws2812b/ws2812b_spi.o
  3947. .debug_abbrev 0x0000000000000688 0x408 ./components/tools/AES_PKCS7.o
  3948. .debug_abbrev 0x0000000000000a90 0x38e ./components/tools/_string.o
  3949. .debug_abbrev 0x0000000000000e1e 0x30f ./components/tools/tools.o
  3950. .debug_abbrev 0x000000000000112d 0x46e ./components/nfc/fm175xx.o
  3951. .debug_abbrev 0x000000000000159b 0x428 ./components/nfc/lpcd.o
  3952. .debug_abbrev 0x00000000000019c3 0x340 ./components/nfc/type_a.o
  3953. .debug_abbrev 0x0000000000001d03 0x4ce ./components/nfc/user_nfc.o
  3954. .debug_abbrev 0x00000000000021d1 0x2a4 ./components/nfc/user_spi.o
  3955. .debug_abbrev 0x0000000000002475 0x42f ./components/led/user_led.o
  3956. .debug_abbrev 0x00000000000028a4 0x3ab ./components/electlock/elect_sw.o
  3957. .debug_abbrev 0x0000000000002c4f 0x44e ./components/electlock/user_elect.o
  3958. .debug_abbrev 0x000000000000309d 0x377 ./components/config/user_config.o
  3959. .debug_abbrev 0x0000000000003414 0x437 ./components/can/dip_sw.o
  3960. .debug_abbrev 0x000000000000384b 0x424 ./components/can/user_can.o
  3961. .debug_abbrev 0x0000000000003c6f 0x590 ./components/action/ble_action.o
  3962. .debug_abbrev 0x00000000000041ff 0x484 ./components/action/user_sever.o
  3963. .debug_abbrev 0x0000000000004683 0x2bc ./User/app_main.o
  3964. .debug_abbrev 0x000000000000493f 0x2d6 ./User/ch32v20x_it.o
  3965. .debug_abbrev 0x0000000000004c15 0x4a1 ./User/peripheral.o
  3966. .debug_abbrev 0x00000000000050b6 0x2c0 ./User/system_ch32v20x.o
  3967. .debug_abbrev 0x0000000000005376 0x12 ./Startup/startup_ch32v20x_D8W.o
  3968. .debug_abbrev 0x0000000000005388 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
  3969. .debug_abbrev 0x0000000000005734 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
  3970. .debug_abbrev 0x0000000000005b22 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  3971. .debug_abbrev 0x0000000000005e19 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
  3972. .debug_abbrev 0x000000000000611b 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
  3973. .debug_abbrev 0x00000000000063f5 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
  3974. .debug_abbrev 0x000000000000685d 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
  3975. .debug_abbrev 0x0000000000006bb1 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  3976. .debug_abbrev 0x0000000000006e33 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
  3977. .debug_abbrev 0x000000000000711d 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
  3978. .debug_abbrev 0x00000000000074b9 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
  3979. .debug_abbrev 0x000000000000782d 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
  3980. .debug_abbrev 0x0000000000007b57 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
  3981. .debug_abbrev 0x0000000000007e7c 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
  3982. .debug_abbrev 0x00000000000081a1 0x2f0 ./SRC/Debug/debug.o
  3983. .debug_abbrev 0x0000000000008491 0x310 ./Profile/devinfoservice.o
  3984. .debug_abbrev 0x00000000000087a1 0x3b7 ./Profile/gattprofile.o
  3985. .debug_abbrev 0x0000000000008b58 0x12 ./LIB/ble_task_scheduler.o
  3986. .debug_abbrev 0x0000000000008b6a 0x43e ./HAL/MCU.o
  3987. .debug_abbrev 0x0000000000008fa8 0x2b4 ./HAL/RTC.o
  3988. .debug_abbrev 0x000000000000925c 0x37f d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  3989. .debug_abbrev 0x00000000000095db 0xdd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  3990. .debug_abbrev 0x00000000000096b8 0x2bb d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  3991. .debug_loc 0x0000000000000000 0xcd18
  3992. .debug_loc 0x0000000000000000 0x1be ./components/ws2812b/user_ws2812b.o
  3993. .debug_loc 0x00000000000001be 0xa5 ./components/ws2812b/ws2812b_spi.o
  3994. .debug_loc 0x0000000000000263 0x753 ./components/tools/AES_PKCS7.o
  3995. .debug_loc 0x00000000000009b6 0xdad ./components/tools/_string.o
  3996. .debug_loc 0x0000000000001763 0x12e ./components/tools/tools.o
  3997. .debug_loc 0x0000000000001891 0xfc8 ./components/nfc/fm175xx.o
  3998. .debug_loc 0x0000000000002859 0x4bb ./components/nfc/lpcd.o
  3999. .debug_loc 0x0000000000002d14 0x9fc ./components/nfc/type_a.o
  4000. .debug_loc 0x0000000000003710 0x45e ./components/nfc/user_nfc.o
  4001. .debug_loc 0x0000000000003b6e 0xb8 ./components/nfc/user_spi.o
  4002. .debug_loc 0x0000000000003c26 0x4cd ./components/led/user_led.o
  4003. .debug_loc 0x00000000000040f3 0x66 ./components/electlock/elect_sw.o
  4004. .debug_loc 0x0000000000004159 0x5c7 ./components/electlock/user_elect.o
  4005. .debug_loc 0x0000000000004720 0x186 ./components/config/user_config.o
  4006. .debug_loc 0x00000000000048a6 0x157 ./components/can/dip_sw.o
  4007. .debug_loc 0x00000000000049fd 0x35b ./components/can/user_can.o
  4008. .debug_loc 0x0000000000004d58 0x4f1 ./components/action/ble_action.o
  4009. .debug_loc 0x0000000000005249 0x2ff ./components/action/user_sever.o
  4010. .debug_loc 0x0000000000005548 0x69e ./User/peripheral.o
  4011. .debug_loc 0x0000000000005be6 0xc2 ./User/system_ch32v20x.o
  4012. .debug_loc 0x0000000000005ca8 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
  4013. .debug_loc 0x0000000000006782 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
  4014. .debug_loc 0x000000000000711b 0x6e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4015. .debug_loc 0x0000000000007189 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
  4016. .debug_loc 0x00000000000072de 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
  4017. .debug_loc 0x000000000000745f 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
  4018. .debug_loc 0x0000000000008121 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4019. .debug_loc 0x0000000000008828 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4020. .debug_loc 0x0000000000008890 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
  4021. .debug_loc 0x00000000000088bd 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
  4022. .debug_loc 0x0000000000008b5b 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
  4023. .debug_loc 0x0000000000009308 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
  4024. .debug_loc 0x0000000000009857 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
  4025. .debug_loc 0x0000000000009e20 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
  4026. .debug_loc 0x000000000000a572 0x1a8 ./SRC/Debug/debug.o
  4027. .debug_loc 0x000000000000a71a 0x419 ./Profile/devinfoservice.o
  4028. .debug_loc 0x000000000000ab33 0xb8e ./Profile/gattprofile.o
  4029. .debug_loc 0x000000000000b6c1 0x40c ./HAL/MCU.o
  4030. .debug_loc 0x000000000000bacd 0x8b ./HAL/RTC.o
  4031. .debug_loc 0x000000000000bb58 0x559 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4032. .debug_loc 0x000000000000c0b1 0x569 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4033. .debug_loc 0x000000000000c61a 0x6fe d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4034. .debug_aranges 0x0000000000000000 0x1418
  4035. .debug_aranges
  4036. 0x0000000000000000 0x48 ./components/ws2812b/user_ws2812b.o
  4037. .debug_aranges
  4038. 0x0000000000000048 0x30 ./components/ws2812b/ws2812b_spi.o
  4039. .debug_aranges
  4040. 0x0000000000000078 0x58 ./components/tools/AES_PKCS7.o
  4041. .debug_aranges
  4042. 0x00000000000000d0 0xc8 ./components/tools/_string.o
  4043. .debug_aranges
  4044. 0x0000000000000198 0x38 ./components/tools/tools.o
  4045. .debug_aranges
  4046. 0x00000000000001d0 0xc0 ./components/nfc/fm175xx.o
  4047. .debug_aranges
  4048. 0x0000000000000290 0xc8 ./components/nfc/lpcd.o
  4049. .debug_aranges
  4050. 0x0000000000000358 0x70 ./components/nfc/type_a.o
  4051. .debug_aranges
  4052. 0x00000000000003c8 0x80 ./components/nfc/user_nfc.o
  4053. .debug_aranges
  4054. 0x0000000000000448 0x28 ./components/nfc/user_spi.o
  4055. .debug_aranges
  4056. 0x0000000000000470 0x50 ./components/led/user_led.o
  4057. .debug_aranges
  4058. 0x00000000000004c0 0x60 ./components/electlock/elect_sw.o
  4059. .debug_aranges
  4060. 0x0000000000000520 0x70 ./components/electlock/user_elect.o
  4061. .debug_aranges
  4062. 0x0000000000000590 0x50 ./components/config/user_config.o
  4063. .debug_aranges
  4064. 0x00000000000005e0 0x80 ./components/can/dip_sw.o
  4065. .debug_aranges
  4066. 0x0000000000000660 0x50 ./components/can/user_can.o
  4067. .debug_aranges
  4068. 0x00000000000006b0 0x98 ./components/action/ble_action.o
  4069. .debug_aranges
  4070. 0x0000000000000748 0x68 ./components/action/user_sever.o
  4071. .debug_aranges
  4072. 0x00000000000007b0 0x28 ./User/app_main.o
  4073. .debug_aranges
  4074. 0x00000000000007d8 0x40 ./User/ch32v20x_it.o
  4075. .debug_aranges
  4076. 0x0000000000000818 0x70 ./User/peripheral.o
  4077. .debug_aranges
  4078. 0x0000000000000888 0x28 ./User/system_ch32v20x.o
  4079. .debug_aranges
  4080. 0x00000000000008b0 0x30 ./Startup/startup_ch32v20x_D8W.o
  4081. .debug_aranges
  4082. 0x00000000000008e0 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
  4083. .debug_aranges
  4084. 0x0000000000000a30 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
  4085. .debug_aranges
  4086. 0x0000000000000b08 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4087. .debug_aranges
  4088. 0x0000000000000b50 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
  4089. .debug_aranges
  4090. 0x0000000000000bb0 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
  4091. .debug_aranges
  4092. 0x0000000000000c00 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
  4093. .debug_aranges
  4094. 0x0000000000000d10 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4095. .debug_aranges
  4096. 0x0000000000000dc0 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4097. .debug_aranges
  4098. 0x0000000000000e08 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
  4099. .debug_aranges
  4100. 0x0000000000000e30 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4101. .debug_aranges
  4102. 0x0000000000000eb8 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4103. .debug_aranges
  4104. 0x0000000000000fe8 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4105. .debug_aranges
  4106. 0x0000000000001070 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4107. .debug_aranges
  4108. 0x0000000000001140 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4109. .debug_aranges
  4110. 0x0000000000001230 0x50 ./SRC/Debug/debug.o
  4111. .debug_aranges
  4112. 0x0000000000001280 0x38 ./Profile/devinfoservice.o
  4113. .debug_aranges
  4114. 0x00000000000012b8 0x58 ./Profile/gattprofile.o
  4115. .debug_aranges
  4116. 0x0000000000001310 0x28 ./LIB/ble_task_scheduler.o
  4117. .debug_aranges
  4118. 0x0000000000001338 0x50 ./HAL/MCU.o
  4119. .debug_aranges
  4120. 0x0000000000001388 0x30 ./HAL/RTC.o
  4121. .debug_aranges
  4122. 0x00000000000013b8 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4123. .debug_aranges
  4124. 0x00000000000013d8 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4125. .debug_aranges
  4126. 0x00000000000013f8 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4127. .debug_ranges 0x0000000000000000 0x1fb0
  4128. .debug_ranges 0x0000000000000000 0xa8 ./components/ws2812b/user_ws2812b.o
  4129. .debug_ranges 0x00000000000000a8 0x20 ./components/ws2812b/ws2812b_spi.o
  4130. .debug_ranges 0x00000000000000c8 0xe0 ./components/tools/AES_PKCS7.o
  4131. .debug_ranges 0x00000000000001a8 0xd8 ./components/tools/_string.o
  4132. .debug_ranges 0x0000000000000280 0x40 ./components/tools/tools.o
  4133. .debug_ranges 0x00000000000002c0 0x2a8 ./components/nfc/fm175xx.o
  4134. .debug_ranges 0x0000000000000568 0x140 ./components/nfc/lpcd.o
  4135. .debug_ranges 0x00000000000006a8 0x60 ./components/nfc/type_a.o
  4136. .debug_ranges 0x0000000000000708 0xd0 ./components/nfc/user_nfc.o
  4137. .debug_ranges 0x00000000000007d8 0x18 ./components/nfc/user_spi.o
  4138. .debug_ranges 0x00000000000007f0 0x120 ./components/led/user_led.o
  4139. .debug_ranges 0x0000000000000910 0xa8 ./components/electlock/elect_sw.o
  4140. .debug_ranges 0x00000000000009b8 0x150 ./components/electlock/user_elect.o
  4141. .debug_ranges 0x0000000000000b08 0x40 ./components/config/user_config.o
  4142. .debug_ranges 0x0000000000000b48 0xe0 ./components/can/dip_sw.o
  4143. .debug_ranges 0x0000000000000c28 0x158 ./components/can/user_can.o
  4144. .debug_ranges 0x0000000000000d80 0x1b0 ./components/action/ble_action.o
  4145. .debug_ranges 0x0000000000000f30 0x188 ./components/action/user_sever.o
  4146. .debug_ranges 0x00000000000010b8 0x18 ./User/app_main.o
  4147. .debug_ranges 0x00000000000010d0 0x30 ./User/ch32v20x_it.o
  4148. .debug_ranges 0x0000000000001100 0xf8 ./User/peripheral.o
  4149. .debug_ranges 0x00000000000011f8 0x38 ./User/system_ch32v20x.o
  4150. .debug_ranges 0x0000000000001230 0x28 ./Startup/startup_ch32v20x_D8W.o
  4151. .debug_ranges 0x0000000000001258 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
  4152. .debug_ranges 0x0000000000001398 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
  4153. .debug_ranges 0x0000000000001490 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4154. .debug_ranges 0x00000000000014e0 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
  4155. .debug_ranges 0x0000000000001530 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
  4156. .debug_ranges 0x0000000000001570 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  4157. .debug_ranges 0x0000000000001670 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4158. .debug_ranges 0x0000000000001710 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4159. .debug_ranges 0x0000000000001748 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
  4160. .debug_ranges 0x0000000000001790 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4161. .debug_ranges 0x0000000000001808 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4162. .debug_ranges 0x0000000000001928 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4163. .debug_ranges 0x00000000000019a0 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
  4164. .debug_ranges 0x0000000000001a60 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4165. .debug_ranges 0x0000000000001b40 0x40 ./SRC/Debug/debug.o
  4166. .debug_ranges 0x0000000000001b80 0x28 ./Profile/devinfoservice.o
  4167. .debug_ranges 0x0000000000001ba8 0x128 ./Profile/gattprofile.o
  4168. .debug_ranges 0x0000000000001cd0 0x20 ./LIB/ble_task_scheduler.o
  4169. .debug_ranges 0x0000000000001cf0 0x88 ./HAL/MCU.o
  4170. .debug_ranges 0x0000000000001d78 0x20 ./HAL/RTC.o
  4171. .debug_ranges 0x0000000000001d98 0x28 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4172. .debug_ranges 0x0000000000001dc0 0x1f0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4173. .debug_line 0x0000000000000000 0x265d5
  4174. .debug_line 0x0000000000000000 0x96c ./components/ws2812b/user_ws2812b.o
  4175. .debug_line 0x000000000000096c 0x8f9 ./components/ws2812b/ws2812b_spi.o
  4176. .debug_line 0x0000000000001265 0xc31 ./components/tools/AES_PKCS7.o
  4177. .debug_line 0x0000000000001e96 0x1222 ./components/tools/_string.o
  4178. .debug_line 0x00000000000030b8 0x5c6 ./components/tools/tools.o
  4179. .debug_line 0x000000000000367e 0x1645 ./components/nfc/fm175xx.o
  4180. .debug_line 0x0000000000004cc3 0x132f ./components/nfc/lpcd.o
  4181. .debug_line 0x0000000000005ff2 0x12f3 ./components/nfc/type_a.o
  4182. .debug_line 0x00000000000072e5 0x14b8 ./components/nfc/user_nfc.o
  4183. .debug_line 0x000000000000879d 0x7f5 ./components/nfc/user_spi.o
  4184. .debug_line 0x0000000000008f92 0xfa8 ./components/led/user_led.o
  4185. .debug_line 0x0000000000009f3a 0xace ./components/electlock/elect_sw.o
  4186. .debug_line 0x000000000000aa08 0xfea ./components/electlock/user_elect.o
  4187. .debug_line 0x000000000000b9f2 0x800 ./components/config/user_config.o
  4188. .debug_line 0x000000000000c1f2 0xcc7 ./components/can/dip_sw.o
  4189. .debug_line 0x000000000000ceb9 0xea8 ./components/can/user_can.o
  4190. .debug_line 0x000000000000dd61 0x1672 ./components/action/ble_action.o
  4191. .debug_line 0x000000000000f3d3 0x13f3 ./components/action/user_sever.o
  4192. .debug_line 0x00000000000107c6 0xa25 ./User/app_main.o
  4193. .debug_line 0x00000000000111eb 0x787 ./User/ch32v20x_it.o
  4194. .debug_line 0x0000000000011972 0xf94 ./User/peripheral.o
  4195. .debug_line 0x0000000000012906 0x7e6 ./User/system_ch32v20x.o
  4196. .debug_line 0x00000000000130ec 0x128 ./Startup/startup_ch32v20x_D8W.o
  4197. .debug_line 0x0000000000013214 0x19eb ./SRC/Peripheral/src/ch32v20x_adc.o
  4198. .debug_line 0x0000000000014bff 0x1b7d ./SRC/Peripheral/src/ch32v20x_can.o
  4199. .debug_line 0x000000000001677c 0x4a1 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4200. .debug_line 0x0000000000016c1d 0x8fa ./SRC/Peripheral/src/ch32v20x_dma.o
  4201. .debug_line 0x0000000000017517 0x719 ./SRC/Peripheral/src/ch32v20x_exti.o
  4202. .debug_line 0x0000000000017c30 0x26a6 ./SRC/Peripheral/src/ch32v20x_flash.o
  4203. .debug_line 0x000000000001a2d6 0x11e4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4204. .debug_line 0x000000000001b4ba 0x538 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4205. .debug_line 0x000000000001b9f2 0x520 ./SRC/Peripheral/src/ch32v20x_misc.o
  4206. .debug_line 0x000000000001bf12 0xcf8 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4207. .debug_line 0x000000000001cc0a 0x1330 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4208. .debug_line 0x000000000001df3a 0x16f0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4209. .debug_line 0x000000000001f62a 0xee4 ./SRC/Peripheral/src/ch32v20x_spi.o
  4210. .debug_line 0x000000000002050e 0x1008 ./SRC/Peripheral/src/ch32v20x_usart.o
  4211. .debug_line 0x0000000000021516 0x8c6 ./SRC/Debug/debug.o
  4212. .debug_line 0x0000000000021ddc 0x938 ./Profile/devinfoservice.o
  4213. .debug_line 0x0000000000022714 0xc44 ./Profile/gattprofile.o
  4214. .debug_line 0x0000000000023358 0x2f0 ./LIB/ble_task_scheduler.o
  4215. .debug_line 0x0000000000023648 0xf7c ./HAL/MCU.o
  4216. .debug_line 0x00000000000245c4 0x7e7 ./HAL/RTC.o
  4217. .debug_line 0x0000000000024dab 0x60d d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4218. .debug_line 0x00000000000253b8 0x5f4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4219. .debug_line 0x00000000000259ac 0xc29 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4220. .debug_str 0x0000000000000000 0x799a
  4221. .debug_str 0x0000000000000000 0x7b7 ./components/ws2812b/user_ws2812b.o
  4222. 0x884 (size before relaxing)
  4223. .debug_str 0x00000000000007b7 0x847 ./components/ws2812b/ws2812b_spi.o
  4224. 0xeee (size before relaxing)
  4225. .debug_str 0x0000000000000ffe 0x14c ./components/tools/AES_PKCS7.o
  4226. 0x739 (size before relaxing)
  4227. .debug_str 0x000000000000114a 0x192 ./components/tools/_string.o
  4228. 0x78c (size before relaxing)
  4229. .debug_str 0x00000000000012dc 0xa2 ./components/tools/tools.o
  4230. 0x6d1 (size before relaxing)
  4231. .debug_str 0x000000000000137e 0x32b ./components/nfc/fm175xx.o
  4232. 0x9a2 (size before relaxing)
  4233. .debug_str 0x00000000000016a9 0x2b5 ./components/nfc/lpcd.o
  4234. 0xa8d (size before relaxing)
  4235. .debug_str 0x000000000000195e 0x164 ./components/nfc/type_a.o
  4236. 0x809 (size before relaxing)
  4237. .debug_str 0x0000000000001ac2 0x2e1 ./components/nfc/user_nfc.o
  4238. 0xc7a (size before relaxing)
  4239. .debug_str 0x0000000000001da3 0x5f ./components/nfc/user_spi.o
  4240. 0x985 (size before relaxing)
  4241. .debug_str 0x0000000000001e02 0x360 ./components/led/user_led.o
  4242. 0xa4c (size before relaxing)
  4243. .debug_str 0x0000000000002162 0x201 ./components/electlock/elect_sw.o
  4244. 0x9d0 (size before relaxing)
  4245. .debug_str 0x0000000000002363 0x1dc ./components/electlock/user_elect.o
  4246. 0xa3f (size before relaxing)
  4247. .debug_str 0x000000000000253f 0x1ea ./components/config/user_config.o
  4248. 0x859 (size before relaxing)
  4249. .debug_str 0x0000000000002729 0x219 ./components/can/dip_sw.o
  4250. 0xb5e (size before relaxing)
  4251. .debug_str 0x0000000000002942 0x42b ./components/can/user_can.o
  4252. 0x11d9 (size before relaxing)
  4253. .debug_str 0x0000000000002d6d 0x45b ./components/action/ble_action.o
  4254. 0xd6c (size before relaxing)
  4255. .debug_str 0x00000000000031c8 0x2d5 ./components/action/user_sever.o
  4256. 0xc5e (size before relaxing)
  4257. .debug_str 0x000000000000349d 0x108 ./User/app_main.o
  4258. 0xa57 (size before relaxing)
  4259. .debug_str 0x00000000000035a5 0xce ./User/ch32v20x_it.o
  4260. 0xa30 (size before relaxing)
  4261. .debug_str 0x0000000000003673 0xe7b ./User/peripheral.o
  4262. 0x1613 (size before relaxing)
  4263. .debug_str 0x00000000000044ee 0xf5 ./User/system_ch32v20x.o
  4264. 0x70a (size before relaxing)
  4265. .debug_str 0x00000000000045e3 0x2e ./Startup/startup_ch32v20x_D8W.o
  4266. 0x85 (size before relaxing)
  4267. .debug_str 0x0000000000004611 0x63a ./SRC/Peripheral/src/ch32v20x_adc.o
  4268. 0xca7 (size before relaxing)
  4269. .debug_str 0x0000000000004c4b 0x2de ./SRC/Peripheral/src/ch32v20x_can.o
  4270. 0xc4b (size before relaxing)
  4271. .debug_str 0x0000000000004f29 0xd0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4272. 0x6d6 (size before relaxing)
  4273. .debug_str 0x0000000000004ff9 0x113 ./SRC/Peripheral/src/ch32v20x_dma.o
  4274. 0x883 (size before relaxing)
  4275. .debug_str 0x000000000000510c 0x200 ./SRC/Peripheral/src/ch32v20x_exti.o
  4276. 0x81d (size before relaxing)
  4277. .debug_str 0x000000000000530c 0x4cb ./SRC/Peripheral/src/ch32v20x_flash.o
  4278. 0xbaf (size before relaxing)
  4279. .debug_str 0x00000000000057d7 0x262 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4280. 0xa40 (size before relaxing)
  4281. .debug_str 0x0000000000005a39 0x109 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4282. 0x794 (size before relaxing)
  4283. .debug_str 0x0000000000005b42 0x107 ./SRC/Peripheral/src/ch32v20x_misc.o
  4284. 0xb5f (size before relaxing)
  4285. .debug_str 0x0000000000005c49 0x1ef ./SRC/Peripheral/src/ch32v20x_pwr.o
  4286. 0x8ec (size before relaxing)
  4287. .debug_str 0x0000000000005e38 0x3e5 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4288. 0xb5e (size before relaxing)
  4289. .debug_str 0x000000000000621d 0x308 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4290. 0x9c5 (size before relaxing)
  4291. .debug_str 0x0000000000006525 0x27e ./SRC/Peripheral/src/ch32v20x_spi.o
  4292. 0xb1f (size before relaxing)
  4293. .debug_str 0x00000000000067a3 0x42e ./SRC/Peripheral/src/ch32v20x_usart.o
  4294. 0xb7a (size before relaxing)
  4295. .debug_str 0x0000000000006bd1 0xe3 ./SRC/Debug/debug.o
  4296. 0x9b8 (size before relaxing)
  4297. .debug_str 0x0000000000006cb4 0x37a ./Profile/devinfoservice.o
  4298. 0xaeb (size before relaxing)
  4299. .debug_str 0x000000000000702e 0x2ba ./Profile/gattprofile.o
  4300. 0xb98 (size before relaxing)
  4301. .debug_str 0x00000000000072e8 0x6a ./LIB/ble_task_scheduler.o
  4302. 0xcd (size before relaxing)
  4303. .debug_str 0x0000000000007352 0x322 ./HAL/MCU.o
  4304. 0x1179 (size before relaxing)
  4305. .debug_str 0x0000000000007674 0xdf ./HAL/RTC.o
  4306. 0x852 (size before relaxing)
  4307. .debug_str 0x0000000000007753 0x187 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4308. 0x6d2 (size before relaxing)
  4309. .debug_str 0x00000000000078da 0x44 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4310. 0x116 (size before relaxing)
  4311. .debug_str 0x000000000000791e 0x7c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4312. 0x5d9 (size before relaxing)
  4313. .comment 0x0000000000000000 0x66
  4314. .comment 0x0000000000000000 0x33 ./components/ws2812b/user_ws2812b.o
  4315. 0x34 (size before relaxing)
  4316. .comment 0x0000000000000033 0x34 ./components/ws2812b/ws2812b_spi.o
  4317. .comment 0x0000000000000033 0x34 ./components/tools/AES_PKCS7.o
  4318. .comment 0x0000000000000033 0x34 ./components/tools/_string.o
  4319. .comment 0x0000000000000033 0x34 ./components/tools/tools.o
  4320. .comment 0x0000000000000033 0x34 ./components/nfc/fm175xx.o
  4321. .comment 0x0000000000000033 0x34 ./components/nfc/lpcd.o
  4322. .comment 0x0000000000000033 0x34 ./components/nfc/type_a.o
  4323. .comment 0x0000000000000033 0x34 ./components/nfc/user_nfc.o
  4324. .comment 0x0000000000000033 0x34 ./components/nfc/user_spi.o
  4325. .comment 0x0000000000000033 0x34 ./components/led/user_led.o
  4326. .comment 0x0000000000000033 0x34 ./components/electlock/elect_sw.o
  4327. .comment 0x0000000000000033 0x34 ./components/electlock/user_elect.o
  4328. .comment 0x0000000000000033 0x34 ./components/config/user_config.o
  4329. .comment 0x0000000000000033 0x34 ./components/can/dip_sw.o
  4330. .comment 0x0000000000000033 0x34 ./components/can/user_can.o
  4331. .comment 0x0000000000000033 0x34 ./components/action/ble_action.o
  4332. .comment 0x0000000000000033 0x34 ./components/action/user_sever.o
  4333. .comment 0x0000000000000033 0x34 ./User/app_main.o
  4334. .comment 0x0000000000000033 0x34 ./User/ch32v20x_it.o
  4335. .comment 0x0000000000000033 0x34 ./User/peripheral.o
  4336. .comment 0x0000000000000033 0x34 ./User/system_ch32v20x.o
  4337. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_adc.o
  4338. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
  4339. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4340. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
  4341. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
  4342. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
  4343. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4344. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4345. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
  4346. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  4347. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4348. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4349. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
  4350. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
  4351. .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
  4352. .comment 0x0000000000000033 0x34 ./Profile/devinfoservice.o
  4353. .comment 0x0000000000000033 0x34 ./Profile/gattprofile.o
  4354. .comment 0x0000000000000033 0x34 ./HAL/MCU.o
  4355. .comment 0x0000000000000033 0x34 ./HAL/RTC.o
  4356. .comment 0x0000000000000033 0x33 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4357. 0x34 (size before relaxing)
  4358. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4359. .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4360. .debug_frame 0x0000000000000000 0x4f0c
  4361. .debug_frame 0x0000000000000000 0xd0 ./components/ws2812b/user_ws2812b.o
  4362. .debug_frame 0x00000000000000d0 0x78 ./components/ws2812b/ws2812b_spi.o
  4363. .debug_frame 0x0000000000000148 0x15c ./components/tools/AES_PKCS7.o
  4364. .debug_frame 0x00000000000002a4 0x278 ./components/tools/_string.o
  4365. .debug_frame 0x000000000000051c 0x6c ./components/tools/tools.o
  4366. .debug_frame 0x0000000000000588 0x2cc ./components/nfc/fm175xx.o
  4367. .debug_frame 0x0000000000000854 0x2f0 ./components/nfc/lpcd.o
  4368. .debug_frame 0x0000000000000b44 0x1b8 ./components/nfc/type_a.o
  4369. .debug_frame 0x0000000000000cfc 0x1c0 ./components/nfc/user_nfc.o
  4370. .debug_frame 0x0000000000000ebc 0x60 ./components/nfc/user_spi.o
  4371. .debug_frame 0x0000000000000f1c 0x134 ./components/led/user_led.o
  4372. .debug_frame 0x0000000000001050 0x12c ./components/electlock/elect_sw.o
  4373. .debug_frame 0x000000000000117c 0x1a4 ./components/electlock/user_elect.o
  4374. .debug_frame 0x0000000000001320 0xb8 ./components/config/user_config.o
  4375. .debug_frame 0x00000000000013d8 0x184 ./components/can/dip_sw.o
  4376. .debug_frame 0x000000000000155c 0x120 ./components/can/user_can.o
  4377. .debug_frame 0x000000000000167c 0x1c0 ./components/action/ble_action.o
  4378. .debug_frame 0x000000000000183c 0x118 ./components/action/user_sever.o
  4379. .debug_frame 0x0000000000001954 0x40 ./User/app_main.o
  4380. .debug_frame 0x0000000000001994 0x6c ./User/ch32v20x_it.o
  4381. .debug_frame 0x0000000000001a00 0x160 ./User/peripheral.o
  4382. .debug_frame 0x0000000000001b60 0x3c ./User/system_ch32v20x.o
  4383. .debug_frame 0x0000000000001b9c 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
  4384. .debug_frame 0x0000000000001e58 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
  4385. .debug_frame 0x0000000000001ff8 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  4386. .debug_frame 0x0000000000002068 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
  4387. .debug_frame 0x0000000000002128 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
  4388. .debug_frame 0x00000000000021b8 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
  4389. .debug_frame 0x0000000000002508 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
  4390. .debug_frame 0x0000000000002680 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  4391. .debug_frame 0x00000000000026f0 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
  4392. .debug_frame 0x0000000000002720 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
  4393. .debug_frame 0x000000000000281c 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
  4394. .debug_frame 0x0000000000002a6c 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
  4395. .debug_frame 0x0000000000002bd4 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
  4396. .debug_frame 0x0000000000002d8c 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
  4397. .debug_frame 0x0000000000002f7c 0xc0 ./SRC/Debug/debug.o
  4398. .debug_frame 0x000000000000303c 0x80 ./Profile/devinfoservice.o
  4399. .debug_frame 0x00000000000030bc 0x154 ./Profile/gattprofile.o
  4400. .debug_frame 0x0000000000003210 0x11c ./HAL/MCU.o
  4401. .debug_frame 0x000000000000332c 0x60 ./HAL/RTC.o
  4402. .debug_frame 0x000000000000338c 0x12c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
  4403. .debug_frame 0x00000000000034b8 0x30 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
  4404. .debug_frame 0x00000000000034e8 0x4c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_LOCK_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
  4405. .debug_frame 0x0000000000003534 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)
  4406. .debug_frame 0x0000000000003578 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)
  4407. .debug_frame 0x00000000000035c8 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)
  4408. .debug_frame 0x00000000000035e8 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)
  4409. .debug_frame 0x0000000000003608 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)
  4410. .debug_frame 0x000000000000365c 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)
  4411. .debug_frame 0x00000000000036a0 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)
  4412. .debug_frame 0x00000000000036c0 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)
  4413. .debug_frame 0x00000000000036f8 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)
  4414. .debug_frame 0x0000000000003718 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)
  4415. .debug_frame 0x0000000000003738 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)
  4416. .debug_frame 0x0000000000003768 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)
  4417. .debug_frame 0x0000000000003788 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)
  4418. .debug_frame 0x00000000000037c8 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)
  4419. .debug_frame 0x0000000000003808 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)
  4420. .debug_frame 0x00000000000038c4 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)
  4421. .debug_frame 0x0000000000003950 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)
  4422. .debug_frame 0x00000000000039b0 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)
  4423. .debug_frame 0x0000000000003a04 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)
  4424. .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-sbrkr.o)
  4425. .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-sf_nan.o)
  4426. .debug_frame 0x0000000000003aa8 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)
  4427. .debug_frame 0x0000000000003af0 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)
  4428. .debug_frame 0x0000000000003b44 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)
  4429. .debug_frame 0x0000000000003be8 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)
  4430. .debug_frame 0x0000000000003c08 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)
  4431. .debug_frame 0x0000000000003d5c 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)
  4432. .debug_frame 0x0000000000003dcc 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)
  4433. .debug_frame 0x0000000000003e1c 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)
  4434. .debug_frame 0x0000000000003e4c 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)
  4435. .debug_frame 0x0000000000003e88 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)
  4436. .debug_frame 0x0000000000003eb8 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)
  4437. .debug_frame 0x0000000000003f50 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)
  4438. .debug_frame 0x0000000000003fcc 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)
  4439. .debug_frame 0x0000000000004114 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)
  4440. .debug_frame 0x000000000000419c 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)
  4441. .debug_frame 0x0000000000004220 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)
  4442. .debug_frame 0x00000000000042a0 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)
  4443. .debug_frame 0x0000000000004318 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)
  4444. .debug_frame 0x0000000000004358 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)
  4445. .debug_frame 0x0000000000004388 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)
  4446. .debug_frame 0x00000000000043ec 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)
  4447. .debug_frame 0x0000000000004424 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)
  4448. .debug_frame 0x0000000000004444 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)
  4449. .debug_frame 0x0000000000004474 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)
  4450. .debug_frame 0x0000000000004754 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)
  4451. .debug_frame 0x0000000000004784 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)
  4452. .debug_frame 0x00000000000047c4 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)
  4453. .debug_frame 0x00000000000048a4 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)
  4454. .debug_frame 0x0000000000004958 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)
  4455. .debug_frame 0x0000000000004a28 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)
  4456. .debug_frame 0x0000000000004ac8 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)
  4457. .debug_frame 0x0000000000004af8 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)
  4458. .debug_frame 0x0000000000004b68 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)
  4459. .debug_frame 0x0000000000004b88 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)
  4460. .debug_frame 0x0000000000004ba8 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)
  4461. .debug_frame 0x0000000000004c18 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)
  4462. .debug_frame 0x0000000000004c9c 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)
  4463. .debug_frame 0x0000000000004ccc 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)
  4464. .debug_frame 0x0000000000004cfc 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)
  4465. .debug_frame 0x0000000000004d2c 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)
  4466. .debug_frame 0x0000000000004d4c 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)
  4467. .debug_frame 0x0000000000004d6c 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)
  4468. .debug_frame 0x0000000000004d8c 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)
  4469. .debug_frame 0x0000000000004dac 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)
  4470. .debug_frame 0x0000000000004dcc 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)
  4471. .debug_frame 0x0000000000004e04 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)
  4472. .debug_frame 0x0000000000004e40 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)
  4473. .debug_frame 0x0000000000004e6c 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)
  4474. .debug_frame 0x0000000000004e8c 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)
  4475. .debug_frame 0x0000000000004eac 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)
  4476. .debug_frame 0x0000000000004ecc 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)
  4477. .debug_frame 0x0000000000004eec 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)
  4478. .stab 0x0000000000000000 0x84
  4479. .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)
  4480. .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)
  4481. 0x24 (size before relaxing)
  4482. .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)
  4483. 0x24 (size before relaxing)
  4484. .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)
  4485. 0x24 (size before relaxing)
  4486. .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)
  4487. 0x24 (size before relaxing)
  4488. .stabstr 0x0000000000000000 0x117
  4489. .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)