| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671 |
- Archive member included to satisfy reference by file (symbol)
- d:/mounriver/mounriver_studio2/resources/app/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)
- ./components/tools/tools.o (log)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- ./components/action/ble_action.o (get_gb_token)
- d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (base64_encode)
- d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (set_production_lic_key)
- d:/mounriver/mounriver_studio2/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)
- d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o) (__umoddi3)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/my_math.o (__adddf3)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/my_math.o (__divdf3)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/my_math.o (__muldf3)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/my_math.o (__subdf3)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/_string.o (__addsf3)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/_string.o (__divsf3)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/my_math.o (__ltsf2)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/_string.o (__mulsf3)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/_string.o (__subsf3)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
- ./components/charge/user_adc.o (__fixsfsi)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/my_math.o (__floatsisf)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/_string.o (__floatunsisf)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/tools.o (__extendsfdf2)
- d:/mounriver/mounriver_studio2/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)
- ./components/tools/tools.o (__truncdfsf2)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/ws2812b/user_ws2812b.o (malloc)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/tools/AES_PKCS7.o (memcpy)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/ws2812b/user_ws2812b.o (memset)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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_float)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- (_scanf_float)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/ws2812b/user_ws2812b.o (printf)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/nfc/user_nfc.o (puts)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/tools/_string.o (realloc)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/tools/_string.o (sprintf)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- ./components/action/ble_action.o (sscanf)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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_)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- d:/mounriver/mounriver_studio2/resources/app/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)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- Allocating common symbols
- Common symbol size file
- 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)
- Discarded input sections
- .text 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
- .data 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
- .bss 0x0000000000000000 0x0 ./components/ws2812b/user_ws2812b.o
- .text 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
- .data 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
- .bss 0x0000000000000000 0x0 ./components/ws2812b/ws2812b_spi.o
- .text 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
- .data 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
- .bss 0x0000000000000000 0x0 ./components/tools/AES_PKCS7.o
- .text 0x0000000000000000 0x0 ./components/tools/_string.o
- .data 0x0000000000000000 0x0 ./components/tools/_string.o
- .bss 0x0000000000000000 0x0 ./components/tools/_string.o
- .text.check_number_start
- 0x0000000000000000 0x24 ./components/tools/_string.o
- .text._strcpynum
- 0x0000000000000000 0x1a ./components/tools/_string.o
- .text._strcopy
- 0x0000000000000000 0x1e ./components/tools/_string.o
- .text._strcat 0x0000000000000000 0x4e ./components/tools/_string.o
- .text._strcatint
- 0x0000000000000000 0x64 ./components/tools/_string.o
- .text._strfindnum
- 0x0000000000000000 0x22 ./components/tools/_string.o
- .text._strfind
- 0x0000000000000000 0x1a ./components/tools/_string.o
- .text._strfindchar
- 0x0000000000000000 0x4c ./components/tools/_string.o
- .text._strcount
- 0x0000000000000000 0x24 ./components/tools/_string.o
- .text._strCompare
- 0x0000000000000000 0x22 ./components/tools/_string.o
- .text._get_Hex
- 0x0000000000000000 0x40 ./components/tools/_string.o
- .text._get_HexChar
- 0x0000000000000000 0x22 ./components/tools/_string.o
- .text._HexToStr
- 0x0000000000000000 0x6e ./components/tools/_string.o
- .text.getIndexOfSigns
- 0x0000000000000000 0x42 ./components/tools/_string.o
- .text._get_HexToDec
- 0x0000000000000000 0x38 ./components/tools/_string.o
- .text.check_no_number
- 0x0000000000000000 0x1e ./components/tools/_string.o
- .text.check_is_number
- 0x0000000000000000 0x1e ./components/tools/_string.o
- .text._my_atof
- 0x0000000000000000 0x144 ./components/tools/_string.o
- .text._my_atoi
- 0x0000000000000000 0x76 ./components/tools/_string.o
- .text._my_atou32
- 0x0000000000000000 0x58 ./components/tools/_string.o
- .rodata.CSWTCH.34
- 0x0000000000000000 0xf ./components/tools/_string.o
- .rodata._my_atof.cst4
- 0x0000000000000000 0x4 ./components/tools/_string.o
- .rodata._strcatint.str1.4
- 0x0000000000000000 0x3 ./components/tools/_string.o
- .text 0x0000000000000000 0x0 ./components/tools/my_math.o
- .data 0x0000000000000000 0x0 ./components/tools/my_math.o
- .bss 0x0000000000000000 0x0 ./components/tools/my_math.o
- .text.sqrt_u16
- 0x0000000000000000 0x2c ./components/tools/my_math.o
- .text.sqrt_u32
- 0x0000000000000000 0xa6 ./components/tools/my_math.o
- .text.No_MaxMin_Average_short
- 0x0000000000000000 0x60 ./components/tools/my_math.o
- .text.Average_short
- 0x0000000000000000 0x2e ./components/tools/my_math.o
- .text.Average_float
- 0x0000000000000000 0x54 ./components/tools/my_math.o
- .text.get_MaxMinValue
- 0x0000000000000000 0x40 ./components/tools/my_math.o
- .text.get_MaxFloatArray
- 0x0000000000000000 0x56 ./components/tools/my_math.o
- .text.get_float_Variance_Sum
- 0x0000000000000000 0x96 ./components/tools/my_math.o
- .text.get_float_abs
- 0x0000000000000000 0x32 ./components/tools/my_math.o
- .text.simpson 0x0000000000000000 0xd6 ./components/tools/my_math.o
- .text.Integral
- 0x0000000000000000 0xbe ./components/tools/my_math.o
- .text.get_int_Variance_Sum
- 0x0000000000000000 0x3a ./components/tools/my_math.o
- .text.get_ushort_Variance_Sum
- 0x0000000000000000 0x3a ./components/tools/my_math.o
- .text.Base62_convertToDec
- 0x0000000000000000 0x42 ./components/tools/my_math.o
- .text.Base62_convertFromDec
- 0x0000000000000000 0x30 ./components/tools/my_math.o
- .rodata.Average_float.cst4
- 0x0000000000000000 0x4 ./components/tools/my_math.o
- .rodata.simpson.cst8
- 0x0000000000000000 0x18 ./components/tools/my_math.o
- .debug_info 0x0000000000000000 0x10ac ./components/tools/my_math.o
- .debug_abbrev 0x0000000000000000 0x324 ./components/tools/my_math.o
- .debug_loc 0x0000000000000000 0xda0 ./components/tools/my_math.o
- .debug_aranges
- 0x0000000000000000 0x90 ./components/tools/my_math.o
- .debug_ranges 0x0000000000000000 0x1b8 ./components/tools/my_math.o
- .debug_line 0x0000000000000000 0x11d1 ./components/tools/my_math.o
- .debug_str 0x0000000000000000 0x7c8 ./components/tools/my_math.o
- .comment 0x0000000000000000 0x34 ./components/tools/my_math.o
- .debug_frame 0x0000000000000000 0x1d8 ./components/tools/my_math.o
- .text 0x0000000000000000 0x0 ./components/tools/tools.o
- .data 0x0000000000000000 0x0 ./components/tools/tools.o
- .bss 0x0000000000000000 0x0 ./components/tools/tools.o
- .text.ntc_data
- 0x0000000000000000 0x100 ./components/tools/tools.o
- .text.xor_data
- 0x0000000000000000 0x18 ./components/tools/tools.o
- .rodata.ntc_data.cst4
- 0x0000000000000000 0x4 ./components/tools/tools.o
- .rodata.ntc_data.cst8
- 0x0000000000000000 0x38 ./components/tools/tools.o
- .text 0x0000000000000000 0x0 ./components/tools/user_crc16.o
- .data 0x0000000000000000 0x0 ./components/tools/user_crc16.o
- .bss 0x0000000000000000 0x0 ./components/tools/user_crc16.o
- .text.GetCRC16
- 0x0000000000000000 0x44 ./components/tools/user_crc16.o
- .data.auchCRCHi
- 0x0000000000000000 0x100 ./components/tools/user_crc16.o
- .data.auchCRCLo
- 0x0000000000000000 0x100 ./components/tools/user_crc16.o
- .debug_info 0x0000000000000000 0xa90 ./components/tools/user_crc16.o
- .debug_abbrev 0x0000000000000000 0x21b ./components/tools/user_crc16.o
- .debug_loc 0x0000000000000000 0xbb ./components/tools/user_crc16.o
- .debug_aranges
- 0x0000000000000000 0x20 ./components/tools/user_crc16.o
- .debug_ranges 0x0000000000000000 0x10 ./components/tools/user_crc16.o
- .debug_line 0x0000000000000000 0x4f5 ./components/tools/user_crc16.o
- .debug_str 0x0000000000000000 0x682 ./components/tools/user_crc16.o
- .comment 0x0000000000000000 0x34 ./components/tools/user_crc16.o
- .debug_frame 0x0000000000000000 0x20 ./components/tools/user_crc16.o
- .text 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
- .data 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
- .bss 0x0000000000000000 0x0 ./components/nfc/fm175xx.o
- .text.GetReg 0x0000000000000000 0x18 ./components/nfc/fm175xx.o
- .text.Read_Reg_All
- 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
- .text.Read_Ext_Reg
- 0x0000000000000000 0x20 ./components/nfc/fm175xx.o
- .text.ModifyReg_Ext
- 0x0000000000000000 0x38 ./components/nfc/fm175xx.o
- .text.Get_FIFODataLenth
- 0x0000000000000000 0x58 ./components/nfc/fm175xx.o
- .text.FM175X_SoftPowerdown
- 0x0000000000000000 0x34 ./components/nfc/fm175xx.o
- .text.FM175XX_Initial
- 0x0000000000000000 0xe ./components/nfc/fm175xx.o
- .text 0x0000000000000000 0x0 ./components/nfc/lpcd.o
- .data 0x0000000000000000 0x0 ./components/nfc/lpcd.o
- .bss 0x0000000000000000 0x0 ./components/nfc/lpcd.o
- .text.Lpcd_Reset_Status
- 0x0000000000000000 0x26 ./components/nfc/lpcd.o
- .text.Lpcd_Set_Timer
- 0x0000000000000000 0x68 ./components/nfc/lpcd.o
- .text.Lpcd_Set_Gain
- 0x0000000000000000 0x1a ./components/nfc/lpcd.o
- .text.Lpcd_Set_Threshold
- 0x0000000000000000 0x58 ./components/nfc/lpcd.o
- .text.Lpcd_Set_Driver
- 0x0000000000000000 0x94 ./components/nfc/lpcd.o
- .text.Lpcd_Set_Reference
- 0x0000000000000000 0x38 ./components/nfc/lpcd.o
- .text.Lpcd_WaitFor_Irq
- 0x0000000000000000 0x46 ./components/nfc/lpcd.o
- .text.Lpcd_Get_Value
- 0x0000000000000000 0x34 ./components/nfc/lpcd.o
- .text.Lpcd_Get_Calibration_Value
- 0x0000000000000000 0x72 ./components/nfc/lpcd.o
- .text.Lpcd_Calibrate_Reference
- 0x0000000000000000 0x94 ./components/nfc/lpcd.o
- .text.Lpcd_Calibrate_Driver
- 0x0000000000000000 0x152 ./components/nfc/lpcd.o
- .text.Lpcd_Calibration_Restore
- 0x0000000000000000 0x16 ./components/nfc/lpcd.o
- .text.Lpcd_Calibration_Backup
- 0x0000000000000000 0x16 ./components/nfc/lpcd.o
- .text.Lpcd_Get_IRQ
- 0x0000000000000000 0x3e ./components/nfc/lpcd.o
- .text.Lpcd_Set_IE
- 0x0000000000000000 0x22 ./components/nfc/lpcd.o
- .text.Lpcd_Set_Mode
- 0x0000000000000000 0x110 ./components/nfc/lpcd.o
- .text.Lpcd_Set_Aux
- 0x0000000000000000 0xd0 ./components/nfc/lpcd.o
- .text.Lpcd_Calibration_Event
- 0x0000000000000000 0x4c ./components/nfc/lpcd.o
- .text.Lpcd_IRQ_Event
- 0x0000000000000000 0x4e ./components/nfc/lpcd.o
- .bss.Lpcd 0x0000000000000000 0x14 ./components/nfc/lpcd.o
- .rodata.LPCD_GAIN
- 0x0000000000000000 0xb ./components/nfc/lpcd.o
- .sdata2.LPCD_N_DRIVER
- 0x0000000000000000 0x7 ./components/nfc/lpcd.o
- .sdata2.LPCD_P_DRIVER
- 0x0000000000000000 0x7 ./components/nfc/lpcd.o
- .text 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
- .data 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
- .bss 0x0000000000000000 0x0 ./components/nfc/mifare_card.o
- .text.Mifare_Auth
- 0x0000000000000000 0x94 ./components/nfc/mifare_card.o
- .text.Mifare_Blockread
- 0x0000000000000000 0x4e ./components/nfc/mifare_card.o
- .text.Mifare_Blockwrite
- 0x0000000000000000 0x80 ./components/nfc/mifare_card.o
- .text.Mifare_Blockset
- 0x0000000000000000 0x5a ./components/nfc/mifare_card.o
- .text.Mifare_Blockinc
- 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
- .text.Mifare_Blockdec
- 0x0000000000000000 0x7a ./components/nfc/mifare_card.o
- .text.Mifare_Transfer
- 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
- .text.Mifare_Restore
- 0x0000000000000000 0x76 ./components/nfc/mifare_card.o
- .debug_info 0x0000000000000000 0x1111 ./components/nfc/mifare_card.o
- .debug_abbrev 0x0000000000000000 0x25d ./components/nfc/mifare_card.o
- .debug_loc 0x0000000000000000 0x30e ./components/nfc/mifare_card.o
- .debug_aranges
- 0x0000000000000000 0x58 ./components/nfc/mifare_card.o
- .debug_ranges 0x0000000000000000 0x48 ./components/nfc/mifare_card.o
- .debug_line 0x0000000000000000 0xc17 ./components/nfc/mifare_card.o
- .debug_str 0x0000000000000000 0x73e ./components/nfc/mifare_card.o
- .comment 0x0000000000000000 0x34 ./components/nfc/mifare_card.o
- .debug_frame 0x0000000000000000 0x120 ./components/nfc/mifare_card.o
- .text 0x0000000000000000 0x0 ./components/nfc/type_a.o
- .data 0x0000000000000000 0x0 ./components/nfc/type_a.o
- .bss 0x0000000000000000 0x0 ./components/nfc/type_a.o
- .text.TypeA_Save_UID
- 0x0000000000000000 0x92 ./components/nfc/type_a.o
- .rodata.TypeA_Save_UID
- 0x0000000000000000 0x20 ./components/nfc/type_a.o
- .text.TypeA_WakeUp
- 0x0000000000000000 0x8c ./components/nfc/type_a.o
- .text 0x0000000000000000 0x0 ./components/nfc/type_b.o
- .data 0x0000000000000000 0x0 ./components/nfc/type_b.o
- .bss 0x0000000000000000 0x0 ./components/nfc/type_b.o
- .text.TypeB_Halt
- 0x0000000000000000 0x3e ./components/nfc/type_b.o
- .text.TypeB_WUP
- 0x0000000000000000 0x5a ./components/nfc/type_b.o
- .text.TypeB_Request
- 0x0000000000000000 0x56 ./components/nfc/type_b.o
- .text.TypeB_Select
- 0x0000000000000000 0x4e ./components/nfc/type_b.o
- .text.TypeB_GetUID
- 0x0000000000000000 0x38 ./components/nfc/type_b.o
- .debug_info 0x0000000000000000 0xe16 ./components/nfc/type_b.o
- .debug_abbrev 0x0000000000000000 0x274 ./components/nfc/type_b.o
- .debug_loc 0x0000000000000000 0x230 ./components/nfc/type_b.o
- .debug_aranges
- 0x0000000000000000 0x40 ./components/nfc/type_b.o
- .debug_ranges 0x0000000000000000 0x30 ./components/nfc/type_b.o
- .debug_line 0x0000000000000000 0x7a5 ./components/nfc/type_b.o
- .debug_str 0x0000000000000000 0x6ce ./components/nfc/type_b.o
- .comment 0x0000000000000000 0x34 ./components/nfc/type_b.o
- .debug_frame 0x0000000000000000 0xb4 ./components/nfc/type_b.o
- .text 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
- .data 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
- .bss 0x0000000000000000 0x0 ./components/nfc/user_nfc.o
- .text.NFC_HardReset
- 0x0000000000000000 0x6c ./components/nfc/user_nfc.o
- .text.NFC_HardPowerdown
- 0x0000000000000000 0x2c ./components/nfc/user_nfc.o
- .text.SetBitMask
- 0x0000000000000000 0x2a ./components/nfc/user_nfc.o
- .text.ClearBitMask
- 0x0000000000000000 0x2e ./components/nfc/user_nfc.o
- .text 0x0000000000000000 0x0 ./components/nfc/user_spi.o
- .data 0x0000000000000000 0x0 ./components/nfc/user_spi.o
- .bss 0x0000000000000000 0x0 ./components/nfc/user_spi.o
- .text 0x0000000000000000 0x0 ./components/led/user_led.o
- .data 0x0000000000000000 0x0 ./components/led/user_led.o
- .bss 0x0000000000000000 0x0 ./components/led/user_led.o
- .text 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
- .data 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
- .bss 0x0000000000000000 0x0 ./components/electlock/elect_sw.o
- .text 0x0000000000000000 0x0 ./components/electlock/user_elect.o
- .data 0x0000000000000000 0x0 ./components/electlock/user_elect.o
- .bss 0x0000000000000000 0x0 ./components/electlock/user_elect.o
- .text 0x0000000000000000 0x0 ./components/config/user_config.o
- .data 0x0000000000000000 0x0 ./components/config/user_config.o
- .bss 0x0000000000000000 0x0 ./components/config/user_config.o
- .text 0x0000000000000000 0x0 ./components/charge/user_adc.o
- .data 0x0000000000000000 0x0 ./components/charge/user_adc.o
- .bss 0x0000000000000000 0x0 ./components/charge/user_adc.o
- .sdata2.Bx 0x0000000000000000 0x4 ./components/charge/user_adc.o
- .sdata2.Ka 0x0000000000000000 0x4 ./components/charge/user_adc.o
- .sdata2.Rp 0x0000000000000000 0x4 ./components/charge/user_adc.o
- .sdata2.T2 0x0000000000000000 0x4 ./components/charge/user_adc.o
- .text 0x0000000000000000 0x0 ./components/charge/user_charge.o
- .data 0x0000000000000000 0x0 ./components/charge/user_charge.o
- .bss 0x0000000000000000 0x0 ./components/charge/user_charge.o
- .text 0x0000000000000000 0x0 ./components/charge/user_fan.o
- .data 0x0000000000000000 0x0 ./components/charge/user_fan.o
- .bss 0x0000000000000000 0x0 ./components/charge/user_fan.o
- .text 0x0000000000000000 0x0 ./components/can/dip_sw.o
- .data 0x0000000000000000 0x0 ./components/can/dip_sw.o
- .bss 0x0000000000000000 0x0 ./components/can/dip_sw.o
- .text 0x0000000000000000 0x0 ./components/can/user_can.o
- .data 0x0000000000000000 0x0 ./components/can/user_can.o
- .bss 0x0000000000000000 0x0 ./components/can/user_can.o
- .text 0x0000000000000000 0x0 ./components/action/ble_action.o
- .data 0x0000000000000000 0x0 ./components/action/ble_action.o
- .bss 0x0000000000000000 0x0 ./components/action/ble_action.o
- .text.get_unixTime
- 0x0000000000000000 0xa ./components/action/ble_action.o
- .text.set_unixTime
- 0x0000000000000000 0xa ./components/action/ble_action.o
- .text 0x0000000000000000 0x0 ./components/action/user_sever.o
- .data 0x0000000000000000 0x0 ./components/action/user_sever.o
- .bss 0x0000000000000000 0x0 ./components/action/user_sever.o
- .text 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
- .data 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
- .bss 0x0000000000000000 0x0 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_length
- 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_init
- 0x0000000000000000 0x22 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_push
- 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_pop
- 0x0000000000000000 0x16 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_flush
- 0x0000000000000000 0x6 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_is_empty
- 0x0000000000000000 0xe ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_is_full
- 0x0000000000000000 0x14 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_write
- 0x0000000000000000 0x62 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_write_from_same_addr
- 0x0000000000000000 0x52 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_read
- 0x0000000000000000 0x54 ./User/app_drv_fifo/app_drv_fifo.o
- .text.app_drv_fifo_read_to_same_addr
- 0x0000000000000000 0x3e ./User/app_drv_fifo/app_drv_fifo.o
- .debug_info 0x0000000000000000 0x5db ./User/app_drv_fifo/app_drv_fifo.o
- .debug_abbrev 0x0000000000000000 0x1a8 ./User/app_drv_fifo/app_drv_fifo.o
- .debug_loc 0x0000000000000000 0x3a4 ./User/app_drv_fifo/app_drv_fifo.o
- .debug_aranges
- 0x0000000000000000 0x70 ./User/app_drv_fifo/app_drv_fifo.o
- .debug_ranges 0x0000000000000000 0xa8 ./User/app_drv_fifo/app_drv_fifo.o
- .debug_line 0x0000000000000000 0x8ac ./User/app_drv_fifo/app_drv_fifo.o
- .debug_str 0x0000000000000000 0x476 ./User/app_drv_fifo/app_drv_fifo.o
- .comment 0x0000000000000000 0x34 ./User/app_drv_fifo/app_drv_fifo.o
- .debug_frame 0x0000000000000000 0xc0 ./User/app_drv_fifo/app_drv_fifo.o
- .text 0x0000000000000000 0x0 ./User/app_main.o
- .data 0x0000000000000000 0x0 ./User/app_main.o
- .bss 0x0000000000000000 0x0 ./User/app_main.o
- .text 0x0000000000000000 0x0 ./User/ch32v20x_it.o
- .data 0x0000000000000000 0x0 ./User/ch32v20x_it.o
- .bss 0x0000000000000000 0x0 ./User/ch32v20x_it.o
- .text 0x0000000000000000 0x0 ./User/peripheral.o
- .data 0x0000000000000000 0x0 ./User/peripheral.o
- .bss 0x0000000000000000 0x0 ./User/peripheral.o
- .text 0x0000000000000000 0x0 ./User/system_ch32v20x.o
- .data 0x0000000000000000 0x0 ./User/system_ch32v20x.o
- .bss 0x0000000000000000 0x0 ./User/system_ch32v20x.o
- .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
- .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
- .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_StructInit
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ITConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetSoftwareStartConvStatus
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_DiscModeChannelCountConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_DiscModeCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ExternalTrigConvCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetDualModeConversionValue
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AutoInjectedConvCmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_InjectedDiscModeCmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ExternalTrigInjectedConvConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ExternalTrigInjectedConvCmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_SoftwareStartInjectedConvCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetSoftwareStartInjectedConvCmdStatus
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_InjectedChannelConfig
- 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_InjectedSequencerLengthConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_SetInjectedOffset
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetInjectedConversionValue
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AnalogWatchdogCmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AnalogWatchdogThresholdsConfig
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AnalogWatchdogSingleChannelConfig
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ClearFlag
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetITStatus
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ClearITPendingBit
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.TempSensor_Volt_To_Temper
- 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_DeInit
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_TamperPinLevelConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_TamperPinCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ITConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_RTCOutputConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_SetRTCCalibrationValue
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_WriteBackupRegister
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ReadBackupRegister
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_GetFlagStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ClearFlag
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_GetITStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ClearITPendingBit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_aranges
- 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_line 0x0000000000000000 0x7e3 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_str 0x0000000000000000 0xb33 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_DeInit
- 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_StructInit
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_SlaveStartBank
- 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_DBGFreeze
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_TTComModeCmd
- 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_CancelTransmit
- 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_FIFORelease
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_MessagePending
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_OperatingModeRequest
- 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_Sleep
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_WakeUp
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetLastErrorCode
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetReceiveErrorCounter
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetLSBTransmitErrorCounter
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetFlagStatus
- 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_ClearFlag
- 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_ResetDR
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_CalcCRC
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_CalcBlockCRC
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_GetCRC
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_SetIDRegister
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_GetIDRegister
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_aranges
- 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_line 0x0000000000000000 0x4db ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_str 0x0000000000000000 0x709 ./SRC/Peripheral/src/ch32v20x_crc.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.DBGMCU_GetREVID
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.DBGMCU_GetDEVID
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.__get_DEBUG_CR
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.__set_DEBUG_CR
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.DBGMCU_Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_StructInit
- 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_GetCurrDataCounter
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_ClearFlag
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_DeInit
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_Init
- 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_StructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_GenerateSWInterrupt
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_GetFlagStatus
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_ClearFlag
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_GetITStatus
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.ROM_ERASE
- 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_Unlock
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_UnlockBank1
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_Lock
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_LockBank1
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetUserOptionByte
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetWriteProtectionOptionByte
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetReadOutProtectionStatus
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ITConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetFlagStatus
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ClearFlag
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetStatus
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetBank1Status
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_WaitForLastOperation
- 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ErasePage
- 0x0000000000000000 0x4e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseAllPages
- 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseAllBank1Pages
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseOptionBytes
- 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ProgramWord
- 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ProgramHalfWord
- 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ProgramOptionByteData
- 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EnableWriteProtection
- 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ReadOutProtection
- 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_UserOptionByteConfig
- 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_WaitForLastBank1Operation
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseBlock_32K_Fast
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_Access_Clock_Cfg
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_Enhance_Mode
- 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ROM_ERASE
- 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ROM_WRITE
- 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_DeInit
- 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_AFIODeInit
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_StructInit
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ReadInputData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ReadOutputDataBit
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ReadOutputData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_SetBits
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ResetBits
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_Write
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_PinLockConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_EventOutputConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_EventOutputCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_EXTILineConfig
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ETH_MediaInterfaceConfig
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_IPD_Unused
- 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DeInit
- 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_Init
- 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_StructInit
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DMACmd
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DMALastTransferCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GenerateSTART
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GenerateSTOP
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_AcknowledgeConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_OwnAddress2Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DualAddressCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GeneralCallCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ITConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_SendData
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ReceiveData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_Send7bitAddress
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ReadRegister
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_SoftwareResetCmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_NACKPositionConfig
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_SMBusAlertConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_TransmitPEC
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_PECPositionConfig
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_CalculatePEC
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetPEC
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ARPCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_StretchClockCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_FastModeDutyCycleConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_CheckEvent
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetLastEvent
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetFlagStatus
- 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetITStatus
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ClearITPendingBit
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_aranges
- 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_line 0x0000000000000000 0x12c4 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_str 0x0000000000000000 0xb6e ./SRC/Peripheral/src/ch32v20x_i2c.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text.IWDG_WriteAccessCmd
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text.IWDG_SetPrescaler
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text.IWDG_SetReload
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text.IWDG_Enable
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text.IWDG_GetFlagStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
- .text.NVIC_PriorityGroupConfig
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_DeInit
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_Init
- 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_StructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_aranges
- 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_line 0x0000000000000000 0x59d ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_str 0x0000000000000000 0x749 ./SRC/Peripheral/src/ch32v20x_opa.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_DeInit
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_PVDCmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_PVDLevelConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_WakeUpPinCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTOPMode
- 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode
- 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_GetFlagStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_ClearFlag
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM_LV
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTOPMode_RAM_LV
- 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_DeInit
- 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_HSEConfig
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_AdjustHSICalibrationValue
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_HSICmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PLLConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PLLCmd
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_SYSCLKConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_GetSYSCLKSource
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_HCLKConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PCLK1Config
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PCLK2Config
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ITConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_USBCLKConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_LSICmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_APB1PeriphResetCmd
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_BackupResetCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ClockSecuritySystemCmd
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_MCOConfig
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_WaitForHSEStartUp
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ClearFlag
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_GetITStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ClearITPendingBit
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ADCCLKADJcmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ETHDIVConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_USB5PRE_JUDGE
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_ITConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_SetAlarm
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_GetDivider
- 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_WaitForSynchro
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_GetFlagStatus
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_GetITStatus
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.Calibration_LSI
- 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_DeInit
- 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.I2S_Init
- 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_StructInit
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.I2S_StructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_ITConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_NSSInternalSoftwareConfig
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_SSOutputCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_DataSizeConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_TransmitCRC
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_GetCRC
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_GetCRCPolynomial
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_BiDirectionalLineConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_GetITStatus
- 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_ClearITPendingBit
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TI1_Config
- 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TI2_Config
- 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_DeInit
- 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3Init
- 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4Init
- 0x0000000000000000 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_TimeBaseStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OCStructInit
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ICStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_BDTRStructInit
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CtrlPWMOutputs
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ITConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GenerateEvent
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_DMAConfig
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_DMACmd
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_InternalClockConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ITRxExternalClockConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_TIxExternalClockConfig
- 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ETRConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ETRClockMode1Config
- 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ETRClockMode2Config
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_PrescalerConfig
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CounterModeConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectInputTrigger
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_EncoderInterfaceConfig
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC1Config
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC2Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC3Config
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC4Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ARRPreloadConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectCOM
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectCCDMA
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CCPreloadControl
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3PreloadConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4PreloadConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1FastConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3FastConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC1Ref
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC2Ref
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC3Ref
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC4Ref
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1PolarityConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1NPolarityConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2PolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2NPolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3PolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3NPolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4PolarityConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CCxCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CCxNCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectOCxM
- 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_UpdateDisableConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_UpdateRequestConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectHallSensor
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectOnePulseMode
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectOutputTrigger
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectSlaveMode
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectMasterSlaveMode
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCounter
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetAutoreload
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCompare3
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCompare4
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC1Prescaler
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC2Prescaler
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_PWMIConfig
- 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC3Prescaler
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC4Prescaler
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ICInit
- 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetClockDivision
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture1
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture2
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture3
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture4
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCounter
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetPrescaler
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetFlagStatus
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetITStatus
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearITPendingBit
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TI1_Config
- 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TI2_Config
- 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_DeInit
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_TimeBaseInit
- 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1Init
- 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2Init
- 0x0000000000000000 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3Init
- 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4Init
- 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_BDTRConfig
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_TimeBaseStructInit
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OCStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ICStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_BDTRStructInit
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_Cmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CtrlPWMOutputs
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ITConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GenerateEvent
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_DMAConfig
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_DMACmd
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_InternalClockConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ITRxExternalClockConfig
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_TIxExternalClockConfig
- 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ETRClockMode1Config
- 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ETRClockMode2Config
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ETRConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_PrescalerConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CounterModeConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectInputTrigger
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_EncoderInterfaceConfig
- 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC1Config
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC2Config
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC3Config
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC4Config
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ARRPreloadConfig
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectCOM
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectCCDMA
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CCPreloadControl
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1PreloadConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2PreloadConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3PreloadConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4PreloadConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2FastConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4FastConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC1Ref
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC2Ref
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC3Ref
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC4Ref
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1PolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1NPolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2PolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2NPolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3PolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3NPolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4PolarityConfig
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CCxCmd
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CCxNCmd
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectOCxM
- 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_UpdateDisableConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_UpdateRequestConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectHallSensor
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectOnePulseMode
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectOutputTrigger
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectSlaveMode
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectMasterSlaveMode
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCounter
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetAutoreload
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCompare1
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCompare2
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCompare3
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCompare4
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC1Prescaler
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC2Prescaler
- 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_PWMIConfig
- 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC3Prescaler
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC4Prescaler
- 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ICInit
- 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetClockDivision
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture1
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture2
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture3
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture4
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCounter
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetPrescaler
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetFlagStatus
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearFlag
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetITStatus
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearITPendingBit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_info 0x0000000000000000 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_abbrev 0x0000000000000000 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_loc 0x0000000000000000 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_aranges
- 0x0000000000000000 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_ranges 0x0000000000000000 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_line 0x0000000000000000 0x2c8a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_str 0x0000000000000000 0x13ac ./SRC/Peripheral/src/ch32v20x_tim5.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_frame 0x0000000000000000 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_DeInit
- 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_StructInit
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClockInit
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClockStructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ITConfig
- 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_DMACmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SetAddress
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_WakeUpConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ReceiverWakeUpCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_LINBreakDetectLengthConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_LINCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ReceiveData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SendBreak
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SetGuardTime
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SetPrescaler
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SmartCardCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SmartCardNACKCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_HalfDuplexCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_IrDAConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_IrDACmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_GetITStatus
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClearITPendingBit
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_DeInit
- 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_SetPrescaler
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_SetWindowValue
- 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_EnableIT
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_SetCounter
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_Enable
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_GetFlagStatus
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_ClearFlag
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_aranges
- 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_line 0x0000000000000000 0x612 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_str 0x0000000000000000 0x740 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
- .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
- .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
- .text.SDI_Printf_Enable
- 0x0000000000000000 0x22 ./SRC/Debug/debug.o
- .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
- .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
- .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
- .text.__get_MSTATUS
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MSTATUS
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MISA
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MISA
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MTVEC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MTVEC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MSCRATCH
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MSCRATCH
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MEPC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MEPC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MCAUSE
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MCAUSE
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MTVAL
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MTVAL
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MVENDORID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MARCHID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MIMPID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MHARTID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_SP
- 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
- .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
- .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
- .debug_aranges
- 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
- .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
- .debug_line 0x0000000000000000 0x4f3 ./SRC/Core/core_riscv.o
- .debug_str 0x0000000000000000 0x32a ./SRC/Core/core_riscv.o
- .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
- .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
- .text 0x0000000000000000 0x0 ./Profile/devinfoservice.o
- .data 0x0000000000000000 0x0 ./Profile/devinfoservice.o
- .bss 0x0000000000000000 0x0 ./Profile/devinfoservice.o
- .text.DevInfo_SetParameter
- 0x0000000000000000 0x28 ./Profile/devinfoservice.o
- .text.DevInfo_GetParameter
- 0x0000000000000000 0xce ./Profile/devinfoservice.o
- .rodata.DevInfo_GetParameter
- 0x0000000000000000 0x24 ./Profile/devinfoservice.o
- .text 0x0000000000000000 0x0 ./Profile/gattprofile.o
- .data 0x0000000000000000 0x0 ./Profile/gattprofile.o
- .bss 0x0000000000000000 0x0 ./Profile/gattprofile.o
- .text.SimpleProfile_GetParameter
- 0x0000000000000000 0x78 ./Profile/gattprofile.o
- .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
- .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
- .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
- .text 0x0000000000000000 0x0 ./HAL/MCU.o
- .data 0x0000000000000000 0x0 ./HAL/MCU.o
- .bss 0x0000000000000000 0x0 ./HAL/MCU.o
- .text.Lib_Calibration_LSI
- 0x0000000000000000 0xa ./HAL/MCU.o
- .text 0x0000000000000000 0x0 ./HAL/RTC.o
- .data 0x0000000000000000 0x0 ./HAL/RTC.o
- .bss 0x0000000000000000 0x0 ./HAL/RTC.o
- .text.RTC_SetTignTime
- 0x0000000000000000 0x2e ./HAL/RTC.o
- .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
- .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
- .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
- .text.BLE_LowPower
- 0x0000000000000000 0x4 ./HAL/SLEEP.o
- .text.HAL_SleepInit
- 0x0000000000000000 0x2 ./HAL/SLEEP.o
- .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
- .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
- .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
- .debug_aranges
- 0x0000000000000000 0x28 ./HAL/SLEEP.o
- .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
- .debug_line 0x0000000000000000 0x3fb ./HAL/SLEEP.o
- .debug_str 0x0000000000000000 0x685 ./HAL/SLEEP.o
- .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
- .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .data 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .bss 0x0000000000000000 0x0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text.__floatunsisf
- 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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._printf_r
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._sprintf_r
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._sscanf_r
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text.strtod_l
- 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)
- .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)
- .text.strtof_l
- 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)
- .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)
- .rodata.strtof_l.cst4
- 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)
- .rodata.strtof_l.cst8
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text.strtol_l
- 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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text.__fp_lock
- 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)
- .text.__fp_unlock
- 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)
- .text._cleanup
- 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)
- .text.__sfp_lock_acquire
- 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)
- .text.__sfp_lock_release
- 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)
- .text.__sinit_lock_acquire
- 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)
- .text.__sinit_lock_release
- 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)
- .text.__fp_lock_all
- 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)
- .text.__fp_unlock_all
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._setlocale_r
- 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)
- .text.__locale_mb_cur_max
- 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)
- .text.setlocale
- 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)
- .sbss._PathLocale
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text.localeconv
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._mbtowc_r
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._mprec_log10
- 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)
- .rodata.__mprec_tinytens
- 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)
- .rodata._mprec_log10.cst8
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text.__ssprint_r
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text.__sprint_r
- 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)
- .text.vfprintf
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text.cleanup_glue
- 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)
- .text._reclaim_reent
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text.strtoul_l
- 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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._ungetc_r
- 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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text._wctomb_r
- 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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text.__sfvwrite_r
- 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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text.__unordsf2
- 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)
- .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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
- Memory Configuration
- Name Origin Length Attributes
- FLASH 0x0000000000005000 0x000000000003b000 xr
- RAM 0x0000000020004000 0x000000000000c000 xrw
- *default* 0x0000000000000000 0xffffffffffffffff
- Linker script and memory map
- LOAD ./components/ws2812b/user_ws2812b.o
- LOAD ./components/ws2812b/ws2812b_spi.o
- LOAD ./components/tools/AES_PKCS7.o
- LOAD ./components/tools/_string.o
- LOAD ./components/tools/my_math.o
- LOAD ./components/tools/tools.o
- LOAD ./components/tools/user_crc16.o
- LOAD ./components/nfc/fm175xx.o
- LOAD ./components/nfc/lpcd.o
- LOAD ./components/nfc/mifare_card.o
- LOAD ./components/nfc/type_a.o
- LOAD ./components/nfc/type_b.o
- LOAD ./components/nfc/user_nfc.o
- LOAD ./components/nfc/user_spi.o
- LOAD ./components/led/user_led.o
- LOAD ./components/electlock/elect_sw.o
- LOAD ./components/electlock/user_elect.o
- LOAD ./components/config/user_config.o
- LOAD ./components/charge/user_adc.o
- LOAD ./components/charge/user_charge.o
- LOAD ./components/charge/user_fan.o
- LOAD ./components/can/dip_sw.o
- LOAD ./components/can/user_can.o
- LOAD ./components/action/ble_action.o
- LOAD ./components/action/user_sever.o
- LOAD ./User/app_drv_fifo/app_drv_fifo.o
- LOAD ./User/app_main.o
- LOAD ./User/ch32v20x_it.o
- LOAD ./User/peripheral.o
- LOAD ./User/system_ch32v20x.o
- LOAD ./Startup/startup_ch32v20x_D8W.o
- LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
- LOAD ./SRC/Peripheral/src/ch32v20x_can.o
- LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
- LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
- LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
- LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
- LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
- LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
- LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
- LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
- LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
- LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
- LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
- LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
- LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
- LOAD ./SRC/Debug/debug.o
- LOAD ./SRC/Core/core_riscv.o
- LOAD ./Profile/devinfoservice.o
- LOAD ./Profile/gattprofile.o
- LOAD ./LIB/ble_task_scheduler.o
- LOAD ./HAL/MCU.o
- LOAD ./HAL/RTC.o
- LOAD ./HAL/SLEEP.o
- 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
- LOAD d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a
- 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
- 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
- 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
- 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
- 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
- START GROUP
- 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
- 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
- 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
- END GROUP
- START GROUP
- 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
- 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
- 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
- END GROUP
- 0x0000000000000800 __stack_size = 0x800
- [!provide] PROVIDE (_stack_size = __stack_size)
- 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
- .init 0x0000000000005000 0x3c
- 0x0000000000005000 _sinit = .
- 0x0000000000005000 . = ALIGN (0x4)
- *(SORT_NONE(.init))
- .init 0x0000000000005000 0x38 ./Startup/startup_ch32v20x_D8W.o
- 0x0000000000005000 _start
- *(.ImageFlag)
- .ImageFlag 0x0000000000005038 0x4 ./User/app_main.o
- 0x0000000000005038 Image_Flag
- *(.ImageFlag.*)
- 0x000000000000503c . = ALIGN (0x4)
- 0x000000000000503c _einit = .
- .vector 0x000000000000503c 0x144
- *(.vector)
- .vector 0x000000000000503c 0x118 ./Startup/startup_ch32v20x_D8W.o
- 0x0000000000005180 . = ALIGN (0x40)
- *fill* 0x0000000000005154 0x2c
- *(SORT_NONE(.handle_reset))
- .highcode 0x0000000000005180 0xec
- 0x0000000000005180 . = ALIGN (0x4)
- *(.highcode)
- .highcode 0x0000000000005180 0x14 ./User/app_main.o
- 0x0000000000005180 Main_Circulation
- .highcode 0x0000000000005194 0x4e ./LIB/ble_task_scheduler.o
- 0x0000000000005194 Ecall_U_Mode_Handler
- 0x0000000000005194 Ecall_M_Mode_Handler
- *(.highcode.*)
- *fill* 0x00000000000051e2 0x2
- .highcode.LLE_IRQHandler
- 0x00000000000051e4 0x86 ./LIB/ble_task_scheduler.o
- 0x00000000000051e4 LLE_IRQHandler
- 0x000000000000526c . = ALIGN (0x4)
- *fill* 0x000000000000526a 0x2
- .text 0x0000000000005270 0x10f80
- 0x0000000000005270 . = ALIGN (0x4)
- *(.text)
- .text 0x0000000000005270 0x210 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- 0x0000000000005270 get_gb_token
- 0x00000000000052a6 wch_base64_decode
- 0x00000000000052a8 wch_base64_encode
- 0x00000000000052aa Wch_AES_get_length
- 0x00000000000052ae device_encrypt
- 0x000000000000530e device_decrypt
- 0x00000000000053d6 production_lic_set
- 0x000000000000540c check_lic_stat
- .text 0x0000000000005480 0x26c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- 0x0000000000005480 base64_encode
- 0x00000000000055ce base64_decode
- .text 0x00000000000056ec 0x4b8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- 0x00000000000056ec set_production_lic_key
- 0x00000000000059a4 get_AesKey
- .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)
- 0x0000000000005ba4 memset
- *(.text.*)
- .text.vUser_ws2812b_set_wrByte
- 0x0000000000005c4c 0x28 ./components/ws2812b/user_ws2812b.o
- .text.user_ws2812b_task_process_event
- 0x0000000000005c74 0xe0 ./components/ws2812b/user_ws2812b.o
- .text.vUser_ws2812b_task_start
- 0x0000000000005d54 0x12 ./components/ws2812b/user_ws2812b.o
- 0x0000000000005d54 vUser_ws2812b_task_start
- .text.vUser_ws2812b_init
- 0x0000000000005d66 0x9a ./components/ws2812b/user_ws2812b.o
- 0x0000000000005d66 vUser_ws2812b_init
- .text.vUser_ws2812b_set_tx_stat
- 0x0000000000005e00 0x6 ./components/ws2812b/user_ws2812b.o
- 0x0000000000005e00 vUser_ws2812b_set_tx_stat
- .text.vUser_ws2812b_set_stat
- 0x0000000000005e06 0x1c ./components/ws2812b/user_ws2812b.o
- 0x0000000000005e06 vUser_ws2812b_set_stat
- .text.Ws2812b_spi_dma_init
- 0x0000000000005e22 0x7a ./components/ws2812b/ws2812b_spi.o
- 0x0000000000005e22 Ws2812b_spi_dma_init
- .text.ws2812b_spi_Init
- 0x0000000000005e9c 0x8c ./components/ws2812b/ws2812b_spi.o
- 0x0000000000005e9c ws2812b_spi_Init
- .text.bWs2812b_spi_WriteByte
- 0x0000000000005f28 0x42 ./components/ws2812b/ws2812b_spi.o
- 0x0000000000005f28 bWs2812b_spi_WriteByte
- .text.XorBytes
- 0x0000000000005f6a 0x22 ./components/tools/AES_PKCS7.o
- .text.ShiftRows
- 0x0000000000005f8c 0x60 ./components/tools/AES_PKCS7.o
- .text.GfMultBy02
- 0x0000000000005fec 0x18 ./components/tools/AES_PKCS7.o
- .text.MixColumns
- 0x0000000000006004 0xee ./components/tools/AES_PKCS7.o
- .text.AES_Init
- 0x00000000000060f2 0x96 ./components/tools/AES_PKCS7.o
- 0x00000000000060f2 AES_Init
- .text.AES_get_length
- 0x0000000000006188 0x6 ./components/tools/AES_PKCS7.o
- 0x0000000000006188 AES_get_length
- .text.AES_Encrypt_PKCS7
- 0x000000000000618e 0xfa ./components/tools/AES_PKCS7.o
- 0x000000000000618e AES_Encrypt_PKCS7
- .text.AES_Decrypt
- 0x0000000000006288 0xb2 ./components/tools/AES_PKCS7.o
- 0x0000000000006288 AES_Decrypt
- .text._strlen 0x000000000000633a 0x14 ./components/tools/_string.o
- 0x000000000000633a _strlen
- .text._strstr 0x000000000000634e 0x6c ./components/tools/_string.o
- 0x000000000000634e _strstr
- .text.rng_init
- 0x00000000000063ba 0x2 ./components/tools/tools.o
- 0x00000000000063ba rng_init
- .text.Get_Rand
- 0x00000000000063bc 0xa ./components/tools/tools.o
- 0x00000000000063bc Get_Rand
- .text.SetReg 0x00000000000063c6 0x10 ./components/nfc/fm175xx.o
- 0x00000000000063c6 SetReg
- .text.Read_Reg
- 0x00000000000063d6 0x4 ./components/nfc/fm175xx.o
- 0x00000000000063d6 Read_Reg
- .text.Write_Reg
- 0x00000000000063da 0x10 ./components/nfc/fm175xx.o
- 0x00000000000063da Write_Reg
- .text.Read_FIFO
- 0x00000000000063ea 0x2c ./components/nfc/fm175xx.o
- 0x00000000000063ea Read_FIFO
- .text.Write_FIFO
- 0x0000000000006416 0x2c ./components/nfc/fm175xx.o
- 0x0000000000006416 Write_FIFO
- .text.Set_BitMask
- 0x0000000000006442 0x26 ./components/nfc/fm175xx.o
- 0x0000000000006442 Set_BitMask
- .text.Clear_FIFO
- 0x0000000000006468 0x1c ./components/nfc/fm175xx.o
- 0x0000000000006468 Clear_FIFO
- .text.Clear_BitMask
- 0x0000000000006484 0x2a ./components/nfc/fm175xx.o
- 0x0000000000006484 Clear_BitMask
- .text.Write_Ext_Reg
- 0x00000000000064ae 0x2e ./components/nfc/fm175xx.o
- 0x00000000000064ae Write_Ext_Reg
- .text.Set_Rf 0x00000000000064dc 0x78 ./components/nfc/fm175xx.o
- 0x00000000000064dc Set_Rf
- .text.Pcd_Comm
- 0x0000000000006554 0x16e ./components/nfc/fm175xx.o
- 0x0000000000006554 Pcd_Comm
- .text.Pcd_SetTimer
- 0x00000000000066c2 0x74 ./components/nfc/fm175xx.o
- 0x00000000000066c2 Pcd_SetTimer
- .text.Pcd_ConfigISOType
- 0x0000000000006736 0xd4 ./components/nfc/fm175xx.o
- 0x0000000000006736 Pcd_ConfigISOType
- .text.FM175X_SoftReset
- 0x000000000000680a 0x1c ./components/nfc/fm175xx.o
- 0x000000000000680a FM175X_SoftReset
- .text.Lpcd_Set_IRQ_pin
- 0x0000000000006826 0x18 ./components/nfc/lpcd.o
- 0x0000000000006826 Lpcd_Set_IRQ_pin
- .text.Lpcd_Init_Register
- 0x000000000000683e 0x2a ./components/nfc/lpcd.o
- 0x000000000000683e Lpcd_Init_Register
- .text.TyteA_Read
- 0x0000000000006868 0x5e ./components/nfc/lpcd.o
- 0x0000000000006868 TyteA_Read
- .text.RightMoveBit
- 0x00000000000068c6 0x1a ./components/nfc/type_a.o
- 0x00000000000068c6 RightMoveBit
- .text.LeftMoveBit
- 0x00000000000068e0 0x1c ./components/nfc/type_a.o
- 0x00000000000068e0 LeftMoveBit
- .text.CollSaveUID
- 0x00000000000068fc 0xd4 ./components/nfc/type_a.o
- 0x00000000000068fc CollSaveUID
- .text.TypeA_Set_BitFraming
- 0x00000000000069d0 0xf4 ./components/nfc/type_a.o
- 0x00000000000069d0 TypeA_Set_BitFraming
- .text.TypeA_Request
- 0x0000000000006ac4 0x72 ./components/nfc/type_a.o
- 0x0000000000006ac4 TypeA_Request
- .text.TypeA_Anticollision
- 0x0000000000006b36 0xb4 ./components/nfc/type_a.o
- 0x0000000000006b36 TypeA_Anticollision
- .text.TypeA_Select
- 0x0000000000006bea 0x94 ./components/nfc/type_a.o
- 0x0000000000006bea TypeA_Select
- .text.TypeA_CardActive
- 0x0000000000006c7e 0xfe ./components/nfc/type_a.o
- 0x0000000000006c7e TypeA_CardActive
- .text.TypeA_Halt
- 0x0000000000006d7c 0x54 ./components/nfc/type_a.o
- 0x0000000000006d7c TypeA_Halt
- .text.prvUser_nfc_upload_card_stat
- 0x0000000000006dd0 0x76 ./components/nfc/user_nfc.o
- .text.Card_Check.part.0
- 0x0000000000006e46 0x110 ./components/nfc/user_nfc.o
- .text.user_nfc_task_process_event
- 0x0000000000006f56 0x26e ./components/nfc/user_nfc.o
- .text.ReadRawRC
- 0x00000000000071c4 0x58 ./components/nfc/user_nfc.o
- 0x00000000000071c4 ReadRawRC
- .text.WriteRawRC
- 0x000000000000721c 0x50 ./components/nfc/user_nfc.o
- 0x000000000000721c WriteRawRC
- .text.vUser_nfc_set_upload_key_stat_func
- 0x000000000000726c 0x6 ./components/nfc/user_nfc.o
- 0x000000000000726c vUser_nfc_set_upload_key_stat_func
- .text.vUser_nfc_task_start
- 0x0000000000007272 0x28 ./components/nfc/user_nfc.o
- 0x0000000000007272 vUser_nfc_task_start
- .text.vUser_nfc_init
- 0x000000000000729a 0xf4 ./components/nfc/user_nfc.o
- 0x000000000000729a vUser_nfc_init
- .text.vUser_nfc_set_charge_stat
- 0x000000000000738e 0x1c ./components/nfc/user_nfc.o
- 0x000000000000738e vUser_nfc_set_charge_stat
- .text.user_spi_Init
- 0x00000000000073aa 0x9c ./components/nfc/user_spi.o
- 0x00000000000073aa user_spi_Init
- .text.SPI_ReadWriteByte
- 0x0000000000007446 0x60 ./components/nfc/user_spi.o
- 0x0000000000007446 SPI_ReadWriteByte
- .text.prvSet_led_duty
- 0x00000000000074a6 0x20 ./components/led/user_led.o
- .text.led_task_process_event
- 0x00000000000074c6 0x112 ./components/led/user_led.o
- .text.set_led_indication
- 0x00000000000075d8 0xf2 ./components/led/user_led.o
- 0x00000000000075d8 set_led_indication
- .text.led_task_init
- 0x00000000000076ca 0x2c ./components/led/user_led.o
- 0x00000000000076ca led_task_init
- .text.led_task_start
- 0x00000000000076f6 0x12 ./components/led/user_led.o
- 0x00000000000076f6 led_task_start
- .text.vUser_led_set_view_stat
- 0x0000000000007708 0xce ./components/led/user_led.o
- 0x0000000000007708 vUser_led_set_view_stat
- .text.vUser_led_set_alarm_view
- 0x00000000000077d6 0x13a ./components/led/user_led.o
- 0x00000000000077d6 vUser_led_set_alarm_view
- .text.get_electsw_right_level
- 0x0000000000007910 0x1c ./components/electlock/elect_sw.o
- .text.get_electsw_left_level
- 0x000000000000792c 0x1c ./components/electlock/elect_sw.o
- .text.vElectsw_init
- 0x0000000000007948 0x44 ./components/electlock/elect_sw.o
- 0x0000000000007948 vElectsw_init
- .text.electsw_task_process_event
- 0x000000000000798c 0xe2 ./components/electlock/elect_sw.o
- 0x000000000000798c electsw_task_process_event
- .text.electsw_task_start
- 0x0000000000007a6e 0x12 ./components/electlock/elect_sw.o
- 0x0000000000007a6e electsw_task_start
- .text.vElectsw_set_upload_func
- 0x0000000000007a80 0x6 ./components/electlock/elect_sw.o
- 0x0000000000007a80 vElectsw_set_upload_func
- .text.bElectsw_get_stat
- 0x0000000000007a86 0xc ./components/electlock/elect_sw.o
- 0x0000000000007a86 bElectsw_get_stat
- .text.bElectsw_set_fail
- 0x0000000000007a92 0xe ./components/electlock/elect_sw.o
- 0x0000000000007a92 bElectsw_set_fail
- .text.elect_task_process_event
- 0x0000000000007aa0 0xa8 ./components/electlock/user_elect.o
- .text.elect_right_work_stat
- 0x0000000000007b48 0x64 ./components/electlock/user_elect.o
- .text.elect_left_work_stat
- 0x0000000000007bac 0x5a ./components/electlock/user_elect.o
- .text.set_elect_work_stat
- 0x0000000000007c06 0x52 ./components/electlock/user_elect.o
- 0x0000000000007c06 set_elect_work_stat
- .text.elect_start
- 0x0000000000007c58 0x28 ./components/electlock/user_elect.o
- 0x0000000000007c58 elect_start
- .text.elect_task_init
- 0x0000000000007c80 0xcc ./components/electlock/user_elect.o
- 0x0000000000007c80 elect_task_init
- .text.elect_task_start
- 0x0000000000007d4c 0x12 ./components/electlock/user_elect.o
- 0x0000000000007d4c elect_task_start
- .text.vUser_elect_set_upload_stat_func
- 0x0000000000007d5e 0x6 ./components/electlock/user_elect.o
- 0x0000000000007d5e vUser_elect_set_upload_stat_func
- .text.set_user_config_param_init
- 0x0000000000007d64 0x1c ./components/config/user_config.o
- 0x0000000000007d64 set_user_config_param_init
- .text.check_can_baud
- 0x0000000000007d80 0x66 ./components/config/user_config.o
- 0x0000000000007d80 check_can_baud
- .text.FLASH_read
- 0x0000000000007de6 0x18 ./components/config/user_config.o
- 0x0000000000007de6 FLASH_read
- .text.User_Config_Write_Config
- 0x0000000000007dfe 0x50 ./components/config/user_config.o
- 0x0000000000007dfe User_Config_Write_Config
- .text.User_Config_Read_Config
- 0x0000000000007e4e 0x94 ./components/config/user_config.o
- 0x0000000000007e4e User_Config_Read_Config
- .text.user_config_save_can_baud
- 0x0000000000007ee2 0x3c ./components/config/user_config.o
- 0x0000000000007ee2 user_config_save_can_baud
- .text.user_config_init
- 0x0000000000007f1e 0x2 ./components/config/user_config.o
- 0x0000000000007f1e user_config_init
- .text.Get_ConversionVal
- 0x0000000000007f20 0x2c ./components/charge/user_adc.o
- 0x0000000000007f20 Get_ConversionVal
- .text.Get_Temp
- 0x0000000000007f4c 0x5e ./components/charge/user_adc.o
- 0x0000000000007f4c Get_Temp
- .text.adc_task_start
- 0x0000000000007faa 0x2a ./components/charge/user_adc.o
- 0x0000000000007faa adc_task_start
- .text.adc_task_process_event
- 0x0000000000007fd4 0x142 ./components/charge/user_adc.o
- 0x0000000000007fd4 adc_task_process_event
- .text.adc_init
- 0x0000000000008116 0x184 ./components/charge/user_adc.o
- 0x0000000000008116 adc_init
- .text.set_adc_upload_func
- 0x000000000000829a 0x6 ./components/charge/user_adc.o
- 0x000000000000829a set_adc_upload_func
- .text.vUser_adc_dma_finish
- 0x00000000000082a0 0x36 ./components/charge/user_adc.o
- 0x00000000000082a0 vUser_adc_dma_finish
- .text.prvUser_charge_upload_stat
- 0x00000000000082d6 0x10 ./components/charge/user_charge.o
- .text.user_charge_task_process_event
- 0x00000000000082e6 0x9a ./components/charge/user_charge.o
- .text.set_user_charge_Queue
- 0x0000000000008380 0x1a ./components/charge/user_charge.o
- 0x0000000000008380 set_user_charge_Queue
- .text.user_charge_init
- 0x000000000000839a 0x8e ./components/charge/user_charge.o
- 0x000000000000839a user_charge_init
- .text.vUser_charge_set_upload_stat_func
- 0x0000000000008428 0x6 ./components/charge/user_charge.o
- 0x0000000000008428 vUser_charge_set_upload_stat_func
- .text.right_fan_duty
- 0x000000000000842e 0xa ./components/charge/user_fan.o
- .text.left_fan_duty
- 0x0000000000008438 0xa ./components/charge/user_fan.o
- .text.set_fan_indication
- 0x0000000000008442 0x34 ./components/charge/user_fan.o
- 0x0000000000008442 set_fan_indication
- .text.fan_init
- 0x0000000000008476 0x108 ./components/charge/user_fan.o
- 0x0000000000008476 fan_init
- .text.set_dispsw_addr
- 0x000000000000857e 0x52 ./components/can/dip_sw.o
- .text.get_dipsw04_level
- 0x00000000000085d0 0x1a ./components/can/dip_sw.o
- .text.get_dipsw03_level
- 0x00000000000085ea 0x1a ./components/can/dip_sw.o
- .text.get_dipsw02_level
- 0x0000000000008604 0x1a ./components/can/dip_sw.o
- .text.get_dipsw01_level
- 0x000000000000861e 0x1a ./components/can/dip_sw.o
- .text.vDipsw_init
- 0x0000000000008638 0x68 ./components/can/dip_sw.o
- 0x0000000000008638 vDipsw_init
- .text.dipsw_task_process_event
- 0x00000000000086a0 0xac ./components/can/dip_sw.o
- 0x00000000000086a0 dipsw_task_process_event
- .text.dipsw_task_start
- 0x000000000000874c 0x12 ./components/can/dip_sw.o
- 0x000000000000874c dipsw_task_start
- .text.vDipsw_set_upload_func
- 0x000000000000875e 0x6 ./components/can/dip_sw.o
- 0x000000000000875e vDipsw_set_upload_func
- .text.ucCAN_Send_Msg
- 0x0000000000008764 0x98 ./components/can/user_can.o
- 0x0000000000008764 ucCAN_Send_Msg
- .text.user_can_task_process_event
- 0x00000000000087fc 0x7c ./components/can/user_can.o
- .text.vUser_can_send_data
- 0x0000000000008878 0x4e ./components/can/user_can.o
- 0x0000000000008878 vUser_can_send_data
- .text.vUser_can_recv_data
- 0x00000000000088c6 0x36 ./components/can/user_can.o
- 0x00000000000088c6 vUser_can_recv_data
- .text.vUser_can_set_recv_data_func
- 0x00000000000088fc 0x6 ./components/can/user_can.o
- 0x00000000000088fc vUser_can_set_recv_data_func
- .text.vUser_can_set_addr
- 0x0000000000008902 0x6c ./components/can/user_can.o
- 0x0000000000008902 vUser_can_set_addr
- .text.vUser_can_init
- 0x000000000000896e 0x1ba ./components/can/user_can.o
- 0x000000000000896e vUser_can_init
- .text.ble_owned_data_send
- 0x0000000000008b28 0x10 ./components/action/ble_action.o
- .text.ble_action_set_rst
- 0x0000000000008b38 0x24 ./components/action/ble_action.o
- .text.set_token
- 0x0000000000008b5c 0x20 ./components/action/ble_action.o
- .text.Set_ble_data_s_sendData
- 0x0000000000008b7c 0x7a ./components/action/ble_action.o
- .text.ble_devRst_set_stat_send
- 0x0000000000008bf6 0x2e ./components/action/ble_action.o
- .text.Check_UnixTime_Token
- 0x0000000000008c24 0x3a ./components/action/ble_action.o
- .text.ble_Return_Stat_Send.constprop.3
- 0x0000000000008c5e 0x1e ./components/action/ble_action.o
- .text.Jump_OTA
- 0x0000000000008c7c 0x48 ./components/action/ble_action.o
- 0x0000000000008c7c Jump_OTA
- .text.ble_connect_act
- 0x0000000000008cc4 0x18 ./components/action/ble_action.o
- 0x0000000000008cc4 ble_connect_act
- .text.ble_get_nfc_send
- 0x0000000000008cdc 0x86 ./components/action/ble_action.o
- 0x0000000000008cdc ble_get_nfc_send
- .text.download_ble_data_callback
- 0x0000000000008d62 0x37e ./components/action/ble_action.o
- 0x0000000000008d62 download_ble_data_callback
- .text.vBle_action_init
- 0x00000000000090e0 0x4 ./components/action/ble_action.o
- 0x00000000000090e0 vBle_action_init
- .text.download_ble_file_callback
- 0x00000000000090e4 0x4 ./components/action/ble_action.o
- 0x00000000000090e4 download_ble_file_callback
- .text.set_upload_ble_data_func
- 0x00000000000090e8 0x6 ./components/action/ble_action.o
- 0x00000000000090e8 set_upload_ble_data_func
- .text.prvUser_can_recv_data_callback
- 0x00000000000090ee 0x26 ./components/action/user_sever.o
- .text.prvAdc_upload_callback
- 0x0000000000009114 0x16e ./components/action/user_sever.o
- .text.vUser_server_set_led_stat
- 0x0000000000009282 0x6a ./components/action/user_sever.o
- .text.prvUser_server_check_elect_stat
- 0x00000000000092ec 0x3a ./components/action/user_sever.o
- .text.prvElectsw_upload_callback
- 0x0000000000009326 0x42 ./components/action/user_sever.o
- .text.prvUser_nfc_upload_card_callback
- 0x0000000000009368 0x78 ./components/action/user_sever.o
- .text.vUser_charge_upload_stat_callback
- 0x00000000000093e0 0x70 ./components/action/user_sever.o
- .text.user_server_task_process_event
- 0x0000000000009450 0x2d8 ./components/action/user_sever.o
- .text.vUser_elect_upload_stat_callback
- 0x0000000000009728 0x5e ./components/action/user_sever.o
- .text.prvDipsw_upload_callback
- 0x0000000000009786 0x38 ./components/action/user_sever.o
- .text.vUser_server_task_start
- 0x00000000000097be 0x12 ./components/action/user_sever.o
- 0x00000000000097be vUser_server_task_start
- .text.vUser_server_get_key_data
- 0x00000000000097d0 0x6 ./components/action/user_sever.o
- 0x00000000000097d0 vUser_server_get_key_data
- .text.vUser_server_init
- 0x00000000000097d6 0x80 ./components/action/user_sever.o
- 0x00000000000097d6 vUser_server_init
- .text.startup.main
- 0x0000000000009856 0x100 ./User/app_main.o
- 0x0000000000009856 main
- .text.NMI_Handler
- 0x0000000000009956 0x4 ./User/ch32v20x_it.o
- 0x0000000000009956 NMI_Handler
- .text.HardFault_Handler
- 0x000000000000995a 0x2 ./User/ch32v20x_it.o
- 0x000000000000995a HardFault_Handler
- .text.BB_IRQHandler
- 0x000000000000995c 0xc ./User/ch32v20x_it.o
- 0x000000000000995c BB_IRQHandler
- .text.DMA1_Channel1_IRQHandler
- 0x0000000000009968 0x16 ./User/ch32v20x_it.o
- 0x0000000000009968 DMA1_Channel1_IRQHandler
- .text.USB_LP_CAN1_RX0_IRQHandler
- 0x000000000000997e 0x38 ./User/ch32v20x_it.o
- 0x000000000000997e USB_LP_CAN1_RX0_IRQHandler
- .text.DMA1_Channel5_IRQHandler
- 0x00000000000099b6 0x3a ./User/ch32v20x_it.o
- 0x00000000000099b6 DMA1_Channel5_IRQHandler
- .text.peripheralRssiCB
- 0x00000000000099f0 0x2 ./User/peripheral.o
- .text.simpleProfileChangeCB
- 0x00000000000099f2 0x2a ./User/peripheral.o
- .text.Peripheral_ProcessEvent
- 0x0000000000009a1c 0x14e ./User/peripheral.o
- 0x0000000000009a1c Peripheral_ProcessEvent
- .text.peripheralParamUpdateCB
- 0x0000000000009b6a 0x30 ./User/peripheral.o
- .text.Peripheral_LinkTerminated
- 0x0000000000009b9a 0x5e ./User/peripheral.o
- .text.peripheralStateNotificationCB
- 0x0000000000009bf8 0x19e ./User/peripheral.o
- .text.Peripheral_Init
- 0x0000000000009d96 0x202 ./User/peripheral.o
- 0x0000000000009d96 Peripheral_Init
- .text.ble_data_send
- 0x0000000000009f98 0x6a ./User/peripheral.o
- 0x0000000000009f98 ble_data_send
- .text.set_download_ble_data_func
- 0x000000000000a002 0x6 ./User/peripheral.o
- 0x000000000000a002 set_download_ble_data_func
- .text.set_download_ble_file_func
- 0x000000000000a008 0x6 ./User/peripheral.o
- 0x000000000000a008 set_download_ble_file_func
- .text.set_ble_connect_evtfunc
- 0x000000000000a00e 0x6 ./User/peripheral.o
- 0x000000000000a00e set_ble_connect_evtfunc
- .text.SystemInit
- 0x000000000000a014 0xea ./User/system_ch32v20x.o
- 0x000000000000a014 SystemInit
- .text.SystemCoreClockUpdate
- 0x000000000000a0fe 0xac ./User/system_ch32v20x.o
- 0x000000000000a0fe SystemCoreClockUpdate
- .text.vector_handler
- 0x000000000000a1aa 0x2 ./Startup/startup_ch32v20x_D8W.o
- 0x000000000000a1aa EXTI2_IRQHandler
- 0x000000000000a1aa TIM1_CC_IRQHandler
- 0x000000000000a1aa SysTick_Handler
- 0x000000000000a1aa PVD_IRQHandler
- 0x000000000000a1aa EXTI3_IRQHandler
- 0x000000000000a1aa USBFS_IRQHandler
- 0x000000000000a1aa EXTI0_IRQHandler
- 0x000000000000a1aa I2C2_EV_IRQHandler
- 0x000000000000a1aa ADC1_2_IRQHandler
- 0x000000000000a1aa Break_Point_Handler
- 0x000000000000a1aa SPI1_IRQHandler
- 0x000000000000a1aa TAMPER_IRQHandler
- 0x000000000000a1aa OSCWakeUp_IRQHandler
- 0x000000000000a1aa DMA1_Channel4_IRQHandler
- 0x000000000000a1aa USART3_IRQHandler
- 0x000000000000a1aa RTC_IRQHandler
- 0x000000000000a1aa DMA1_Channel7_IRQHandler
- 0x000000000000a1aa CAN1_RX1_IRQHandler
- 0x000000000000a1aa TIM4_IRQHandler
- 0x000000000000a1aa I2C1_EV_IRQHandler
- 0x000000000000a1aa DMA1_Channel6_IRQHandler
- 0x000000000000a1aa UART4_IRQHandler
- 0x000000000000a1aa TIM3_IRQHandler
- 0x000000000000a1aa RCC_IRQHandler
- 0x000000000000a1aa TIM1_TRG_COM_IRQHandler
- 0x000000000000a1aa EXTI15_10_IRQHandler
- 0x000000000000a1aa DMA1_Channel8_IRQHandler
- 0x000000000000a1aa TIM5_IRQHandler
- 0x000000000000a1aa EXTI9_5_IRQHandler
- 0x000000000000a1aa SPI2_IRQHandler
- 0x000000000000a1aa OSC32KCal_IRQHandler
- 0x000000000000a1aa EXTI4_IRQHandler
- 0x000000000000a1aa USB_HP_CAN1_TX_IRQHandler
- 0x000000000000a1aa DMA1_Channel3_IRQHandler
- 0x000000000000a1aa ETH_IRQHandler
- 0x000000000000a1aa TIM1_UP_IRQHandler
- 0x000000000000a1aa WWDG_IRQHandler
- 0x000000000000a1aa TIM2_IRQHandler
- 0x000000000000a1aa SW_Handler
- 0x000000000000a1aa TIM1_BRK_IRQHandler
- 0x000000000000a1aa EXTI1_IRQHandler
- 0x000000000000a1aa USART2_IRQHandler
- 0x000000000000a1aa ETHWakeUp_IRQHandler
- 0x000000000000a1aa I2C2_ER_IRQHandler
- 0x000000000000a1aa DMA1_Channel2_IRQHandler
- 0x000000000000a1aa CAN1_SCE_IRQHandler
- 0x000000000000a1aa FLASH_IRQHandler
- 0x000000000000a1aa USBFSWakeUp_IRQHandler
- 0x000000000000a1aa USART1_IRQHandler
- 0x000000000000a1aa I2C1_ER_IRQHandler
- 0x000000000000a1aa USBWakeUp_IRQHandler
- .text.handle_reset
- 0x000000000000a1ac 0x8a ./Startup/startup_ch32v20x_D8W.o
- 0x000000000000a1ac handle_reset
- .text.ADC_DeInit
- 0x000000000000a236 0x4c ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a236 ADC_DeInit
- .text.ADC_Init
- 0x000000000000a282 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a282 ADC_Init
- .text.ADC_Cmd 0x000000000000a2d8 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a2d8 ADC_Cmd
- .text.ADC_DMACmd
- 0x000000000000a2e8 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a2e8 ADC_DMACmd
- .text.ADC_ResetCalibration
- 0x000000000000a2fa 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a2fa ADC_ResetCalibration
- .text.ADC_GetResetCalibrationStatus
- 0x000000000000a304 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a304 ADC_GetResetCalibrationStatus
- .text.ADC_StartCalibration
- 0x000000000000a30c 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a30c ADC_StartCalibration
- .text.ADC_GetCalibrationStatus
- 0x000000000000a316 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a316 ADC_GetCalibrationStatus
- .text.ADC_SoftwareStartConvCmd
- 0x000000000000a31e 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a31e ADC_SoftwareStartConvCmd
- .text.ADC_RegularChannelConfig
- 0x000000000000a336 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a336 ADC_RegularChannelConfig
- .text.ADC_GetConversionValue
- 0x000000000000a3ee 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a3ee ADC_GetConversionValue
- .text.ADC_TempSensorVrefintCmd
- 0x000000000000a3f6 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a3f6 ADC_TempSensorVrefintCmd
- .text.ADC_GetFlagStatus
- 0x000000000000a416 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a416 ADC_GetFlagStatus
- .text.ADC_BufferCmd
- 0x000000000000a420 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a420 ADC_BufferCmd
- .text.Get_CalibrationValue
- 0x000000000000a438 0x13a ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000a438 Get_CalibrationValue
- .text.CAN_Init
- 0x000000000000a572 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a572 CAN_Init
- .text.CAN_FilterInit
- 0x000000000000a65a 0xee ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a65a CAN_FilterInit
- .text.CAN_Transmit
- 0x000000000000a748 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a748 CAN_Transmit
- .text.CAN_TransmitStatus
- 0x000000000000a804 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a804 CAN_TransmitStatus
- .text.CAN_Receive
- 0x000000000000a866 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a866 CAN_Receive
- .text.CAN_ITConfig
- 0x000000000000a8f2 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a8f2 CAN_ITConfig
- .text.CAN_GetITStatus
- 0x000000000000a904 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a904 CAN_GetITStatus
- .text.CAN_ClearITPendingBit
- 0x000000000000a9d4 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
- 0x000000000000a9d4 CAN_ClearITPendingBit
- .text.DBGMCU_GetCHIPID
- 0x000000000000aa68 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- 0x000000000000aa68 DBGMCU_GetCHIPID
- .text.DMA_DeInit
- 0x000000000000aa72 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000aa72 DMA_DeInit
- .text.DMA_Init
- 0x000000000000ab0e 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000ab0e DMA_Init
- .text.DMA_Cmd 0x000000000000ab46 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000ab46 DMA_Cmd
- .text.DMA_ITConfig
- 0x000000000000ab5a 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000ab5a DMA_ITConfig
- .text.DMA_SetCurrDataCounter
- 0x000000000000ab6c 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000ab6c DMA_SetCurrDataCounter
- .text.DMA_GetFlagStatus
- 0x000000000000ab70 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000ab70 DMA_GetFlagStatus
- .text.DMA_GetITStatus
- 0x000000000000ab7e 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000ab7e DMA_GetITStatus
- .text.DMA_ClearITPendingBit
- 0x000000000000ab82 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x000000000000ab82 DMA_ClearITPendingBit
- .text.EXTI_ClearITPendingBit
- 0x000000000000ab8a 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
- 0x000000000000ab8a EXTI_ClearITPendingBit
- .text.FLASH_Unlock_Fast
- 0x000000000000ab94 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000ab94 FLASH_Unlock_Fast
- .text.FLASH_Lock_Fast
- 0x000000000000abb2 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000abb2 FLASH_Lock_Fast
- .text.FLASH_ErasePage_Fast
- 0x000000000000abc0 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000abc0 FLASH_ErasePage_Fast
- .text.FLASH_ProgramPage_Fast
- 0x000000000000abee 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000abee FLASH_ProgramPage_Fast
- .text.FLASH_GetMACAddress
- 0x000000000000ac52 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000ac52 FLASH_GetMACAddress
- .text.GPIO_Init
- 0x000000000000ac78 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0x000000000000ac78 GPIO_Init
- .text.GPIO_ReadInputDataBit
- 0x000000000000ad38 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0x000000000000ad38 GPIO_ReadInputDataBit
- .text.GPIO_WriteBit
- 0x000000000000ad42 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0x000000000000ad42 GPIO_WriteBit
- .text.GPIO_PinRemapConfig
- 0x000000000000ad4c 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0x000000000000ad4c GPIO_PinRemapConfig
- .text.IWDG_ReloadCounter
- 0x000000000000ae3e 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x000000000000ae3e IWDG_ReloadCounter
- .text.NVIC_Init
- 0x000000000000ae4c 0x56 ./SRC/Peripheral/src/ch32v20x_misc.o
- 0x000000000000ae4c NVIC_Init
- .text.PWR_BackupAccessCmd
- 0x000000000000aea2 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
- 0x000000000000aea2 PWR_BackupAccessCmd
- .text.RCC_ADCCLKConfig
- 0x000000000000aeb8 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000aeb8 RCC_ADCCLKConfig
- .text.RCC_LSEConfig
- 0x000000000000aeca 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000aeca RCC_LSEConfig
- .text.RCC_RTCCLKConfig
- 0x000000000000aef2 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000aef2 RCC_RTCCLKConfig
- .text.RCC_RTCCLKCmd
- 0x000000000000aefe 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000aefe RCC_RTCCLKCmd
- .text.RCC_GetClocksFreq
- 0x000000000000af1e 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000af1e RCC_GetClocksFreq
- .text.RCC_AHBPeriphClockCmd
- 0x000000000000aff6 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000aff6 RCC_AHBPeriphClockCmd
- .text.RCC_APB2PeriphClockCmd
- 0x000000000000b014 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000b014 RCC_APB2PeriphClockCmd
- .text.RCC_APB1PeriphClockCmd
- 0x000000000000b032 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000b032 RCC_APB1PeriphClockCmd
- .text.RCC_APB2PeriphResetCmd
- 0x000000000000b050 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000b050 RCC_APB2PeriphResetCmd
- .text.RCC_GetFlagStatus
- 0x000000000000b06e 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x000000000000b06e RCC_GetFlagStatus
- .text.RTC_EnterConfigMode
- 0x000000000000b09c 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b09c RTC_EnterConfigMode
- .text.RTC_ExitConfigMode
- 0x000000000000b0ae 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b0ae RTC_ExitConfigMode
- .text.RTC_GetCounter
- 0x000000000000b0c6 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b0c6 RTC_GetCounter
- .text.RTC_SetCounter
- 0x000000000000b120 0x28 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b120 RTC_SetCounter
- .text.RTC_SetPrescaler
- 0x000000000000b148 0x2a ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b148 RTC_SetPrescaler
- .text.RTC_WaitForLastTask
- 0x000000000000b172 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b172 RTC_WaitForLastTask
- .text.RTC_ClearFlag
- 0x000000000000b182 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b182 RTC_ClearFlag
- .text.RTC_ClearITPendingBit
- 0x000000000000b196 0x4 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x000000000000b196 RTC_ClearITPendingBit
- .text.SPI_Init
- 0x000000000000b19a 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
- 0x000000000000b19a SPI_Init
- .text.SPI_Cmd 0x000000000000b1d8 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
- 0x000000000000b1d8 SPI_Cmd
- .text.SPI_I2S_DMACmd
- 0x000000000000b1f2 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
- 0x000000000000b1f2 SPI_I2S_DMACmd
- .text.SPI_I2S_SendData
- 0x000000000000b204 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
- 0x000000000000b204 SPI_I2S_SendData
- .text.SPI_I2S_ReceiveData
- 0x000000000000b208 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
- 0x000000000000b208 SPI_I2S_ReceiveData
- .text.SPI_CalculateCRC
- 0x000000000000b20c 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
- 0x000000000000b20c SPI_CalculateCRC
- .text.SPI_I2S_GetFlagStatus
- 0x000000000000b222 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
- 0x000000000000b222 SPI_I2S_GetFlagStatus
- .text.TIM_TimeBaseInit
- 0x000000000000b22c 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b22c TIM_TimeBaseInit
- .text.TIM_OC1Init
- 0x000000000000b296 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b296 TIM_OC1Init
- .text.TIM_OC2Init
- 0x000000000000b300 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b300 TIM_OC2Init
- .text.TIM_BDTRConfig
- 0x000000000000b396 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b396 TIM_BDTRConfig
- .text.TIM_Cmd 0x000000000000b3b6 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b3b6 TIM_Cmd
- .text.TIM_OC1PreloadConfig
- 0x000000000000b3ce 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b3ce TIM_OC1PreloadConfig
- .text.TIM_OC2PreloadConfig
- 0x000000000000b3dc 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b3dc TIM_OC2PreloadConfig
- .text.TIM_SetCompare1
- 0x000000000000b3f2 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b3f2 TIM_SetCompare1
- .text.TIM_SetCompare2
- 0x000000000000b3f6 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x000000000000b3f6 TIM_SetCompare2
- .text.USART_Init
- 0x000000000000b3fa 0x92 ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x000000000000b3fa USART_Init
- .text.USART_Cmd
- 0x000000000000b48c 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x000000000000b48c USART_Cmd
- .text.USART_SendData
- 0x000000000000b4a2 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x000000000000b4a2 USART_SendData
- .text.USART_GetFlagStatus
- 0x000000000000b4aa 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x000000000000b4aa USART_GetFlagStatus
- .text.Delay_Init
- 0x000000000000b4b4 0x28 ./SRC/Debug/debug.o
- 0x000000000000b4b4 Delay_Init
- .text.Delay_Us
- 0x000000000000b4dc 0x36 ./SRC/Debug/debug.o
- 0x000000000000b4dc Delay_Us
- .text.Delay_Ms
- 0x000000000000b512 0x36 ./SRC/Debug/debug.o
- 0x000000000000b512 Delay_Ms
- .text.USART_Printf_Init
- 0x000000000000b548 0x5c ./SRC/Debug/debug.o
- 0x000000000000b548 USART_Printf_Init
- .text._write 0x000000000000b5a4 0x50 ./SRC/Debug/debug.o
- 0x000000000000b5a4 _write
- .text._sbrk 0x000000000000b5f4 0x2c ./SRC/Debug/debug.o
- 0x000000000000b5f4 _sbrk
- .text.devInfo_ReadAttrCB
- 0x000000000000b620 0x1b0 ./Profile/devinfoservice.o
- .text.DevInfo_AddService
- 0x000000000000b7d0 0x16 ./Profile/devinfoservice.o
- 0x000000000000b7d0 DevInfo_AddService
- .text.simpleProfile_ReadAttrCB
- 0x000000000000b7e6 0x7c ./Profile/gattprofile.o
- .text.simpleProfile_WriteAttrCB
- 0x000000000000b862 0x110 ./Profile/gattprofile.o
- .text.simpleProfile_HandleConnStatusCB
- 0x000000000000b972 0x4e ./Profile/gattprofile.o
- .text.SimpleProfile_AddService
- 0x000000000000b9c0 0x58 ./Profile/gattprofile.o
- 0x000000000000b9c0 SimpleProfile_AddService
- .text.SimpleProfile_RegisterAppCBs
- 0x000000000000ba18 0xe ./Profile/gattprofile.o
- 0x000000000000ba18 SimpleProfile_RegisterAppCBs
- .text.SimpleProfile_SetParameter
- 0x000000000000ba26 0xa0 ./Profile/gattprofile.o
- 0x000000000000ba26 SimpleProfile_SetParameter
- .text.simpleProfileChar4_Notify
- 0x000000000000bac6 0x52 ./Profile/gattprofile.o
- 0x000000000000bac6 simpleProfileChar4_Notify
- .text.Lib_Read_Flash
- 0x000000000000bb18 0x1e ./HAL/MCU.o
- 0x000000000000bb18 Lib_Read_Flash
- .text.Lib_Write_Flash
- 0x000000000000bb36 0x32 ./HAL/MCU.o
- 0x000000000000bb36 Lib_Write_Flash
- .text.HAL_GetInterTempValue
- 0x000000000000bb68 0x16c ./HAL/MCU.o
- 0x000000000000bb68 HAL_GetInterTempValue
- .text.HAL_ProcessEvent
- 0x000000000000bcd4 0x8e ./HAL/MCU.o
- 0x000000000000bcd4 HAL_ProcessEvent
- .text.WCHBLE_Init
- 0x000000000000bd62 0x134 ./HAL/MCU.o
- 0x000000000000bd62 WCHBLE_Init
- .text.HAL_Init
- 0x000000000000be96 0x3c ./HAL/MCU.o
- 0x000000000000be96 HAL_Init
- .text.HAL_TimeInit
- 0x000000000000bed2 0xb2 ./HAL/RTC.o
- 0x000000000000bed2 HAL_TimeInit
- .text.RTCAlarm_IRQHandler
- 0x000000000000bf84 0x1c ./HAL/RTC.o
- 0x000000000000bf84 RTCAlarm_IRQHandler
- .text.log 0x000000000000bfa0 0x112 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
- 0x000000000000bfa0 log
- .text.__ieee754_log
- 0x000000000000c0b2 0x3d8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
- 0x000000000000c0b2 __ieee754_log
- .text.matherr 0x000000000000c48a 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
- 0x000000000000c48a matherr
- .text.nan 0x000000000000c48e 0xe d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
- 0x000000000000c48e nan
- .text.__umoddi3
- 0x000000000000c49c 0x38a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_umoddi3.o)
- 0x000000000000c49c __umoddi3
- .text.__adddf3
- 0x000000000000c826 0x730 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
- 0x000000000000c826 __adddf3
- .text.__divdf3
- 0x000000000000cf56 0x5b4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
- 0x000000000000cf56 __divdf3
- .text.__eqdf2 0x000000000000d50a 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
- 0x000000000000d50a __nedf2
- 0x000000000000d50a __eqdf2
- .text.__gedf2 0x000000000000d574 0xae d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
- 0x000000000000d574 __gedf2
- 0x000000000000d574 __gtdf2
- .text.__muldf3
- 0x000000000000d622 0x4b8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
- 0x000000000000d622 __muldf3
- .text.__subdf3
- 0x000000000000dada 0x73e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
- 0x000000000000dada __subdf3
- .text.__unorddf2
- 0x000000000000e218 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
- 0x000000000000e218 __unorddf2
- .text.__floatsidf
- 0x000000000000e254 0x72 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
- 0x000000000000e254 __floatsidf
- .text.__addsf3
- 0x000000000000e2c6 0x36a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
- 0x000000000000e2c6 __addsf3
- .text.__divsf3
- 0x000000000000e630 0x2b2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
- 0x000000000000e630 __divsf3
- .text.__mulsf3
- 0x000000000000e8e2 0x294 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
- 0x000000000000e8e2 __mulsf3
- .text.__subsf3
- 0x000000000000eb76 0x388 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
- 0x000000000000eb76 __subsf3
- .text.__fixsfsi
- 0x000000000000eefe 0x62 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
- 0x000000000000eefe __fixsfsi
- .text.__floatsisf
- 0x000000000000ef60 0xc6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
- 0x000000000000ef60 __floatsisf
- .text.__extendsfdf2
- 0x000000000000f026 0xac d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
- 0x000000000000f026 __extendsfdf2
- .text.__truncdfsf2
- 0x000000000000f0d2 0x16a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
- 0x000000000000f0d2 __truncdfsf2
- .text.__clzsi2
- 0x000000000000f23c 0x6e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
- 0x000000000000f23c __clzsi2
- .text.__errno 0x000000000000f2aa 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
- 0x000000000000f2aa __errno
- .text.malloc 0x000000000000f2b2 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
- 0x000000000000f2b2 malloc
- .text.memcpy 0x000000000000f2bc 0xb2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- 0x000000000000f2bc memcpy
- .text._free_r 0x000000000000f36e 0xa8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- 0x000000000000f36e _free_r
- .text._malloc_r
- 0x000000000000f416 0xda d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- 0x000000000000f416 _malloc_r
- .text.__cvt 0x000000000000f4f0 0xea d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
- 0x000000000000f4f0 __cvt
- .text.__exponent
- 0x000000000000f5da 0x84 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
- 0x000000000000f5da __exponent
- .text._printf_float
- 0x000000000000f65e 0x4c4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
- 0x000000000000f65e _printf_float
- .text._printf_common
- 0x000000000000fb22 0x10c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- 0x000000000000fb22 _printf_common
- .text._printf_i
- 0x000000000000fc2e 0x2a4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- 0x000000000000fc2e _printf_i
- .text._scanf_float
- 0x000000000000fed2 0x46c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
- 0x000000000000fed2 _scanf_float
- .text.printf 0x000000000001033e 0x42 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- 0x000000000001033e iprintf
- 0x000000000001033e printf
- .text._puts_r 0x0000000000010380 0xde d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- 0x0000000000010380 _puts_r
- .text.puts 0x000000000001045e 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- 0x000000000001045e puts
- .text._sbrk_r 0x000000000001046a 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- 0x000000000001046a _sbrk_r
- .text.nanf 0x000000000001049c 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
- 0x000000000001049c nanf
- .text.sprintf 0x00000000000104a8 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
- 0x00000000000104a8 siprintf
- 0x00000000000104a8 sprintf
- .text.sscanf 0x00000000000104ee 0x52 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
- 0x00000000000104ee siscanf
- 0x00000000000104ee sscanf
- .text.__sread 0x0000000000010540 0x2e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x0000000000010540 __sread
- .text.__seofread
- 0x000000000001056e 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x000000000001056e __seofread
- .text.__swrite
- 0x0000000000010572 0x4c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x0000000000010572 __swrite
- .text.__sseek 0x00000000000105be 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x00000000000105be __sseek
- .text.__sclose
- 0x00000000000105f0 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x00000000000105f0 __sclose
- .text.strlen 0x00000000000105f8 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
- 0x00000000000105f8 strlen
- .text.sulp 0x000000000001060a 0x4e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- .text._strtod_l
- 0x0000000000010658 0xc6c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- 0x0000000000010658 _strtod_l
- .text._strtod_r
- 0x00000000000112c4 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- 0x00000000000112c4 _strtod_r
- .text._strtol_l.isra.0
- 0x00000000000112d6 0x13a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
- .text._strtol_r
- 0x0000000000011410 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
- 0x0000000000011410 _strtol_r
- .text.__swbuf_r
- 0x0000000000011422 0xc2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- 0x0000000000011422 __swbuf_r
- .text._write_r
- 0x00000000000114e4 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- 0x00000000000114e4 _write_r
- .text.__swsetup_r
- 0x000000000001151a 0x102 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- 0x000000000001151a __swsetup_r
- .text._close_r
- 0x000000000001161c 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- 0x000000000001161c _close_r
- .text.quorem 0x000000000001164e 0x13a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
- .text._dtoa_r 0x0000000000011788 0xc16 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
- 0x0000000000011788 _dtoa_r
- .text.__sflush_r
- 0x000000000001239e 0x132 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- 0x000000000001239e __sflush_r
- .text._fflush_r
- 0x00000000000124d0 0x66 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- 0x00000000000124d0 _fflush_r
- .text.std 0x0000000000012536 0x66 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text._cleanup_r
- 0x000000000001259c 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x000000000001259c _cleanup_r
- .text.__sfmoreglue
- 0x00000000000125a6 0x48 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x00000000000125a6 __sfmoreglue
- .text.__sinit 0x00000000000125ee 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x00000000000125ee __sinit
- .text.__sfp 0x000000000001265e 0xa4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x000000000001265e __sfp
- .text._fwalk_reent
- 0x0000000000012702 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- 0x0000000000012702 _fwalk_reent
- .text.rshift 0x000000000001276c 0x76 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
- .text.__hexdig_fun
- 0x00000000000127e2 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
- 0x00000000000127e2 __hexdig_fun
- .text.__gethex
- 0x0000000000012822 0x4cc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
- 0x0000000000012822 __gethex
- .text.L_shift 0x0000000000012cee 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
- .text.__match 0x0000000000012d1a 0x2e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
- 0x0000000000012d1a __match
- .text.__hexnan
- 0x0000000000012d48 0x15e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
- 0x0000000000012d48 __hexnan
- .text.__locale_ctype_ptr_l
- 0x0000000000012ea6 0x6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
- 0x0000000000012ea6 __locale_ctype_ptr_l
- .text.__locale_ctype_ptr
- 0x0000000000012eac 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
- 0x0000000000012eac __locale_ctype_ptr
- .text.__localeconv_l
- 0x0000000000012ec0 0x6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
- 0x0000000000012ec0 __localeconv_l
- .text._localeconv_r
- 0x0000000000012ec6 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
- 0x0000000000012ec6 _localeconv_r
- .text._lseek_r
- 0x0000000000012eda 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- 0x0000000000012eda _lseek_r
- .text.__swhatbuf_r
- 0x0000000000012f10 0x58 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- 0x0000000000012f10 __swhatbuf_r
- .text.__smakebuf_r
- 0x0000000000012f68 0x94 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- 0x0000000000012f68 __smakebuf_r
- .text.__ascii_mbtowc
- 0x0000000000012ffc 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
- 0x0000000000012ffc __ascii_mbtowc
- .text.memchr 0x000000000001302e 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- 0x000000000001302e memchr
- .text.__malloc_lock
- 0x0000000000013046 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- 0x0000000000013046 __malloc_lock
- .text.__malloc_unlock
- 0x0000000000013048 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- 0x0000000000013048 __malloc_unlock
- .text._Balloc 0x000000000001304a 0x8c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x000000000001304a _Balloc
- .text._Bfree 0x00000000000130d6 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x00000000000130d6 _Bfree
- .text.__multadd
- 0x000000000001311a 0x98 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x000000000001311a __multadd
- .text.__s2b 0x00000000000131b2 0xa4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x00000000000131b2 __s2b
- .text.__hi0bits
- 0x0000000000013256 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013256 __hi0bits
- .text.__lo0bits
- 0x000000000001329c 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x000000000001329c __lo0bits
- .text.__i2b 0x0000000000013306 0x1c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013306 __i2b
- .text.__multiply
- 0x0000000000013322 0x144 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013322 __multiply
- .text.__pow5mult
- 0x0000000000013466 0xbe d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013466 __pow5mult
- .text.__lshift
- 0x0000000000013524 0xce d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013524 __lshift
- .text.__mcmp 0x00000000000135f2 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x00000000000135f2 __mcmp
- .text.__mdiff 0x0000000000013624 0xf2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013624 __mdiff
- .text.__ulp 0x0000000000013716 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013716 __ulp
- .text.__b2d 0x000000000001375c 0xb4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x000000000001375c __b2d
- .text.__d2b 0x0000000000013810 0xd4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013810 __d2b
- .text.__ratio 0x00000000000138e4 0x74 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x00000000000138e4 __ratio
- .text.__copybits
- 0x0000000000013958 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000013958 __copybits
- .text.__any_on
- 0x000000000001398e 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x000000000001398e __any_on
- .text._calloc_r
- 0x00000000000139d4 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
- 0x00000000000139d4 _calloc_r
- .text._realloc_r
- 0x00000000000139fc 0x5a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- 0x00000000000139fc _realloc_r
- .text.__ssputs_r
- 0x0000000000013a56 0xe4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
- 0x0000000000013a56 __ssputs_r
- .text._svfprintf_r
- 0x0000000000013b3a 0x268 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
- 0x0000000000013b3a _svfiprintf_r
- 0x0000000000013b3a _svfprintf_r
- .text._sungetc_r
- 0x0000000000013da2 0x96 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
- 0x0000000000013da2 _sungetc_r
- .text.__ssrefill_r
- 0x0000000000013e38 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
- 0x0000000000013e38 __ssrefill_r
- .text.__ssvfscanf_r
- 0x0000000000013e7c 0x39e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
- 0x0000000000013e7c __ssvfiscanf_r
- 0x0000000000013e7c __ssvfscanf_r
- .text.__sfputc_r
- 0x000000000001421a 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .text.__sfputs_r
- 0x0000000000014242 0x42 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- 0x0000000000014242 __sfputs_r
- .text._vfprintf_r
- 0x0000000000014284 0x28c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- 0x0000000000014284 _vfprintf_r
- 0x0000000000014284 _vfiprintf_r
- .text._scanf_chars
- 0x0000000000014510 0xe2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
- 0x0000000000014510 _scanf_chars
- .text._scanf_i
- 0x00000000000145f2 0x258 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
- 0x00000000000145f2 _scanf_i
- .text._read_r 0x000000000001484a 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- 0x000000000001484a _read_r
- .text.__sccl 0x0000000000014880 0x82 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
- 0x0000000000014880 __sccl
- .text.strncmp 0x0000000000014902 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
- 0x0000000000014902 strncmp
- .text._strtoul_l.isra.0
- 0x000000000001492a 0x130 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
- .text._strtoul_r
- 0x0000000000014a5a 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
- 0x0000000000014a5a _strtoul_r
- .text.__submore
- 0x0000000000014a6c 0x86 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
- 0x0000000000014a6c __submore
- .text.__ascii_wctomb
- 0x0000000000014af2 0x1e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
- 0x0000000000014af2 __ascii_wctomb
- .text._fstat_r
- 0x0000000000014b10 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- 0x0000000000014b10 _fstat_r
- .text._isatty_r
- 0x0000000000014b42 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- 0x0000000000014b42 _isatty_r
- .text.memmove 0x0000000000014b72 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- 0x0000000000014b72 memmove
- .text._malloc_usable_size_r
- 0x0000000000014bb8 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- 0x0000000000014bb8 _malloc_usable_size_r
- .text.__ledf2 0x0000000000014bcc 0xb6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
- 0x0000000000014bcc __ledf2
- 0x0000000000014bcc __ltdf2
- .text.__fixdfsi
- 0x0000000000014c82 0x68 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
- 0x0000000000014c82 __fixdfsi
- .text.__fixunsdfsi
- 0x0000000000014cea 0x5c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
- 0x0000000000014cea __fixunsdfsi
- .text.__floatunsidf
- 0x0000000000014d46 0x68 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
- 0x0000000000014d46 __floatunsidf
- .text.__extenddftf2
- 0x0000000000014dae 0x1a0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
- 0x0000000000014dae __extenddftf2
- .text.__trunctfdf2
- 0x0000000000014f4e 0x21e d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
- 0x0000000000014f4e __trunctfdf2
- .text._close 0x000000000001516c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- 0x000000000001516c _close
- .text._fstat 0x000000000001517c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- 0x000000000001517c _fstat
- .text._isatty 0x000000000001518c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- 0x000000000001518c _isatty
- .text._lseek 0x000000000001519c 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- 0x000000000001519c _lseek
- .text._read 0x00000000000151ac 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- 0x00000000000151ac _read
- *(.rodata)
- .rodata 0x00000000000151bc 0x100 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- *(.rodata*)
- .rodata.vUser_ws2812b_init.str1.4
- 0x00000000000152bc 0x19 ./components/ws2812b/user_ws2812b.o
- *fill* 0x00000000000152d5 0x3
- .rodata.InvSBox
- 0x00000000000152d8 0x100 ./components/tools/AES_PKCS7.o
- .rodata.SBox 0x00000000000153d8 0x100 ./components/tools/AES_PKCS7.o
- .rodata.TypeA_Set_BitFraming
- 0x00000000000154d8 0x34 ./components/nfc/type_a.o
- .rodata.user_nfc_task_process_event
- 0x000000000001550c 0x1c ./components/nfc/user_nfc.o
- .rodata.prvUser_nfc_upload_card_stat.str1.4
- 0x0000000000015528 0x44 ./components/nfc/user_nfc.o
- .rodata.user_nfc_task_process_event.str1.4
- 0x000000000001556c 0x5f ./components/nfc/user_nfc.o
- *fill* 0x00000000000155cb 0x1
- .rodata.vUser_nfc_init.str1.4
- 0x00000000000155cc 0x15 ./components/nfc/user_nfc.o
- *fill* 0x00000000000155e1 0x3
- .rodata.vUser_nfc_task_start.str1.4
- 0x00000000000155e4 0x13 ./components/nfc/user_nfc.o
- *fill* 0x00000000000155f7 0x1
- .rodata.vUser_led_set_view_stat
- 0x00000000000155f8 0x1c ./components/led/user_led.o
- .rodata.led_task_init.str1.4
- 0x0000000000015614 0x10 ./components/led/user_led.o
- .rodata.electsw_task_process_event.str1.4
- 0x0000000000015624 0x37 ./components/electlock/elect_sw.o
- *fill* 0x000000000001565b 0x1
- .rodata.elect_task_init.str1.4
- 0x000000000001565c 0x12 ./components/electlock/user_elect.o
- *fill* 0x000000000001566e 0x2
- .rodata.User_Config_Read_Config.str1.4
- 0x0000000000015670 0x31 ./components/config/user_config.o
- *fill* 0x00000000000156a1 0x3
- .rodata.Get_Temp.cst4
- 0x00000000000156a4 0x14 ./components/charge/user_adc.o
- .rodata.adc_init.str1.4
- 0x00000000000156b8 0x15 ./components/charge/user_adc.o
- *fill* 0x00000000000156cd 0x3
- .rodata.adc_task_process_event.cst4
- 0x00000000000156d0 0x8 ./components/charge/user_adc.o
- .rodata.user_charge_init.str1.4
- 0x00000000000156d8 0x18 ./components/charge/user_charge.o
- .rodata.vUser_can_init.str1.4
- 0x00000000000156f0 0x15 ./components/can/user_can.o
- *fill* 0x0000000000015705 0x3
- .rodata.vUser_can_set_addr.str1.4
- 0x0000000000015708 0xc ./components/can/user_can.o
- .rodata.download_ble_data_callback.str1.4
- 0x0000000000015714 0x81 ./components/action/ble_action.o
- *fill* 0x0000000000015795 0x3
- .rodata.prvAdc_upload_callback.str1.4
- 0x0000000000015798 0x59 ./components/action/user_sever.o
- *fill* 0x00000000000157f1 0x3
- .rodata.user_server_task_process_event.str1.4
- 0x00000000000157f4 0x1d ./components/action/user_sever.o
- *fill* 0x0000000000015811 0x3
- .rodata.vUser_server_init.str1.4
- 0x0000000000015814 0x18 ./components/action/user_sever.o
- .rodata.main.str1.4
- 0x000000000001582c 0x22 ./User/app_main.o
- *fill* 0x000000000001584e 0x2
- .rodata.peripheralStateNotificationCB
- 0x0000000000015850 0x18 ./User/peripheral.o
- .rodata.Peripheral_ProcessEvent.str1.4
- 0x0000000000015868 0x42 ./User/peripheral.o
- *fill* 0x00000000000158aa 0x2
- .rodata.ble_data_send.str1.4
- 0x00000000000158ac 0xf ./User/peripheral.o
- *fill* 0x00000000000158bb 0x1
- .rodata.peripheralParamUpdateCB.str1.4
- 0x00000000000158bc 0x1e ./User/peripheral.o
- *fill* 0x00000000000158da 0x2
- .rodata.peripheralStateNotificationCB.str1.4
- 0x00000000000158dc 0xb7 ./User/peripheral.o
- *fill* 0x0000000000015993 0x1
- .rodata.devInfo11073Cert
- 0x0000000000015994 0xe ./Profile/devinfoservice.o
- *fill* 0x00000000000159a2 0x2
- .rodata.devInfoFirmwareRev
- 0x00000000000159a4 0x12 ./Profile/devinfoservice.o
- *fill* 0x00000000000159b6 0x2
- .rodata.devInfoHardwareRev
- 0x00000000000159b8 0x12 ./Profile/devinfoservice.o
- *fill* 0x00000000000159ca 0x2
- .rodata.devInfoMfrName
- 0x00000000000159cc 0x12 ./Profile/devinfoservice.o
- *fill* 0x00000000000159de 0x2
- .rodata.devInfoModelNumber
- 0x00000000000159e0 0xd ./Profile/devinfoservice.o
- *fill* 0x00000000000159ed 0x3
- .rodata.devInfoSerialNumber
- 0x00000000000159f0 0xe ./Profile/devinfoservice.o
- *fill* 0x00000000000159fe 0x2
- .rodata.devInfoSoftwareRev
- 0x0000000000015a00 0x12 ./Profile/devinfoservice.o
- *fill* 0x0000000000015a12 0x2
- .rodata.HAL_ProcessEvent.str1.4
- 0x0000000000015a14 0x3 ./HAL/MCU.o
- *fill* 0x0000000000015a17 0x1
- .rodata.WCHBLE_Init.str1.4
- 0x0000000000015a18 0x49 ./HAL/MCU.o
- *fill* 0x0000000000015a61 0x3
- .rodata.HAL_TimeInit.str1.4
- 0x0000000000015a64 0x27 ./HAL/RTC.o
- *fill* 0x0000000000015a8b 0x5
- .rodata.log.cst8
- 0x0000000000015a90 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
- .rodata.log.str1.4
- 0x0000000000015aa0 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
- 0x5 (size before relaxing)
- *fill* 0x0000000000015aa4 0x4
- .rodata.__ieee754_log.cst8
- 0x0000000000015aa8 0x78 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
- .rodata.nan.cst8
- 0x0000000000015b20 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
- .rodata.str1.4
- 0x0000000000015b28 0x1a d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- *fill* 0x0000000000015b42 0x2
- .rodata.str1.4
- 0x0000000000015b44 0x41 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- *fill* 0x0000000000015b85 0x3
- .rodata.__divdf3
- 0x0000000000015b88 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
- .rodata.__muldf3
- 0x0000000000015bc8 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
- .rodata.__divsf3
- 0x0000000000015c08 0x80 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
- .rodata.__mulsf3
- 0x0000000000015c88 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
- .rodata.__clz_tab
- 0x0000000000015cc8 0x100 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clz.o)
- 0x0000000000015cc8 __clz_tab
- .rodata._printf_float.cst8
- 0x0000000000015dc8 0x8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
- .rodata._printf_float.str1.4
- 0x0000000000015dd0 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
- *fill* 0x0000000000015de2 0x2
- .rodata._printf_i.str1.4
- 0x0000000000015de4 0x25 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- *fill* 0x0000000000015e09 0x3
- .rodata._scanf_float.str1.4
- 0x0000000000015e0c 0x5 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
- *fill* 0x0000000000015e11 0x3
- .rodata.nanf.cst4
- 0x0000000000015e14 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
- .rodata._strtod_l
- 0x0000000000015e18 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- *fill* 0x0000000000015e2c 0x4
- .rodata._strtod_l.cst8
- 0x0000000000015e30 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- 0x38 (size before relaxing)
- .rodata._strtod_l.str1.4
- 0x0000000000015e50 0xf d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- *fill* 0x0000000000015e5f 0x1
- .rodata.fpi.3395
- 0x0000000000015e60 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- .rodata.fpinan.3431
- 0x0000000000015e74 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- .rodata.tinytens
- 0x0000000000015e88 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- .rodata._dtoa_r.cst8
- 0x0000000000015eb0 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
- 0x48 (size before relaxing)
- .rodata._dtoa_r.str1.4
- 0x0000000000015ee8 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
- 0x12 (size before relaxing)
- .rodata.__sf_fake_stderr
- 0x0000000000015ef8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x0000000000015ef8 __sf_fake_stderr
- .rodata.__sf_fake_stdin
- 0x0000000000015f18 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x0000000000015f18 __sf_fake_stdin
- .rodata.__sf_fake_stdout
- 0x0000000000015f38 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x0000000000015f38 __sf_fake_stdout
- .rodata._setlocale_r.str1.4
- 0x0000000000015f58 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
- 0xd (size before relaxing)
- .rodata.str1.4
- 0x0000000000015f62 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
- 0x2 (size before relaxing)
- *fill* 0x0000000000015f62 0x6
- .rodata.__mprec_bigtens
- 0x0000000000015f68 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000015f68 __mprec_bigtens
- .rodata.__mprec_tens
- 0x0000000000015f90 0xc8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- 0x0000000000015f90 __mprec_tens
- .rodata.p05.3319
- 0x0000000000016058 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- .rodata._svfprintf_r.str1.4
- 0x0000000000016064 0x13 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
- .rodata.__ssvfscanf_r.str1.4
- 0x0000000000016077 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
- .rodata._vfprintf_r.str1.4
- 0x0000000000016077 0x13 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- *fill* 0x0000000000016077 0x1
- .rodata._scanf_i.str1.4
- 0x0000000000016078 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
- *fill* 0x000000000001608a 0x2
- .rodata.str1.4
- 0x000000000001608c 0xc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
- 0xb (size before relaxing)
- .rodata._ctype_
- 0x0000000000016098 0x101 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ctype_.o)
- 0x0000000000016098 _ctype_
- *(.sdata2.*)
- *fill* 0x0000000000016199 0x3
- .sdata2.Address
- 0x000000000001619c 0x4 ./User/app_main.o
- 0x000000000001619c Address
- .sdata2.devInfo11073CertUUID
- 0x00000000000161a0 0x2 ./Profile/devinfoservice.o
- 0x00000000000161a0 devInfo11073CertUUID
- *fill* 0x00000000000161a2 0x2
- .sdata2.devInfoFirmwareRevUUID
- 0x00000000000161a4 0x2 ./Profile/devinfoservice.o
- 0x00000000000161a4 devInfoFirmwareRevUUID
- *fill* 0x00000000000161a6 0x2
- .sdata2.devInfoHardwareRevUUID
- 0x00000000000161a8 0x2 ./Profile/devinfoservice.o
- 0x00000000000161a8 devInfoHardwareRevUUID
- *fill* 0x00000000000161aa 0x2
- .sdata2.devInfoMfrNameUUID
- 0x00000000000161ac 0x2 ./Profile/devinfoservice.o
- 0x00000000000161ac devInfoMfrNameUUID
- *fill* 0x00000000000161ae 0x2
- .sdata2.devInfoModelNumberUUID
- 0x00000000000161b0 0x2 ./Profile/devinfoservice.o
- 0x00000000000161b0 devInfoModelNumberUUID
- *fill* 0x00000000000161b2 0x2
- .sdata2.devInfoPnpIdUUID
- 0x00000000000161b4 0x2 ./Profile/devinfoservice.o
- 0x00000000000161b4 devInfoPnpIdUUID
- *fill* 0x00000000000161b6 0x2
- .sdata2.devInfoSerialNumberUUID
- 0x00000000000161b8 0x2 ./Profile/devinfoservice.o
- 0x00000000000161b8 devInfoSerialNumberUUID
- *fill* 0x00000000000161ba 0x2
- .sdata2.devInfoServUUID
- 0x00000000000161bc 0x2 ./Profile/devinfoservice.o
- 0x00000000000161bc devInfoServUUID
- *fill* 0x00000000000161be 0x2
- .sdata2.devInfoService
- 0x00000000000161c0 0x8 ./Profile/devinfoservice.o
- .sdata2.devInfoSoftwareRevUUID
- 0x00000000000161c8 0x2 ./Profile/devinfoservice.o
- 0x00000000000161c8 devInfoSoftwareRevUUID
- *fill* 0x00000000000161ca 0x2
- .sdata2.devInfoSystemIdUUID
- 0x00000000000161cc 0x2 ./Profile/devinfoservice.o
- 0x00000000000161cc devInfoSystemIdUUID
- *fill* 0x00000000000161ce 0x2
- .sdata2.simpleProfileServUUID
- 0x00000000000161d0 0x2 ./Profile/gattprofile.o
- 0x00000000000161d0 simpleProfileServUUID
- *fill* 0x00000000000161d2 0x2
- .sdata2.simpleProfileService
- 0x00000000000161d4 0x8 ./Profile/gattprofile.o
- .sdata2.simpleProfilechar1UUID
- 0x00000000000161dc 0x2 ./Profile/gattprofile.o
- 0x00000000000161dc simpleProfilechar1UUID
- *fill* 0x00000000000161de 0x2
- .sdata2.simpleProfilechar2UUID
- 0x00000000000161e0 0x2 ./Profile/gattprofile.o
- 0x00000000000161e0 simpleProfilechar2UUID
- *fill* 0x00000000000161e2 0x2
- .sdata2.simpleProfilechar3UUID
- 0x00000000000161e4 0x2 ./Profile/gattprofile.o
- 0x00000000000161e4 simpleProfilechar3UUID
- *fill* 0x00000000000161e6 0x2
- .sdata2.simpleProfilechar4UUID
- 0x00000000000161e8 0x2 ./Profile/gattprofile.o
- 0x00000000000161e8 simpleProfilechar4UUID
- *fill* 0x00000000000161ea 0x2
- .sdata2._global_impure_ptr
- 0x00000000000161ec 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- 0x00000000000161ec _global_impure_ptr
- *(.gnu.linkonce.t.*)
- 0x00000000000161f0 . = ALIGN (0x4)
- .rela.dyn 0x00000000000161f0 0x0
- .rela.init 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.vector 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text.handle_reset
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._sbrk
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.sdata.curbrk.4953
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.got 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._sbrk_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._write_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._close_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._lseek_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._svfprintf_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text.__ssvfscanf_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._vfprintf_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._read_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._fstat_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._isatty_r
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._close
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._fstat
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._isatty
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._lseek
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .rela.text._read
- 0x00000000000161f0 0x0 ./components/ws2812b/user_ws2812b.o
- .fini 0x00000000000161f0 0x0
- *(SORT_NONE(.fini))
- 0x00000000000161f0 . = ALIGN (0x4)
- [!provide] PROVIDE (_etext = .)
- [!provide] PROVIDE (_eitcm = .)
- .preinit_array 0x00000000000161f0 0x0
- [!provide] PROVIDE (__preinit_array_start = .)
- *(.preinit_array)
- [!provide] PROVIDE (__preinit_array_end = .)
- .init_array 0x00000000000161f0 0x0
- [!provide] PROVIDE (__init_array_start = .)
- *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
- *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
- [!provide] PROVIDE (__init_array_end = .)
- .fini_array 0x00000000000161f0 0x0
- [!provide] PROVIDE (__fini_array_start = .)
- *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
- *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
- [!provide] PROVIDE (__fini_array_end = .)
- .ctors
- *crtbegin.o(.ctors)
- *crtbegin?.o(.ctors)
- *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
- *(SORT_BY_NAME(.ctors.*))
- *(.ctors)
- .dtors
- *crtbegin.o(.dtors)
- *crtbegin?.o(.dtors)
- *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
- *(SORT_BY_NAME(.dtors.*))
- *(.dtors)
- .dalign 0x0000000020004000 0x0 load address 0x00000000000161f0
- 0x0000000020004000 . = ALIGN (0x4)
- 0x0000000020004000 PROVIDE (_data_vma = .)
- .dlalign 0x00000000000161f0 0x0
- 0x00000000000161f0 . = ALIGN (0x4)
- 0x00000000000161f0 PROVIDE (_data_lma = .)
- .data 0x0000000020004000 0x660 load address 0x00000000000161f0
- *(.gnu.linkonce.r.*)
- *(.data .data.*)
- .data.led_work
- 0x0000000020004000 0xb4 ./components/led/user_led.o
- .data.electsw_work
- 0x00000000200040b4 0x20 ./components/electlock/elect_sw.o
- .data.elect_work
- 0x00000000200040d4 0x20 ./components/electlock/user_elect.o
- .data.fan_work
- 0x00000000200040f4 0x10 ./components/charge/user_fan.o
- .data.dipsw_work
- 0x0000000020004104 0x30 ./components/can/dip_sw.o
- .data.key_data
- 0x0000000020004134 0x12 ./components/action/user_sever.o
- *fill* 0x0000000020004146 0x2
- .data.Peripheral_PeripheralCBs
- 0x0000000020004148 0xc ./User/peripheral.o
- .data.advertData
- 0x0000000020004154 0x15 ./User/peripheral.o
- *fill* 0x0000000020004169 0x3
- .data.attDeviceName
- 0x000000002000416c 0x15 ./User/peripheral.o
- *fill* 0x0000000020004181 0x3
- .data.scanRspData
- 0x0000000020004184 0x12 ./User/peripheral.o
- *fill* 0x0000000020004196 0x2
- .data.AHBPrescTable
- 0x0000000020004198 0x10 ./User/system_ch32v20x.o
- 0x0000000020004198 AHBPrescTable
- .data.APBAHBPrescTable
- 0x00000000200041a8 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .data.devInfoAttrTbl
- 0x00000000200041b8 0x130 ./Profile/devinfoservice.o
- .data.devInfoCBs
- 0x00000000200042e8 0xc ./Profile/devinfoservice.o
- 0x00000000200042e8 devInfoCBs
- .data.simpleProfileAttrTbl
- 0x00000000200042f4 0xe0 ./Profile/gattprofile.o
- .data.simpleProfileCBs
- 0x00000000200043d4 0xc ./Profile/gattprofile.o
- 0x00000000200043d4 simpleProfileCBs
- .data.simpleProfileChar1UserDesp
- 0x00000000200043e0 0x12 ./Profile/gattprofile.o
- *fill* 0x00000000200043f2 0x2
- .data.simpleProfileChar2UserDesp
- 0x00000000200043f4 0x12 ./Profile/gattprofile.o
- *fill* 0x0000000020004406 0x2
- .data.simpleProfileChar3UserDesp
- 0x0000000020004408 0x12 ./Profile/gattprofile.o
- *fill* 0x000000002000441a 0x2
- .data.simpleProfileChar4UserDesp
- 0x000000002000441c 0x12 ./Profile/gattprofile.o
- *fill* 0x000000002000442e 0x2
- .data 0x0000000020004430 0xd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- *fill* 0x000000002000443d 0x3
- .data.rel.local
- 0x0000000020004440 0x4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- 0x0000000020004440 base64char
- .data.impure_data
- 0x0000000020004444 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- .data.__global_locale
- 0x00000000200044a4 0x16c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
- 0x00000000200044a4 __global_locale
- *(.gnu.linkonce.d.*)
- 0x0000000020004610 . = ALIGN (0x8)
- *(.sdata .sdata.*)
- .sdata.user_ws2812b_task_id
- 0x0000000020004610 0x1 ./components/ws2812b/user_ws2812b.o
- 0x0000000020004610 user_ws2812b_task_id
- .sdata.user_nfc_task_id
- 0x0000000020004611 0x1 ./components/nfc/user_nfc.o
- 0x0000000020004611 user_nfc_task_id
- .sdata.led_task_id
- 0x0000000020004612 0x1 ./components/led/user_led.o
- 0x0000000020004612 led_task_id
- .sdata.elect_task_id
- 0x0000000020004613 0x1 ./components/electlock/user_elect.o
- 0x0000000020004613 elect_task_id
- .sdata.user_config_param
- 0x0000000020004614 0x6 ./components/config/user_config.o
- 0x0000000020004614 user_config_param
- .sdata.user_charge_task_id
- 0x000000002000461a 0x1 ./components/charge/user_charge.o
- 0x000000002000461a user_charge_task_id
- .sdata.user_can_task_id
- 0x000000002000461b 0x1 ./components/can/user_can.o
- 0x000000002000461b user_can_task_id
- .sdata.can_idx
- 0x000000002000461c 0x1 ./components/action/user_sever.o
- *fill* 0x000000002000461d 0x3
- .sdata.offline_timeout
- 0x0000000020004620 0x4 ./components/action/user_sever.o
- .sdata.rst_timeout
- 0x0000000020004624 0x1 ./components/action/user_sever.o
- .sdata.user_server_task_id
- 0x0000000020004625 0x1 ./components/action/user_sever.o
- 0x0000000020004625 user_server_task_id
- *fill* 0x0000000020004626 0x2
- .sdata.Peripheral_SimpleProfileCBs
- 0x0000000020004628 0x4 ./User/peripheral.o
- .sdata.Peripheral_TaskID
- 0x000000002000462c 0x1 ./User/peripheral.o
- .sdata.peripheralMTU
- 0x000000002000462d 0x1 ./User/peripheral.o
- *fill* 0x000000002000462e 0x2
- .sdata.SystemCoreClock
- 0x0000000020004630 0x4 ./User/system_ch32v20x.o
- 0x0000000020004630 SystemCoreClock
- .sdata.ADCPrescTable
- 0x0000000020004634 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .sdata.curbrk.4953
- 0x0000000020004638 0x4 ./SRC/Debug/debug.o
- .sdata.devInfo11073CertProps
- 0x000000002000463c 0x1 ./Profile/devinfoservice.o
- .sdata.devInfoFirmwareRevProps
- 0x000000002000463d 0x1 ./Profile/devinfoservice.o
- .sdata.devInfoHardwareRevProps
- 0x000000002000463e 0x1 ./Profile/devinfoservice.o
- .sdata.devInfoMfrNameProps
- 0x000000002000463f 0x1 ./Profile/devinfoservice.o
- .sdata.devInfoModelNumberProps
- 0x0000000020004640 0x1 ./Profile/devinfoservice.o
- *fill* 0x0000000020004641 0x3
- .sdata.devInfoPnpId
- 0x0000000020004644 0x7 ./Profile/devinfoservice.o
- .sdata.devInfoPnpIdProps
- 0x000000002000464b 0x1 ./Profile/devinfoservice.o
- .sdata.devInfoSerialNumberProps
- 0x000000002000464c 0x1 ./Profile/devinfoservice.o
- .sdata.devInfoSoftwareRevProps
- 0x000000002000464d 0x1 ./Profile/devinfoservice.o
- .sdata.devInfoSystemIdProps
- 0x000000002000464e 0x1 ./Profile/devinfoservice.o
- .sdata.simpleProfileChar1Props
- 0x000000002000464f 0x1 ./Profile/gattprofile.o
- .sdata.simpleProfileChar2Props
- 0x0000000020004650 0x1 ./Profile/gattprofile.o
- .sdata.simpleProfileChar3Props
- 0x0000000020004651 0x1 ./Profile/gattprofile.o
- .sdata.simpleProfileChar4Props
- 0x0000000020004652 0x1 ./Profile/gattprofile.o
- *fill* 0x0000000020004653 0x1
- .sdata.__fdlib_version
- 0x0000000020004654 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_lib_ver.o)
- 0x0000000020004654 __fdlib_version
- .sdata._impure_ptr
- 0x0000000020004658 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- 0x0000000020004658 _impure_ptr
- *(.gnu.linkonce.s.*)
- 0x0000000020004660 . = ALIGN (0x8)
- *fill* 0x000000002000465c 0x4
- *(.srodata.cst16)
- *(.srodata.cst8)
- *(.srodata.cst4)
- *(.srodata.cst2)
- *(.srodata .srodata.*)
- 0x0000000020004660 . = ALIGN (0x4)
- 0x0000000020004660 PROVIDE (_edata = .)
- .got 0x0000000020004660 0x8 load address 0x0000000000016850
- .got 0x0000000020004660 0x8 ./components/ws2812b/user_ws2812b.o
- 0x0000000020004660 _GLOBAL_OFFSET_TABLE_
- .got.plt 0x0000000020004668 0x8 load address 0x0000000000016858
- .got.plt 0x0000000020004668 0x8 ./components/ws2812b/user_ws2812b.o
- .bss 0x0000000020004670 0x23c8 load address 0x0000000000016860
- 0x0000000020004670 . = ALIGN (0x4)
- 0x0000000020004670 PROVIDE (_sbss = .)
- *(.sbss*)
- .sbss.CT 0x0000000020004670 0x2 ./components/nfc/user_nfc.o
- .sbss.nfc_cs_idx
- 0x0000000020004672 0x1 ./components/nfc/user_nfc.o
- *fill* 0x0000000020004673 0x1
- .sbss.xUpload_card_stat
- 0x0000000020004674 0x4 ./components/nfc/user_nfc.o
- .sbss.alarm_stat
- 0x0000000020004678 0x4 ./components/led/user_led.o
- .sbss.electsw_upload
- 0x000000002000467c 0x4 ./components/electlock/elect_sw.o
- 0x000000002000467c electsw_upload
- .sbss.elect_start_stat
- 0x0000000020004680 0x1 ./components/electlock/user_elect.o
- *fill* 0x0000000020004681 0x3
- .sbss.xUpload_stat
- 0x0000000020004684 0x4 ./components/electlock/user_elect.o
- .sbss.Calibrattion_Val
- 0x0000000020004688 0x2 ./components/charge/user_adc.o
- *fill* 0x000000002000468a 0x2
- .sbss.adc_data
- 0x000000002000468c 0x4 ./components/charge/user_adc.o
- .sbss.adc_upload
- 0x0000000020004690 0x4 ./components/charge/user_adc.o
- .sbss.xUpload_stat
- 0x0000000020004694 0x4 ./components/charge/user_charge.o
- .sbss.dipsw_addr
- 0x0000000020004698 0x1 ./components/can/dip_sw.o
- *fill* 0x0000000020004699 0x3
- .sbss.dipsw_upload
- 0x000000002000469c 0x4 ./components/can/dip_sw.o
- 0x000000002000469c dipsw_upload
- .sbss.can_node_id
- 0x00000000200046a0 0x1 ./components/can/user_can.o
- *fill* 0x00000000200046a1 0x3
- .sbss.xRecv_data
- 0x00000000200046a4 0x4 ./components/can/user_can.o
- .sbss.token 0x00000000200046a8 0x4 ./components/action/ble_action.o
- .sbss.unixTime
- 0x00000000200046ac 0x4 ./components/action/ble_action.o
- .sbss.upload_ble_data
- 0x00000000200046b0 0x4 ./components/action/ble_action.o
- .sbss.can_open_data
- 0x00000000200046b4 0x8 ./components/action/user_sever.o
- .sbss.left_fan_speed
- 0x00000000200046bc 0x1 ./components/action/user_sever.o
- .sbss.offline_stat
- 0x00000000200046bd 0x1 ./components/action/user_sever.o
- .sbss.right_fan_speed
- 0x00000000200046be 0x1 ./components/action/user_sever.o
- *fill* 0x00000000200046bf 0x1
- .sbss.MacAddr 0x00000000200046c0 0x6 ./User/app_main.o
- 0x00000000200046c0 MacAddr
- *fill* 0x00000000200046c6 0x2
- .sbss.Broadcaster_BroadcasterCBs
- 0x00000000200046c8 0x8 ./User/peripheral.o
- .sbss.ble_connect
- 0x00000000200046d0 0x4 ./User/peripheral.o
- .sbss.download_ble_data
- 0x00000000200046d4 0x4 ./User/peripheral.o
- .sbss.download_ble_file
- 0x00000000200046d8 0x4 ./User/peripheral.o
- .sbss.peripheralConnList
- 0x00000000200046dc 0x8 ./User/peripheral.o
- .sbss.NVIC_Priority_Group
- 0x00000000200046e4 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
- 0x00000000200046e4 NVIC_Priority_Group
- .sbss.p_ms 0x00000000200046e8 0x2 ./SRC/Debug/debug.o
- .sbss.p_us 0x00000000200046ea 0x1 ./SRC/Debug/debug.o
- *fill* 0x00000000200046eb 0x1
- .sbss.devInfoSystemId
- 0x00000000200046ec 0x8 ./Profile/devinfoservice.o
- .sbss.simpleProfile_AppCBs
- 0x00000000200046f4 0x4 ./Profile/gattprofile.o
- .sbss.g_LLE_IRQLibHandlerLocation
- 0x00000000200046f8 0x4 ./HAL/MCU.o
- 0x00000000200046f8 g_LLE_IRQLibHandlerLocation
- .sbss.halTaskID
- 0x00000000200046fc 0x1 ./HAL/MCU.o
- 0x00000000200046fc halTaskID
- *fill* 0x00000000200046fd 0x3
- .sbss.RTCTigFlag
- 0x0000000020004700 0x4 ./HAL/RTC.o
- 0x0000000020004700 RTCTigFlag
- .sbss.__malloc_free_list
- 0x0000000020004704 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- 0x0000000020004704 __malloc_free_list
- .sbss.__malloc_sbrk_start
- 0x0000000020004708 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- 0x0000000020004708 __malloc_sbrk_start
- *(.gnu.linkonce.sb.*)
- *(.bss*)
- .bss.user_ws2812b_work
- 0x000000002000470c 0xc ./components/ws2812b/user_ws2812b.o
- .bss.g_roundKeyTable
- 0x0000000020004718 0xb0 ./components/tools/AES_PKCS7.o
- .bss.IDA 0x00000000200047c8 0xf ./components/nfc/user_nfc.o
- *fill* 0x00000000200047d7 0x1
- .bss.nfc_work 0x00000000200047d8 0x4c ./components/nfc/user_nfc.o
- .bss.tmpValue 0x0000000020004824 0x190 ./components/charge/user_adc.o
- .bss.user_can_work
- 0x00000000200049b4 0x20 ./components/can/user_can.o
- *fill* 0x00000000200049d4 0x4
- .bss.block_buf
- 0x00000000200049d8 0x100 ./components/action/ble_action.o
- 0x00000000200049d8 block_buf
- .bss.MEM_BUF 0x0000000020004ad8 0x1c00 ./User/app_main.o
- 0x0000000020004ad8 MEM_BUF
- .bss.Peripheral_BondMgrCBs
- 0x00000000200066d8 0xc ./User/peripheral.o
- .bss.simpleProfileChar1
- 0x00000000200066e4 0x100 ./Profile/gattprofile.o
- .bss.simpleProfileChar2
- 0x00000000200067e4 0x100 ./Profile/gattprofile.o
- .bss.simpleProfileChar3
- 0x00000000200068e4 0x100 ./Profile/gattprofile.o
- .bss.simpleProfileChar4
- 0x00000000200069e4 0x40 ./Profile/gattprofile.o
- .bss.simpleProfileChar4Config
- 0x0000000020006a24 0x10 ./Profile/gattprofile.o
- *(.gnu.linkonce.b.*)
- *(COMMON*)
- COMMON 0x0000000020006a34 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- 0x0000000020006a34 errno
- 0x0000000020006a38 . = ALIGN (0x4)
- 0x0000000020006a38 PROVIDE (_ebss = .)
- 0x0000000020006a38 PROVIDE (_end = _ebss)
- [!provide] PROVIDE (end = .)
- .stack 0x0000000020010000 0x0
- 0x0000000020010000 PROVIDE (_heap_end = .)
- 0x0000000020010000 . = ALIGN (0x4)
- 0x0000000020010000 PROVIDE (_eusrstack = .)
- OUTPUT(mainboard.elf elf32-littleriscv)
- .debug_info 0x0000000000000000 0x39a02
- .debug_info 0x0000000000000000 0xeb6 ./components/ws2812b/user_ws2812b.o
- .debug_info 0x0000000000000eb6 0x12e1 ./components/ws2812b/ws2812b_spi.o
- .debug_info 0x0000000000002197 0x1170 ./components/tools/AES_PKCS7.o
- .debug_info 0x0000000000003307 0x11e2 ./components/tools/_string.o
- .debug_info 0x00000000000044e9 0xb67 ./components/tools/tools.o
- .debug_info 0x0000000000005050 0x2000 ./components/nfc/fm175xx.o
- .debug_info 0x0000000000007050 0x19e7 ./components/nfc/lpcd.o
- .debug_info 0x0000000000008a37 0x15e7 ./components/nfc/type_a.o
- .debug_info 0x000000000000a01e 0x197e ./components/nfc/user_nfc.o
- .debug_info 0x000000000000b99c 0xefe ./components/nfc/user_spi.o
- .debug_info 0x000000000000c89a 0x11d0 ./components/led/user_led.o
- .debug_info 0x000000000000da6a 0xf34 ./components/electlock/elect_sw.o
- .debug_info 0x000000000000e99e 0x125f ./components/electlock/user_elect.o
- .debug_info 0x000000000000fbfd 0xdf9 ./components/config/user_config.o
- .debug_info 0x00000000000109f6 0x18f4 ./components/charge/user_adc.o
- .debug_info 0x00000000000122ea 0x1021 ./components/charge/user_charge.o
- .debug_info 0x000000000001330b 0x1403 ./components/charge/user_fan.o
- .debug_info 0x000000000001470e 0x10c1 ./components/can/dip_sw.o
- .debug_info 0x00000000000157cf 0x19be ./components/can/user_can.o
- .debug_info 0x000000000001718d 0x1ec1 ./components/action/ble_action.o
- .debug_info 0x000000000001904e 0x1d6e ./components/action/user_sever.o
- .debug_info 0x000000000001adbc 0xfae ./User/app_main.o
- .debug_info 0x000000000001bd6a 0x1182 ./User/ch32v20x_it.o
- .debug_info 0x000000000001ceec 0x2de1 ./User/peripheral.o
- .debug_info 0x000000000001fccd 0xb89 ./User/system_ch32v20x.o
- .debug_info 0x0000000000020856 0x22 ./Startup/startup_ch32v20x_D8W.o
- .debug_info 0x0000000000020878 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_info 0x0000000000021f60 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_info 0x0000000000023766 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_info 0x00000000000241fa 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_info 0x0000000000024f1b 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_info 0x0000000000025b28 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_info 0x0000000000027105 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_info 0x00000000000282a9 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_info 0x0000000000028e1d 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_info 0x0000000000029cb3 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_info 0x000000000002ad07 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_info 0x000000000002bf80 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_info 0x000000000002cf42 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_info 0x000000000002e203 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_info 0x0000000000030cc3 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_info 0x0000000000032003 0xf2d ./SRC/Debug/debug.o
- .debug_info 0x0000000000032f30 0x10b9 ./Profile/devinfoservice.o
- .debug_info 0x0000000000033fe9 0x1476 ./Profile/gattprofile.o
- .debug_info 0x000000000003545f 0x22 ./LIB/ble_task_scheduler.o
- .debug_info 0x0000000000035481 0x1a85 ./HAL/MCU.o
- .debug_info 0x0000000000036f06 0xd55 ./HAL/RTC.o
- .debug_info 0x0000000000037c5b 0x107e d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .debug_info 0x0000000000038cd9 0x161 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .debug_info 0x0000000000038e3a 0xbc8 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_abbrev 0x0000000000000000 0xa8dd
- .debug_abbrev 0x0000000000000000 0x3e9 ./components/ws2812b/user_ws2812b.o
- .debug_abbrev 0x00000000000003e9 0x29f ./components/ws2812b/ws2812b_spi.o
- .debug_abbrev 0x0000000000000688 0x408 ./components/tools/AES_PKCS7.o
- .debug_abbrev 0x0000000000000a90 0x38e ./components/tools/_string.o
- .debug_abbrev 0x0000000000000e1e 0x30f ./components/tools/tools.o
- .debug_abbrev 0x000000000000112d 0x46e ./components/nfc/fm175xx.o
- .debug_abbrev 0x000000000000159b 0x428 ./components/nfc/lpcd.o
- .debug_abbrev 0x00000000000019c3 0x340 ./components/nfc/type_a.o
- .debug_abbrev 0x0000000000001d03 0x508 ./components/nfc/user_nfc.o
- .debug_abbrev 0x000000000000220b 0x2a4 ./components/nfc/user_spi.o
- .debug_abbrev 0x00000000000024af 0x462 ./components/led/user_led.o
- .debug_abbrev 0x0000000000002911 0x38b ./components/electlock/elect_sw.o
- .debug_abbrev 0x0000000000002c9c 0x409 ./components/electlock/user_elect.o
- .debug_abbrev 0x00000000000030a5 0x377 ./components/config/user_config.o
- .debug_abbrev 0x000000000000341c 0x488 ./components/charge/user_adc.o
- .debug_abbrev 0x00000000000038a4 0x377 ./components/charge/user_charge.o
- .debug_abbrev 0x0000000000003c1b 0x349 ./components/charge/user_fan.o
- .debug_abbrev 0x0000000000003f64 0x3ff ./components/can/dip_sw.o
- .debug_abbrev 0x0000000000004363 0x424 ./components/can/user_can.o
- .debug_abbrev 0x0000000000004787 0x596 ./components/action/ble_action.o
- .debug_abbrev 0x0000000000004d1d 0x494 ./components/action/user_sever.o
- .debug_abbrev 0x00000000000051b1 0x2bc ./User/app_main.o
- .debug_abbrev 0x000000000000546d 0x2e1 ./User/ch32v20x_it.o
- .debug_abbrev 0x000000000000574e 0x4a1 ./User/peripheral.o
- .debug_abbrev 0x0000000000005bef 0x2c0 ./User/system_ch32v20x.o
- .debug_abbrev 0x0000000000005eaf 0x12 ./Startup/startup_ch32v20x_D8W.o
- .debug_abbrev 0x0000000000005ec1 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_abbrev 0x000000000000626d 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_abbrev 0x000000000000665b 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_abbrev 0x0000000000006952 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_abbrev 0x0000000000006c54 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_abbrev 0x0000000000006f2e 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_abbrev 0x0000000000007396 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_abbrev 0x00000000000076ea 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_abbrev 0x000000000000796c 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_abbrev 0x0000000000007c56 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_abbrev 0x0000000000007ff2 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_abbrev 0x0000000000008366 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_abbrev 0x0000000000008690 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_abbrev 0x00000000000089b5 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_abbrev 0x0000000000008de6 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_abbrev 0x000000000000910b 0x2f0 ./SRC/Debug/debug.o
- .debug_abbrev 0x00000000000093fb 0x310 ./Profile/devinfoservice.o
- .debug_abbrev 0x000000000000970b 0x3b7 ./Profile/gattprofile.o
- .debug_abbrev 0x0000000000009ac2 0x12 ./LIB/ble_task_scheduler.o
- .debug_abbrev 0x0000000000009ad4 0x43e ./HAL/MCU.o
- .debug_abbrev 0x0000000000009f12 0x2b4 ./HAL/RTC.o
- .debug_abbrev 0x000000000000a1c6 0x37f d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .debug_abbrev 0x000000000000a545 0xdd d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .debug_abbrev 0x000000000000a622 0x2bb d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_loc 0x0000000000000000 0xeb7d
- .debug_loc 0x0000000000000000 0x1be ./components/ws2812b/user_ws2812b.o
- .debug_loc 0x00000000000001be 0xa5 ./components/ws2812b/ws2812b_spi.o
- .debug_loc 0x0000000000000263 0x753 ./components/tools/AES_PKCS7.o
- .debug_loc 0x00000000000009b6 0xdad ./components/tools/_string.o
- .debug_loc 0x0000000000001763 0x12e ./components/tools/tools.o
- .debug_loc 0x0000000000001891 0xfc8 ./components/nfc/fm175xx.o
- .debug_loc 0x0000000000002859 0x4bb ./components/nfc/lpcd.o
- .debug_loc 0x0000000000002d14 0x9fc ./components/nfc/type_a.o
- .debug_loc 0x0000000000003710 0x472 ./components/nfc/user_nfc.o
- .debug_loc 0x0000000000003b82 0xb8 ./components/nfc/user_spi.o
- .debug_loc 0x0000000000003c3a 0x44c ./components/led/user_led.o
- .debug_loc 0x0000000000004086 0xa8 ./components/electlock/elect_sw.o
- .debug_loc 0x000000000000412e 0x2a2 ./components/electlock/user_elect.o
- .debug_loc 0x00000000000043d0 0x186 ./components/config/user_config.o
- .debug_loc 0x0000000000004556 0x20d ./components/charge/user_adc.o
- .debug_loc 0x0000000000004763 0x1bd ./components/charge/user_charge.o
- .debug_loc 0x0000000000004920 0x12c ./components/charge/user_fan.o
- .debug_loc 0x0000000000004a4c 0xd2 ./components/can/dip_sw.o
- .debug_loc 0x0000000000004b1e 0x35b ./components/can/user_can.o
- .debug_loc 0x0000000000004e79 0x5a2 ./components/action/ble_action.o
- .debug_loc 0x000000000000541b 0x4d6 ./components/action/user_sever.o
- .debug_loc 0x00000000000058f1 0x69e ./User/peripheral.o
- .debug_loc 0x0000000000005f8f 0xc2 ./User/system_ch32v20x.o
- .debug_loc 0x0000000000006051 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_loc 0x0000000000006b2b 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_loc 0x00000000000074c4 0x6e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_loc 0x0000000000007532 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_loc 0x0000000000007687 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_loc 0x0000000000007808 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_loc 0x00000000000084ca 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_loc 0x0000000000008bd1 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_loc 0x0000000000008c39 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_loc 0x0000000000008c66 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_loc 0x0000000000008f04 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_loc 0x00000000000096b1 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_loc 0x0000000000009c00 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_loc 0x000000000000a1c9 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_loc 0x000000000000bc85 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_loc 0x000000000000c3d7 0x1a8 ./SRC/Debug/debug.o
- .debug_loc 0x000000000000c57f 0x419 ./Profile/devinfoservice.o
- .debug_loc 0x000000000000c998 0xb8e ./Profile/gattprofile.o
- .debug_loc 0x000000000000d526 0x40c ./HAL/MCU.o
- .debug_loc 0x000000000000d932 0x8b ./HAL/RTC.o
- .debug_loc 0x000000000000d9bd 0x559 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .debug_loc 0x000000000000df16 0x569 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .debug_loc 0x000000000000e47f 0x6fe d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_aranges 0x0000000000000000 0x1790
- .debug_aranges
- 0x0000000000000000 0x48 ./components/ws2812b/user_ws2812b.o
- .debug_aranges
- 0x0000000000000048 0x30 ./components/ws2812b/ws2812b_spi.o
- .debug_aranges
- 0x0000000000000078 0x58 ./components/tools/AES_PKCS7.o
- .debug_aranges
- 0x00000000000000d0 0xc8 ./components/tools/_string.o
- .debug_aranges
- 0x0000000000000198 0x38 ./components/tools/tools.o
- .debug_aranges
- 0x00000000000001d0 0xc0 ./components/nfc/fm175xx.o
- .debug_aranges
- 0x0000000000000290 0xc8 ./components/nfc/lpcd.o
- .debug_aranges
- 0x0000000000000358 0x70 ./components/nfc/type_a.o
- .debug_aranges
- 0x00000000000003c8 0x80 ./components/nfc/user_nfc.o
- .debug_aranges
- 0x0000000000000448 0x28 ./components/nfc/user_spi.o
- .debug_aranges
- 0x0000000000000470 0x50 ./components/led/user_led.o
- .debug_aranges
- 0x00000000000004c0 0x58 ./components/electlock/elect_sw.o
- .debug_aranges
- 0x0000000000000518 0x58 ./components/electlock/user_elect.o
- .debug_aranges
- 0x0000000000000570 0x50 ./components/config/user_config.o
- .debug_aranges
- 0x00000000000005c0 0x50 ./components/charge/user_adc.o
- .debug_aranges
- 0x0000000000000610 0x40 ./components/charge/user_charge.o
- .debug_aranges
- 0x0000000000000650 0x38 ./components/charge/user_fan.o
- .debug_aranges
- 0x0000000000000688 0x60 ./components/can/dip_sw.o
- .debug_aranges
- 0x00000000000006e8 0x50 ./components/can/user_can.o
- .debug_aranges
- 0x0000000000000738 0x98 ./components/action/ble_action.o
- .debug_aranges
- 0x00000000000007d0 0x80 ./components/action/user_sever.o
- .debug_aranges
- 0x0000000000000850 0x28 ./User/app_main.o
- .debug_aranges
- 0x0000000000000878 0x48 ./User/ch32v20x_it.o
- .debug_aranges
- 0x00000000000008c0 0x70 ./User/peripheral.o
- .debug_aranges
- 0x0000000000000930 0x28 ./User/system_ch32v20x.o
- .debug_aranges
- 0x0000000000000958 0x30 ./Startup/startup_ch32v20x_D8W.o
- .debug_aranges
- 0x0000000000000988 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_aranges
- 0x0000000000000ad8 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_aranges
- 0x0000000000000bb0 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_aranges
- 0x0000000000000bf8 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_aranges
- 0x0000000000000c58 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_aranges
- 0x0000000000000ca8 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_aranges
- 0x0000000000000db8 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_aranges
- 0x0000000000000e68 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_aranges
- 0x0000000000000eb0 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_aranges
- 0x0000000000000ed8 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_aranges
- 0x0000000000000f60 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_aranges
- 0x0000000000001090 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_aranges
- 0x0000000000001118 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_aranges
- 0x00000000000011e8 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_aranges
- 0x00000000000014b8 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_aranges
- 0x00000000000015a8 0x50 ./SRC/Debug/debug.o
- .debug_aranges
- 0x00000000000015f8 0x38 ./Profile/devinfoservice.o
- .debug_aranges
- 0x0000000000001630 0x58 ./Profile/gattprofile.o
- .debug_aranges
- 0x0000000000001688 0x28 ./LIB/ble_task_scheduler.o
- .debug_aranges
- 0x00000000000016b0 0x50 ./HAL/MCU.o
- .debug_aranges
- 0x0000000000001700 0x30 ./HAL/RTC.o
- .debug_aranges
- 0x0000000000001730 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .debug_aranges
- 0x0000000000001750 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .debug_aranges
- 0x0000000000001770 0x20 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_ranges 0x0000000000000000 0x2390
- .debug_ranges 0x0000000000000000 0xa8 ./components/ws2812b/user_ws2812b.o
- .debug_ranges 0x00000000000000a8 0x20 ./components/ws2812b/ws2812b_spi.o
- .debug_ranges 0x00000000000000c8 0xe0 ./components/tools/AES_PKCS7.o
- .debug_ranges 0x00000000000001a8 0xd8 ./components/tools/_string.o
- .debug_ranges 0x0000000000000280 0x40 ./components/tools/tools.o
- .debug_ranges 0x00000000000002c0 0x2a8 ./components/nfc/fm175xx.o
- .debug_ranges 0x0000000000000568 0x140 ./components/nfc/lpcd.o
- .debug_ranges 0x00000000000006a8 0x60 ./components/nfc/type_a.o
- .debug_ranges 0x0000000000000708 0xe0 ./components/nfc/user_nfc.o
- .debug_ranges 0x00000000000007e8 0x18 ./components/nfc/user_spi.o
- .debug_ranges 0x0000000000000800 0xf8 ./components/led/user_led.o
- .debug_ranges 0x00000000000008f8 0xa0 ./components/electlock/elect_sw.o
- .debug_ranges 0x0000000000000998 0xc8 ./components/electlock/user_elect.o
- .debug_ranges 0x0000000000000a60 0x40 ./components/config/user_config.o
- .debug_ranges 0x0000000000000aa0 0x60 ./components/charge/user_adc.o
- .debug_ranges 0x0000000000000b00 0x50 ./components/charge/user_charge.o
- .debug_ranges 0x0000000000000b50 0x48 ./components/charge/user_fan.o
- .debug_ranges 0x0000000000000b98 0xc0 ./components/can/dip_sw.o
- .debug_ranges 0x0000000000000c58 0x158 ./components/can/user_can.o
- .debug_ranges 0x0000000000000db0 0x1b0 ./components/action/ble_action.o
- .debug_ranges 0x0000000000000f60 0x228 ./components/action/user_sever.o
- .debug_ranges 0x0000000000001188 0x18 ./User/app_main.o
- .debug_ranges 0x00000000000011a0 0x38 ./User/ch32v20x_it.o
- .debug_ranges 0x00000000000011d8 0xf8 ./User/peripheral.o
- .debug_ranges 0x00000000000012d0 0x38 ./User/system_ch32v20x.o
- .debug_ranges 0x0000000000001308 0x28 ./Startup/startup_ch32v20x_D8W.o
- .debug_ranges 0x0000000000001330 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_ranges 0x0000000000001470 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_ranges 0x0000000000001568 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_ranges 0x00000000000015b8 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_ranges 0x0000000000001608 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_ranges 0x0000000000001648 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_ranges 0x0000000000001748 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_ranges 0x00000000000017e8 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_ranges 0x0000000000001820 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_ranges 0x0000000000001868 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_ranges 0x00000000000018e0 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_ranges 0x0000000000001a00 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_ranges 0x0000000000001a78 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_ranges 0x0000000000001b38 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_ranges 0x0000000000001e40 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_ranges 0x0000000000001f20 0x40 ./SRC/Debug/debug.o
- .debug_ranges 0x0000000000001f60 0x28 ./Profile/devinfoservice.o
- .debug_ranges 0x0000000000001f88 0x128 ./Profile/gattprofile.o
- .debug_ranges 0x00000000000020b0 0x20 ./LIB/ble_task_scheduler.o
- .debug_ranges 0x00000000000020d0 0x88 ./HAL/MCU.o
- .debug_ranges 0x0000000000002158 0x20 ./HAL/RTC.o
- .debug_ranges 0x0000000000002178 0x28 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .debug_ranges 0x00000000000021a0 0x1f0 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_line 0x0000000000000000 0x2b91c
- .debug_line 0x0000000000000000 0x98b ./components/ws2812b/user_ws2812b.o
- .debug_line 0x000000000000098b 0x8f4 ./components/ws2812b/ws2812b_spi.o
- .debug_line 0x000000000000127f 0xc31 ./components/tools/AES_PKCS7.o
- .debug_line 0x0000000000001eb0 0x1222 ./components/tools/_string.o
- .debug_line 0x00000000000030d2 0x5c3 ./components/tools/tools.o
- .debug_line 0x0000000000003695 0x1641 ./components/nfc/fm175xx.o
- .debug_line 0x0000000000004cd6 0x132b ./components/nfc/lpcd.o
- .debug_line 0x0000000000006001 0x12f0 ./components/nfc/type_a.o
- .debug_line 0x00000000000072f1 0x156e ./components/nfc/user_nfc.o
- .debug_line 0x000000000000885f 0x7f0 ./components/nfc/user_spi.o
- .debug_line 0x000000000000904f 0xf13 ./components/led/user_led.o
- .debug_line 0x0000000000009f62 0x999 ./components/electlock/elect_sw.o
- .debug_line 0x000000000000a8fb 0xbbb ./components/electlock/user_elect.o
- .debug_line 0x000000000000b4b6 0x7fc ./components/config/user_config.o
- .debug_line 0x000000000000bcb2 0xdeb ./components/charge/user_adc.o
- .debug_line 0x000000000000ca9d 0x89f ./components/charge/user_charge.o
- .debug_line 0x000000000000d33c 0x8e3 ./components/charge/user_fan.o
- .debug_line 0x000000000000dc1f 0xacf ./components/can/dip_sw.o
- .debug_line 0x000000000000e6ee 0xeb4 ./components/can/user_can.o
- .debug_line 0x000000000000f5a2 0x1854 ./components/action/ble_action.o
- .debug_line 0x0000000000010df6 0x18e4 ./components/action/user_sever.o
- .debug_line 0x00000000000126da 0xac7 ./User/app_main.o
- .debug_line 0x00000000000131a1 0x835 ./User/ch32v20x_it.o
- .debug_line 0x00000000000139d6 0xf8f ./User/peripheral.o
- .debug_line 0x0000000000014965 0x7e3 ./User/system_ch32v20x.o
- .debug_line 0x0000000000015148 0x128 ./Startup/startup_ch32v20x_D8W.o
- .debug_line 0x0000000000015270 0x19e7 ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_line 0x0000000000016c57 0x1b79 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_line 0x00000000000187d0 0x49e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_line 0x0000000000018c6e 0x8f6 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_line 0x0000000000019564 0x715 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_line 0x0000000000019c79 0x26a2 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_line 0x000000000001c31b 0x11e0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_line 0x000000000001d4fb 0x534 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_line 0x000000000001da2f 0x51c ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_line 0x000000000001df4b 0xcf4 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_line 0x000000000001ec3f 0x132c ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_line 0x000000000001ff6b 0x16ec ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_line 0x0000000000021657 0xee0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_line 0x0000000000022537 0x3354 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_line 0x000000000002588b 0x1004 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_line 0x000000000002688f 0x8ac ./SRC/Debug/debug.o
- .debug_line 0x000000000002713b 0x934 ./Profile/devinfoservice.o
- .debug_line 0x0000000000027a6f 0xc3f ./Profile/gattprofile.o
- .debug_line 0x00000000000286ae 0x2ef ./LIB/ble_task_scheduler.o
- .debug_line 0x000000000002899d 0xf75 ./HAL/MCU.o
- .debug_line 0x0000000000029912 0x7e0 ./HAL/RTC.o
- .debug_line 0x000000000002a0f2 0x60d d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .debug_line 0x000000000002a6ff 0x5f4 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .debug_line 0x000000000002acf3 0xc29 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_str 0x0000000000000000 0x8d02
- .debug_str 0x0000000000000000 0x7af ./components/ws2812b/user_ws2812b.o
- 0x88a (size before relaxing)
- .debug_str 0x00000000000007af 0x832 ./components/ws2812b/ws2812b_spi.o
- 0xeed (size before relaxing)
- .debug_str 0x0000000000000fe1 0x14c ./components/tools/AES_PKCS7.o
- 0x738 (size before relaxing)
- .debug_str 0x000000000000112d 0x192 ./components/tools/_string.o
- 0x78b (size before relaxing)
- .debug_str 0x00000000000012bf 0xa2 ./components/tools/tools.o
- 0x6d0 (size before relaxing)
- .debug_str 0x0000000000001361 0x32b ./components/nfc/fm175xx.o
- 0x9a1 (size before relaxing)
- .debug_str 0x000000000000168c 0x2b5 ./components/nfc/lpcd.o
- 0xa8c (size before relaxing)
- .debug_str 0x0000000000001941 0x164 ./components/nfc/type_a.o
- 0x808 (size before relaxing)
- .debug_str 0x0000000000001aa5 0x3a6 ./components/nfc/user_nfc.o
- 0xd14 (size before relaxing)
- .debug_str 0x0000000000001e4b 0x5f ./components/nfc/user_spi.o
- 0x984 (size before relaxing)
- .debug_str 0x0000000000001eaa 0x369 ./components/led/user_led.o
- 0xa54 (size before relaxing)
- .debug_str 0x0000000000002213 0x248 ./components/electlock/elect_sw.o
- 0xa16 (size before relaxing)
- .debug_str 0x000000000000245b 0x1b4 ./components/electlock/user_elect.o
- 0xa80 (size before relaxing)
- .debug_str 0x000000000000260f 0x1ea ./components/config/user_config.o
- 0x858 (size before relaxing)
- .debug_str 0x00000000000027f9 0x406 ./components/charge/user_adc.o
- 0x11b1 (size before relaxing)
- .debug_str 0x0000000000002bff 0xf8 ./components/charge/user_charge.o
- 0xa7e (size before relaxing)
- .debug_str 0x0000000000002cf7 0x40a ./components/charge/user_fan.o
- 0xc5c (size before relaxing)
- .debug_str 0x0000000000003101 0x1d1 ./components/can/dip_sw.o
- 0xadd (size before relaxing)
- .debug_str 0x00000000000032d2 0x424 ./components/can/user_can.o
- 0x11ec (size before relaxing)
- .debug_str 0x00000000000036f6 0x5cf ./components/action/ble_action.o
- 0xfd4 (size before relaxing)
- .debug_str 0x0000000000003cc5 0x46a ./components/action/user_sever.o
- 0x1120 (size before relaxing)
- .debug_str 0x000000000000412f 0x108 ./User/app_main.o
- 0xa98 (size before relaxing)
- .debug_str 0x0000000000004237 0xe7 ./User/ch32v20x_it.o
- 0xa5d (size before relaxing)
- .debug_str 0x000000000000431e 0xe7b ./User/peripheral.o
- 0x1612 (size before relaxing)
- .debug_str 0x0000000000005199 0xf5 ./User/system_ch32v20x.o
- 0x709 (size before relaxing)
- .debug_str 0x000000000000528e 0x2e ./Startup/startup_ch32v20x_D8W.o
- 0x84 (size before relaxing)
- .debug_str 0x00000000000052bc 0x454 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0xca5 (size before relaxing)
- .debug_str 0x0000000000005710 0x2dd ./SRC/Peripheral/src/ch32v20x_can.o
- 0xc49 (size before relaxing)
- .debug_str 0x00000000000059ed 0xcf ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- 0x6d4 (size before relaxing)
- .debug_str 0x0000000000005abc 0x10c ./SRC/Peripheral/src/ch32v20x_dma.o
- 0x881 (size before relaxing)
- .debug_str 0x0000000000005bc8 0x1ff ./SRC/Peripheral/src/ch32v20x_exti.o
- 0x81b (size before relaxing)
- .debug_str 0x0000000000005dc7 0x4ca ./SRC/Peripheral/src/ch32v20x_flash.o
- 0xbad (size before relaxing)
- .debug_str 0x0000000000006291 0x24d ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0xa3e (size before relaxing)
- .debug_str 0x00000000000064de 0x108 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x792 (size before relaxing)
- .debug_str 0x00000000000065e6 0x106 ./SRC/Peripheral/src/ch32v20x_misc.o
- 0xb5d (size before relaxing)
- .debug_str 0x00000000000066ec 0x1ee ./SRC/Peripheral/src/ch32v20x_pwr.o
- 0x8ea (size before relaxing)
- .debug_str 0x00000000000068da 0x3d3 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0xb5c (size before relaxing)
- .debug_str 0x0000000000006cad 0x307 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x9c3 (size before relaxing)
- .debug_str 0x0000000000006fb4 0x27d ./SRC/Peripheral/src/ch32v20x_spi.o
- 0xb1d (size before relaxing)
- .debug_str 0x0000000000007231 0x903 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x1347 (size before relaxing)
- .debug_str 0x0000000000007b34 0x42d ./SRC/Peripheral/src/ch32v20x_usart.o
- 0xb78 (size before relaxing)
- .debug_str 0x0000000000007f61 0xe2 ./SRC/Debug/debug.o
- 0x99f (size before relaxing)
- .debug_str 0x0000000000008043 0x37a ./Profile/devinfoservice.o
- 0xaea (size before relaxing)
- .debug_str 0x00000000000083bd 0x2ba ./Profile/gattprofile.o
- 0xb97 (size before relaxing)
- .debug_str 0x0000000000008677 0x69 ./LIB/ble_task_scheduler.o
- 0xcb (size before relaxing)
- .debug_str 0x00000000000086e0 0x306 ./HAL/MCU.o
- 0x1177 (size before relaxing)
- .debug_str 0x00000000000089e6 0xde ./HAL/RTC.o
- 0x850 (size before relaxing)
- .debug_str 0x0000000000008ac4 0x187 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- 0x6d2 (size before relaxing)
- .debug_str 0x0000000000008c4b 0x44 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- 0x116 (size before relaxing)
- .debug_str 0x0000000000008c8f 0x73 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- 0x5d9 (size before relaxing)
- .comment 0x0000000000000000 0x66
- .comment 0x0000000000000000 0x33 ./components/ws2812b/user_ws2812b.o
- 0x34 (size before relaxing)
- .comment 0x0000000000000033 0x34 ./components/ws2812b/ws2812b_spi.o
- .comment 0x0000000000000033 0x34 ./components/tools/AES_PKCS7.o
- .comment 0x0000000000000033 0x34 ./components/tools/_string.o
- .comment 0x0000000000000033 0x34 ./components/tools/tools.o
- .comment 0x0000000000000033 0x34 ./components/nfc/fm175xx.o
- .comment 0x0000000000000033 0x34 ./components/nfc/lpcd.o
- .comment 0x0000000000000033 0x34 ./components/nfc/type_a.o
- .comment 0x0000000000000033 0x34 ./components/nfc/user_nfc.o
- .comment 0x0000000000000033 0x34 ./components/nfc/user_spi.o
- .comment 0x0000000000000033 0x34 ./components/led/user_led.o
- .comment 0x0000000000000033 0x34 ./components/electlock/elect_sw.o
- .comment 0x0000000000000033 0x34 ./components/electlock/user_elect.o
- .comment 0x0000000000000033 0x34 ./components/config/user_config.o
- .comment 0x0000000000000033 0x34 ./components/charge/user_adc.o
- .comment 0x0000000000000033 0x34 ./components/charge/user_charge.o
- .comment 0x0000000000000033 0x34 ./components/charge/user_fan.o
- .comment 0x0000000000000033 0x34 ./components/can/dip_sw.o
- .comment 0x0000000000000033 0x34 ./components/can/user_can.o
- .comment 0x0000000000000033 0x34 ./components/action/ble_action.o
- .comment 0x0000000000000033 0x34 ./components/action/user_sever.o
- .comment 0x0000000000000033 0x34 ./User/app_main.o
- .comment 0x0000000000000033 0x34 ./User/ch32v20x_it.o
- .comment 0x0000000000000033 0x34 ./User/peripheral.o
- .comment 0x0000000000000033 0x34 ./User/system_ch32v20x.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_adc.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
- .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
- .comment 0x0000000000000033 0x34 ./Profile/devinfoservice.o
- .comment 0x0000000000000033 0x34 ./Profile/gattprofile.o
- .comment 0x0000000000000033 0x34 ./HAL/MCU.o
- .comment 0x0000000000000033 0x34 ./HAL/RTC.o
- .comment 0x0000000000000033 0x33 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- 0x34 (size before relaxing)
- .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .comment 0x0000000000000066 0x34 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_frame 0x0000000000000000 0x5938
- .debug_frame 0x0000000000000000 0xd0 ./components/ws2812b/user_ws2812b.o
- .debug_frame 0x00000000000000d0 0x78 ./components/ws2812b/ws2812b_spi.o
- .debug_frame 0x0000000000000148 0x15c ./components/tools/AES_PKCS7.o
- .debug_frame 0x00000000000002a4 0x278 ./components/tools/_string.o
- .debug_frame 0x000000000000051c 0x6c ./components/tools/tools.o
- .debug_frame 0x0000000000000588 0x2cc ./components/nfc/fm175xx.o
- .debug_frame 0x0000000000000854 0x2f0 ./components/nfc/lpcd.o
- .debug_frame 0x0000000000000b44 0x1b8 ./components/nfc/type_a.o
- .debug_frame 0x0000000000000cfc 0x1a8 ./components/nfc/user_nfc.o
- .debug_frame 0x0000000000000ea4 0x60 ./components/nfc/user_spi.o
- .debug_frame 0x0000000000000f04 0x104 ./components/led/user_led.o
- .debug_frame 0x0000000000001008 0xfc ./components/electlock/elect_sw.o
- .debug_frame 0x0000000000001104 0x120 ./components/electlock/user_elect.o
- .debug_frame 0x0000000000001224 0xb8 ./components/config/user_config.o
- .debug_frame 0x00000000000012dc 0xe4 ./components/charge/user_adc.o
- .debug_frame 0x00000000000013c0 0x88 ./components/charge/user_charge.o
- .debug_frame 0x0000000000001448 0x78 ./components/charge/user_fan.o
- .debug_frame 0x00000000000014c0 0x114 ./components/can/dip_sw.o
- .debug_frame 0x00000000000015d4 0x11c ./components/can/user_can.o
- .debug_frame 0x00000000000016f0 0x1c0 ./components/action/ble_action.o
- .debug_frame 0x00000000000018b0 0x1a8 ./components/action/user_sever.o
- .debug_frame 0x0000000000001a58 0x40 ./User/app_main.o
- .debug_frame 0x0000000000001a98 0x7c ./User/ch32v20x_it.o
- .debug_frame 0x0000000000001b14 0x160 ./User/peripheral.o
- .debug_frame 0x0000000000001c74 0x3c ./User/system_ch32v20x.o
- .debug_frame 0x0000000000001cb0 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_frame 0x0000000000001f6c 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_frame 0x000000000000210c 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_frame 0x000000000000217c 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_frame 0x000000000000223c 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_frame 0x00000000000022cc 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_frame 0x000000000000261c 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_frame 0x0000000000002794 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_frame 0x0000000000002804 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_frame 0x0000000000002834 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_frame 0x0000000000002930 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_frame 0x0000000000002b80 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_frame 0x0000000000002ce8 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_frame 0x0000000000002ea0 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_frame 0x0000000000003508 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_frame 0x00000000000036f8 0xc0 ./SRC/Debug/debug.o
- .debug_frame 0x00000000000037b8 0x80 ./Profile/devinfoservice.o
- .debug_frame 0x0000000000003838 0x154 ./Profile/gattprofile.o
- .debug_frame 0x000000000000398c 0x11c ./HAL/MCU.o
- .debug_frame 0x0000000000003aa8 0x60 ./HAL/RTC.o
- .debug_frame 0x0000000000003b08 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-w_log.o)
- .debug_frame 0x0000000000003b4c 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-e_log.o)
- .debug_frame 0x0000000000003bac 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_matherr.o)
- .debug_frame 0x0000000000003bcc 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libm.a(lib_a-s_nan.o)
- .debug_frame 0x0000000000003bec 0x12c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(dev_transcode.o)
- .debug_frame 0x0000000000003d18 0x30 d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(base64.o)
- .debug_frame 0x0000000000003d48 0x4c d:/git_workspace/bozz/loto/bozz_loto_software/for_can/ISCS_KEY_BASE_CAN/mainboard/components/Lib\libtranscode.a(encrypt.o)
- .debug_frame 0x0000000000003d94 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(adddf3.o)
- .debug_frame 0x0000000000003dd8 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divdf3.o)
- .debug_frame 0x0000000000003e28 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(eqdf2.o)
- .debug_frame 0x0000000000003e48 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(gedf2.o)
- .debug_frame 0x0000000000003e68 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(muldf3.o)
- .debug_frame 0x0000000000003ebc 0x44 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subdf3.o)
- .debug_frame 0x0000000000003f00 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(unorddf2.o)
- .debug_frame 0x0000000000003f20 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsidf.o)
- .debug_frame 0x0000000000003f58 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(addsf3.o)
- .debug_frame 0x0000000000003f98 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(divsf3.o)
- .debug_frame 0x0000000000003fe8 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(mulsf3.o)
- .debug_frame 0x0000000000004038 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(subsf3.o)
- .debug_frame 0x0000000000004074 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixsfsi.o)
- .debug_frame 0x0000000000004094 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatsisf.o)
- .debug_frame 0x00000000000040cc 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extendsfdf2.o)
- .debug_frame 0x0000000000004104 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(truncdfsf2.o)
- .debug_frame 0x0000000000004124 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(_clzsi2.o)
- .debug_frame 0x0000000000004144 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-errno.o)
- .debug_frame 0x0000000000004164 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-malloc.o)
- .debug_frame 0x0000000000004194 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- .debug_frame 0x00000000000041b4 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- .debug_frame 0x00000000000041f4 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- .debug_frame 0x0000000000004234 0xbc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_float.o)
- .debug_frame 0x00000000000042f0 0x8c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- .debug_frame 0x000000000000437c 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_float.o)
- .debug_frame 0x00000000000043dc 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- .debug_frame 0x0000000000004430 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- .debug_frame 0x0000000000004484 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- .debug_frame 0x00000000000044b4 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sf_nan.o)
- .debug_frame 0x00000000000044d4 0x48 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sprintf.o)
- .debug_frame 0x000000000000451c 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sscanf.o)
- .debug_frame 0x0000000000004570 0xa4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- .debug_frame 0x0000000000004614 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strlen.o)
- .debug_frame 0x0000000000004634 0x154 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtod.o)
- .debug_frame 0x0000000000004788 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtol.o)
- .debug_frame 0x00000000000047f8 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- .debug_frame 0x0000000000004848 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- .debug_frame 0x0000000000004878 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- .debug_frame 0x00000000000048b4 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- .debug_frame 0x00000000000048e4 0x98 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-dtoa.o)
- .debug_frame 0x000000000000497c 0x7c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- .debug_frame 0x00000000000049f8 0x148 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .debug_frame 0x0000000000004b40 0x88 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- .debug_frame 0x0000000000004bc8 0x84 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-gethex.o)
- .debug_frame 0x0000000000004c4c 0x80 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-gdtoa-hexnan.o)
- .debug_frame 0x0000000000004ccc 0x78 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-locale.o)
- .debug_frame 0x0000000000004d44 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-localeconv.o)
- .debug_frame 0x0000000000004d84 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- .debug_frame 0x0000000000004db4 0x64 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- .debug_frame 0x0000000000004e18 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mbtowc_r.o)
- .debug_frame 0x0000000000004e50 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- .debug_frame 0x0000000000004e70 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- .debug_frame 0x0000000000004ea0 0x2e0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mprec.o)
- .debug_frame 0x0000000000005180 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-callocr.o)
- .debug_frame 0x00000000000051b0 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- .debug_frame 0x00000000000051f0 0xe0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfprintf.o)
- .debug_frame 0x00000000000052d0 0xb4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-svfscanf.o)
- .debug_frame 0x0000000000005384 0xd0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .debug_frame 0x0000000000005454 0xa0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfscanf_i.o)
- .debug_frame 0x00000000000054f4 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- .debug_frame 0x0000000000005524 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- .debug_frame 0x0000000000005594 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sccl.o)
- .debug_frame 0x00000000000055b4 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strncmp.o)
- .debug_frame 0x00000000000055d4 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-strtoul.o)
- .debug_frame 0x0000000000005644 0x84 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-ungetc.o)
- .debug_frame 0x00000000000056c8 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wctomb_r.o)
- .debug_frame 0x00000000000056f8 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- .debug_frame 0x0000000000005728 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- .debug_frame 0x0000000000005758 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- .debug_frame 0x0000000000005778 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- .debug_frame 0x0000000000005798 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(ledf2.o)
- .debug_frame 0x00000000000057b8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixdfsi.o)
- .debug_frame 0x00000000000057d8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(fixunsdfsi.o)
- .debug_frame 0x00000000000057f8 0x38 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(floatunsidf.o)
- .debug_frame 0x0000000000005830 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(extenddftf2.o)
- .debug_frame 0x000000000000586c 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a(trunctfdf2.o)
- .debug_frame 0x0000000000005898 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- .debug_frame 0x00000000000058b8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- .debug_frame 0x00000000000058d8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- .debug_frame 0x00000000000058f8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- .debug_frame 0x0000000000005918 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- .stab 0x0000000000000000 0x84
- .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)
- .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)
- 0x24 (size before relaxing)
- .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)
- 0x24 (size before relaxing)
- .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)
- 0x24 (size before relaxing)
- .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)
- 0x24 (size before relaxing)
- .stabstr 0x0000000000000000 0x117
- .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)
|