OnlyUpdateApp_IAP.map 201 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  1. Archive member included to satisfy reference by file (symbol)
  2. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  3. ./APP/peripheral.o (memcpy)
  4. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
  5. ./HAL/MCU.o (memset)
  6. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
  7. ./HAL/MCU.o (printf)
  8. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
  9. ./HAL/MCU.o (puts)
  10. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
  11. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o) (__swbuf_r)
  12. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  13. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  14. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  15. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  16. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  17. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  18. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
  19. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  20. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
  21. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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) (_global_impure_ptr)
  22. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
  23. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  24. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
  25. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o) (_free_r)
  26. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
  27. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o) (_malloc_r)
  28. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
  29. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  30. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
  31. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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) (_printf_i)
  32. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
  33. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o) (_sbrk_r)
  34. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
  35. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o) (__sread)
  36. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
  37. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  38. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
  39. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  40. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
  41. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  42. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
  43. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  44. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
  45. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  46. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
  47. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  48. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
  49. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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) (memchr)
  50. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
  51. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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) (memmove)
  52. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
  53. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  54. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  55. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o) (_realloc_r)
  56. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
  57. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_read_r)
  58. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
  59. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o) (errno)
  60. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
  61. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o) (_malloc_usable_size_r)
  62. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
  63. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o) (_close)
  64. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
  65. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  66. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
  67. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  68. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
  69. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o) (_lseek)
  70. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
  71. d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o) (_read)
  72. Allocating common symbols
  73. Common symbol size file
  74. 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)
  75. Discarded input sections
  76. .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  77. .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  78. .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  79. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  80. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  81. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  82. .text.ADC_StructInit
  83. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  84. .text.ADC_DMACmd
  85. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  86. .text.ADC_ITConfig
  87. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
  88. .text.ADC_ResetCalibration
  89. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  90. .text.ADC_GetResetCalibrationStatus
  91. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  92. .text.ADC_StartCalibration
  93. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  94. .text.ADC_GetCalibrationStatus
  95. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  96. .text.ADC_GetSoftwareStartConvStatus
  97. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  98. .text.ADC_DiscModeChannelCountConfig
  99. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  100. .text.ADC_DiscModeCmd
  101. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  102. .text.ADC_ExternalTrigConvCmd
  103. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  104. .text.ADC_GetDualModeConversionValue
  105. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  106. .text.ADC_AutoInjectedConvCmd
  107. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  108. .text.ADC_InjectedDiscModeCmd
  109. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  110. .text.ADC_ExternalTrigInjectedConvConfig
  111. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
  112. .text.ADC_ExternalTrigInjectedConvCmd
  113. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  114. .text.ADC_SoftwareStartInjectedConvCmd
  115. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  116. .text.ADC_GetSoftwareStartInjectedConvCmdStatus
  117. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  118. .text.ADC_InjectedChannelConfig
  119. 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
  120. .text.ADC_InjectedSequencerLengthConfig
  121. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  122. .text.ADC_SetInjectedOffset
  123. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  124. .text.ADC_GetInjectedConversionValue
  125. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  126. .text.ADC_AnalogWatchdogCmd
  127. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  128. .text.ADC_AnalogWatchdogThresholdsConfig
  129. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
  130. .text.ADC_AnalogWatchdogSingleChannelConfig
  131. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  132. .text.ADC_ClearFlag
  133. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  134. .text.ADC_GetITStatus
  135. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  136. .text.ADC_ClearITPendingBit
  137. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  138. .text.TempSensor_Volt_To_Temper
  139. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
  140. .text.Get_CalibrationValue
  141. 0x0000000000000000 0x142 ./SRC/Peripheral/src/ch32v20x_adc.o
  142. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  143. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  144. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  145. .text.BKP_DeInit
  146. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  147. .text.BKP_TamperPinLevelConfig
  148. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  149. .text.BKP_TamperPinCmd
  150. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  151. .text.BKP_ITConfig
  152. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  153. .text.BKP_RTCOutputConfig
  154. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  155. .text.BKP_SetRTCCalibrationValue
  156. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  157. .text.BKP_WriteBackupRegister
  158. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  159. .text.BKP_ReadBackupRegister
  160. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  161. .text.BKP_GetFlagStatus
  162. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  163. .text.BKP_ClearFlag
  164. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  165. .text.BKP_GetITStatus
  166. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  167. .text.BKP_ClearITPendingBit
  168. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  169. .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
  170. .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
  171. .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
  172. .debug_aranges
  173. 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
  174. .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
  175. .debug_line 0x0000000000000000 0x7ea ./SRC/Peripheral/src/ch32v20x_bkp.o
  176. .debug_str 0x0000000000000000 0xb3b ./SRC/Peripheral/src/ch32v20x_bkp.o
  177. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
  178. .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
  179. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  180. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  181. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  182. .text.CAN_DeInit
  183. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
  184. .text.CAN_Init
  185. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
  186. .text.CAN_FilterInit
  187. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_can.o
  188. .text.CAN_StructInit
  189. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
  190. .text.CAN_SlaveStartBank
  191. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
  192. .text.CAN_DBGFreeze
  193. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
  194. .text.CAN_TTComModeCmd
  195. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
  196. .text.CAN_Transmit
  197. 0x0000000000000000 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
  198. .text.CAN_TransmitStatus
  199. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
  200. .text.CAN_CancelTransmit
  201. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
  202. .text.CAN_Receive
  203. 0x0000000000000000 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
  204. .text.CAN_FIFORelease
  205. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  206. .text.CAN_MessagePending
  207. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  208. .text.CAN_OperatingModeRequest
  209. 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
  210. .text.CAN_Sleep
  211. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  212. .text.CAN_WakeUp
  213. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
  214. .text.CAN_GetLastErrorCode
  215. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
  216. .text.CAN_GetReceiveErrorCounter
  217. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
  218. .text.CAN_GetLSBTransmitErrorCounter
  219. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
  220. .text.CAN_ITConfig
  221. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
  222. .text.CAN_GetFlagStatus
  223. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
  224. .text.CAN_ClearFlag
  225. 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
  226. .text.CAN_GetITStatus
  227. 0x0000000000000000 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
  228. .text.CAN_ClearITPendingBit
  229. 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
  230. .debug_info 0x0000000000000000 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
  231. .debug_abbrev 0x0000000000000000 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
  232. .debug_loc 0x0000000000000000 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
  233. .debug_aranges
  234. 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
  235. .debug_ranges 0x0000000000000000 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
  236. .debug_line 0x0000000000000000 0x1b80 ./SRC/Peripheral/src/ch32v20x_can.o
  237. .debug_str 0x0000000000000000 0xc51 ./SRC/Peripheral/src/ch32v20x_can.o
  238. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
  239. .debug_frame 0x0000000000000000 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
  240. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  241. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  242. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  243. .text.CRC_ResetDR
  244. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  245. .text.CRC_CalcCRC
  246. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  247. .text.CRC_CalcBlockCRC
  248. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
  249. .text.CRC_GetCRC
  250. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  251. .text.CRC_SetIDRegister
  252. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  253. .text.CRC_GetIDRegister
  254. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  255. .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
  256. .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
  257. .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
  258. .debug_aranges
  259. 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
  260. .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
  261. .debug_line 0x0000000000000000 0x4e2 ./SRC/Peripheral/src/ch32v20x_crc.o
  262. .debug_str 0x0000000000000000 0x711 ./SRC/Peripheral/src/ch32v20x_crc.o
  263. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
  264. .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
  265. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  266. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  267. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  268. .text.DBGMCU_GetREVID
  269. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  270. .text.DBGMCU_GetDEVID
  271. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  272. .text.__get_DEBUG_CR
  273. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  274. .text.__set_DEBUG_CR
  275. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  276. .text.DBGMCU_Config
  277. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  278. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  279. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  280. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  281. .text.DMA_DeInit
  282. 0x0000000000000000 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
  283. .text.DMA_Init
  284. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
  285. .text.DMA_StructInit
  286. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
  287. .text.DMA_Cmd 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
  288. .text.DMA_ITConfig
  289. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
  290. .text.DMA_SetCurrDataCounter
  291. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  292. .text.DMA_GetCurrDataCounter
  293. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  294. .text.DMA_GetFlagStatus
  295. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
  296. .text.DMA_ClearFlag
  297. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  298. .text.DMA_GetITStatus
  299. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  300. .text.DMA_ClearITPendingBit
  301. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  302. .debug_info 0x0000000000000000 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
  303. .debug_abbrev 0x0000000000000000 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
  304. .debug_loc 0x0000000000000000 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
  305. .debug_aranges
  306. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
  307. .debug_ranges 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
  308. .debug_line 0x0000000000000000 0x8fd ./SRC/Peripheral/src/ch32v20x_dma.o
  309. .debug_str 0x0000000000000000 0x889 ./SRC/Peripheral/src/ch32v20x_dma.o
  310. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
  311. .debug_frame 0x0000000000000000 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
  312. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  313. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  314. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  315. .text.EXTI_DeInit
  316. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
  317. .text.EXTI_Init
  318. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
  319. .text.EXTI_StructInit
  320. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  321. .text.EXTI_GenerateSWInterrupt
  322. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
  323. .text.EXTI_GetFlagStatus
  324. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  325. .text.EXTI_ClearFlag
  326. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  327. .text.EXTI_GetITStatus
  328. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
  329. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  330. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  331. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  332. .text.ROM_ERASE
  333. 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
  334. .text.FLASH_UnlockBank1
  335. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  336. .text.FLASH_LockBank1
  337. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  338. .text.FLASH_GetUserOptionByte
  339. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
  340. .text.FLASH_GetWriteProtectionOptionByte
  341. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  342. .text.FLASH_GetReadOutProtectionStatus
  343. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
  344. .text.FLASH_ITConfig
  345. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  346. .text.FLASH_GetFlagStatus
  347. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  348. .text.FLASH_ClearFlag
  349. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  350. .text.FLASH_GetStatus
  351. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  352. .text.FLASH_EraseAllPages
  353. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  354. .text.FLASH_EraseAllBank1Pages
  355. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  356. .text.FLASH_EraseOptionBytes
  357. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
  358. .text.FLASH_ProgramWord
  359. 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
  360. .text.FLASH_ProgramHalfWord
  361. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  362. .text.FLASH_ProgramOptionByteData
  363. 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
  364. .text.FLASH_EnableWriteProtection
  365. 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  366. .text.FLASH_ReadOutProtection
  367. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
  368. .text.FLASH_UserOptionByteConfig
  369. 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
  370. .text.FLASH_WaitForLastBank1Operation
  371. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  372. .text.FLASH_EraseBlock_32K_Fast
  373. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
  374. .text.FLASH_Access_Clock_Cfg
  375. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  376. .text.FLASH_Enhance_Mode
  377. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  378. .text.FLASH_ROM_ERASE
  379. 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
  380. .text.FLASH_ROM_WRITE
  381. 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
  382. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  383. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  384. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  385. .text.GPIO_DeInit
  386. 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  387. .text.GPIO_AFIODeInit
  388. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
  389. .text.GPIO_StructInit
  390. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
  391. .text.GPIO_ReadInputDataBit
  392. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  393. .text.GPIO_ReadInputData
  394. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  395. .text.GPIO_ReadOutputDataBit
  396. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  397. .text.GPIO_ReadOutputData
  398. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  399. .text.GPIO_SetBits
  400. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  401. .text.GPIO_ResetBits
  402. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  403. .text.GPIO_Write
  404. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  405. .text.GPIO_PinLockConfig
  406. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
  407. .text.GPIO_EventOutputConfig
  408. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
  409. .text.GPIO_EventOutputCmd
  410. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
  411. .text.GPIO_PinRemapConfig
  412. 0x0000000000000000 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  413. .text.GPIO_EXTILineConfig
  414. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
  415. .text.GPIO_ETH_MediaInterfaceConfig
  416. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
  417. .text.GPIO_IPD_Unused
  418. 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
  419. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  420. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  421. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  422. .text.I2C_DeInit
  423. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
  424. .text.I2C_Init
  425. 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
  426. .text.I2C_StructInit
  427. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  428. .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  429. .text.I2C_DMACmd
  430. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
  431. .text.I2C_DMALastTransferCmd
  432. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  433. .text.I2C_GenerateSTART
  434. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  435. .text.I2C_GenerateSTOP
  436. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  437. .text.I2C_AcknowledgeConfig
  438. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  439. .text.I2C_OwnAddress2Config
  440. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  441. .text.I2C_DualAddressCmd
  442. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  443. .text.I2C_GeneralCallCmd
  444. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  445. .text.I2C_ITConfig
  446. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  447. .text.I2C_SendData
  448. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  449. .text.I2C_ReceiveData
  450. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  451. .text.I2C_Send7bitAddress
  452. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  453. .text.I2C_ReadRegister
  454. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  455. .text.I2C_SoftwareResetCmd
  456. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  457. .text.I2C_NACKPositionConfig
  458. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
  459. .text.I2C_SMBusAlertConfig
  460. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  461. .text.I2C_TransmitPEC
  462. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  463. .text.I2C_PECPositionConfig
  464. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  465. .text.I2C_CalculatePEC
  466. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  467. .text.I2C_GetPEC
  468. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
  469. .text.I2C_ARPCmd
  470. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  471. .text.I2C_StretchClockCmd
  472. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  473. .text.I2C_FastModeDutyCycleConfig
  474. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  475. .text.I2C_CheckEvent
  476. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  477. .text.I2C_GetLastEvent
  478. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
  479. .text.I2C_GetFlagStatus
  480. 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
  481. .text.I2C_ClearFlag
  482. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  483. .text.I2C_GetITStatus
  484. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
  485. .text.I2C_ClearITPendingBit
  486. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  487. .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
  488. .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
  489. .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  490. .debug_aranges
  491. 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
  492. .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
  493. .debug_line 0x0000000000000000 0x12cb ./SRC/Peripheral/src/ch32v20x_i2c.o
  494. .debug_str 0x0000000000000000 0xb76 ./SRC/Peripheral/src/ch32v20x_i2c.o
  495. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
  496. .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
  497. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  498. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  499. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  500. .text.IWDG_GetFlagStatus
  501. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  502. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  503. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  504. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  505. .text.NVIC_PriorityGroupConfig
  506. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
  507. .text.NVIC_Init
  508. 0x0000000000000000 0x5a ./SRC/Peripheral/src/ch32v20x_misc.o
  509. .sbss.NVIC_Priority_Group
  510. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
  511. .debug_info 0x0000000000000000 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
  512. .debug_abbrev 0x0000000000000000 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
  513. .debug_loc 0x0000000000000000 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
  514. .debug_aranges
  515. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
  516. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
  517. .debug_line 0x0000000000000000 0x523 ./SRC/Peripheral/src/ch32v20x_misc.o
  518. .debug_str 0x0000000000000000 0xb65 ./SRC/Peripheral/src/ch32v20x_misc.o
  519. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
  520. .debug_frame 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
  521. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  522. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  523. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  524. .text.OPA_DeInit
  525. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
  526. .text.OPA_Init
  527. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
  528. .text.OPA_StructInit
  529. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
  530. .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
  531. .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
  532. .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
  533. .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
  534. .debug_aranges
  535. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
  536. .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
  537. .debug_line 0x0000000000000000 0x5a4 ./SRC/Peripheral/src/ch32v20x_opa.o
  538. .debug_str 0x0000000000000000 0x751 ./SRC/Peripheral/src/ch32v20x_opa.o
  539. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
  540. .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
  541. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  542. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  543. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  544. .text.PWR_DeInit
  545. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
  546. .text.PWR_PVDCmd
  547. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
  548. .text.PWR_PVDLevelConfig
  549. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
  550. .text.PWR_WakeUpPinCmd
  551. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  552. .text.PWR_EnterSTOPMode
  553. 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
  554. .text.PWR_EnterSTANDBYMode
  555. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  556. .text.PWR_GetFlagStatus
  557. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  558. .text.PWR_ClearFlag
  559. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  560. .text.PWR_EnterSTANDBYMode_RAM
  561. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  562. .text.PWR_EnterSTANDBYMode_RAM_LV
  563. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  564. .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
  565. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  566. .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
  567. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  568. .text.PWR_EnterSTOPMode_RAM_LV
  569. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
  570. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  571. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  572. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  573. .text.RCC_DeInit
  574. 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
  575. .text.RCC_HSEConfig
  576. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  577. .text.RCC_AdjustHSICalibrationValue
  578. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  579. .text.RCC_HSICmd
  580. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  581. .text.RCC_PLLConfig
  582. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  583. .text.RCC_PLLCmd
  584. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  585. .text.RCC_SYSCLKConfig
  586. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  587. .text.RCC_GetSYSCLKSource
  588. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
  589. .text.RCC_HCLKConfig
  590. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  591. .text.RCC_PCLK1Config
  592. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  593. .text.RCC_PCLK2Config
  594. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  595. .text.RCC_ITConfig
  596. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  597. .text.RCC_USBCLKConfig
  598. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  599. .text.RCC_LSICmd
  600. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  601. .text.RCC_APB1PeriphResetCmd
  602. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  603. .text.RCC_BackupResetCmd
  604. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  605. .text.RCC_ClockSecuritySystemCmd
  606. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  607. .text.RCC_MCOConfig
  608. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  609. .text.RCC_WaitForHSEStartUp
  610. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  611. .text.RCC_ClearFlag
  612. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  613. .text.RCC_GetITStatus
  614. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  615. .text.RCC_ClearITPendingBit
  616. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  617. .text.RCC_ADCCLKADJcmd
  618. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
  619. .text.RCC_ETHDIVConfig
  620. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  621. .text.RCC_USB5PRE_JUDGE
  622. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  623. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  624. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  625. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  626. .text.RTC_ITConfig
  627. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
  628. .text.RTC_SetAlarm
  629. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
  630. .text.RTC_GetDivider
  631. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
  632. .text.RTC_WaitForSynchro
  633. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  634. .text.RTC_GetFlagStatus
  635. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  636. .text.RTC_GetITStatus
  637. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
  638. .text.Calibration_LSI
  639. 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  640. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  641. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  642. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  643. .text.SPI_I2S_DeInit
  644. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
  645. .text.SPI_Init
  646. 0x0000000000000000 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
  647. .text.I2S_Init
  648. 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
  649. .text.SPI_StructInit
  650. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
  651. .text.I2S_StructInit
  652. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  653. .text.SPI_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  654. .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  655. .text.SPI_I2S_ITConfig
  656. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
  657. .text.SPI_I2S_DMACmd
  658. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  659. .text.SPI_I2S_SendData
  660. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  661. .text.SPI_I2S_ReceiveData
  662. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  663. .text.SPI_NSSInternalSoftwareConfig
  664. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
  665. .text.SPI_SSOutputCmd
  666. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
  667. .text.SPI_DataSizeConfig
  668. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  669. .text.SPI_TransmitCRC
  670. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  671. .text.SPI_CalculateCRC
  672. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
  673. .text.SPI_GetCRC
  674. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  675. .text.SPI_GetCRCPolynomial
  676. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  677. .text.SPI_BiDirectionalLineConfig
  678. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  679. .text.SPI_I2S_GetFlagStatus
  680. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  681. .text.SPI_I2S_ClearFlag
  682. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
  683. .text.SPI_I2S_GetITStatus
  684. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
  685. .text.SPI_I2S_ClearITPendingBit
  686. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  687. .debug_info 0x0000000000000000 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
  688. .debug_abbrev 0x0000000000000000 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
  689. .debug_loc 0x0000000000000000 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
  690. .debug_aranges
  691. 0x0000000000000000 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
  692. .debug_ranges 0x0000000000000000 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
  693. .debug_line 0x0000000000000000 0xee7 ./SRC/Peripheral/src/ch32v20x_spi.o
  694. .debug_str 0x0000000000000000 0xb25 ./SRC/Peripheral/src/ch32v20x_spi.o
  695. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
  696. .debug_frame 0x0000000000000000 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
  697. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  698. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  699. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  700. .text.TI1_Config
  701. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  702. .text.TI2_Config
  703. 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
  704. .text.TIM_DeInit
  705. 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
  706. .text.TIM_TimeBaseInit
  707. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  708. .text.TIM_OC1Init
  709. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  710. .text.TIM_OC2Init
  711. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
  712. .text.TIM_OC3Init
  713. 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
  714. .text.TIM_OC4Init
  715. 0x0000000000000000 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
  716. .text.TIM_BDTRConfig
  717. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  718. .text.TIM_TimeBaseStructInit
  719. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  720. .text.TIM_OCStructInit
  721. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
  722. .text.TIM_ICStructInit
  723. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  724. .text.TIM_BDTRStructInit
  725. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
  726. .text.TIM_CtrlPWMOutputs
  727. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  728. .text.TIM_ITConfig
  729. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  730. .text.TIM_GenerateEvent
  731. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  732. .text.TIM_DMAConfig
  733. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  734. .text.TIM_DMACmd
  735. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  736. .text.TIM_InternalClockConfig
  737. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  738. .text.TIM_ITRxExternalClockConfig
  739. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  740. .text.TIM_TIxExternalClockConfig
  741. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
  742. .text.TIM_ETRConfig
  743. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  744. .text.TIM_ETRClockMode1Config
  745. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
  746. .text.TIM_ETRClockMode2Config
  747. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  748. .text.TIM_PrescalerConfig
  749. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  750. .text.TIM_CounterModeConfig
  751. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  752. .text.TIM_SelectInputTrigger
  753. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  754. .text.TIM_EncoderInterfaceConfig
  755. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
  756. .text.TIM_ForcedOC1Config
  757. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  758. .text.TIM_ForcedOC2Config
  759. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  760. .text.TIM_ForcedOC3Config
  761. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  762. .text.TIM_ForcedOC4Config
  763. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  764. .text.TIM_ARRPreloadConfig
  765. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  766. .text.TIM_SelectCOM
  767. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  768. .text.TIM_SelectCCDMA
  769. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  770. .text.TIM_CCPreloadControl
  771. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  772. .text.TIM_OC1PreloadConfig
  773. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  774. .text.TIM_OC2PreloadConfig
  775. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  776. .text.TIM_OC3PreloadConfig
  777. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  778. .text.TIM_OC4PreloadConfig
  779. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  780. .text.TIM_OC1FastConfig
  781. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  782. .text.TIM_OC2FastConfig
  783. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  784. .text.TIM_OC3FastConfig
  785. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  786. .text.TIM_OC4FastConfig
  787. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  788. .text.TIM_ClearOC1Ref
  789. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  790. .text.TIM_ClearOC2Ref
  791. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  792. .text.TIM_ClearOC3Ref
  793. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  794. .text.TIM_ClearOC4Ref
  795. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  796. .text.TIM_OC1PolarityConfig
  797. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  798. .text.TIM_OC1NPolarityConfig
  799. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  800. .text.TIM_OC2PolarityConfig
  801. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  802. .text.TIM_OC2NPolarityConfig
  803. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  804. .text.TIM_OC3PolarityConfig
  805. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  806. .text.TIM_OC3NPolarityConfig
  807. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  808. .text.TIM_OC4PolarityConfig
  809. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  810. .text.TIM_CCxCmd
  811. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  812. .text.TIM_CCxNCmd
  813. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  814. .text.TIM_SelectOCxM
  815. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
  816. .text.TIM_UpdateDisableConfig
  817. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  818. .text.TIM_UpdateRequestConfig
  819. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  820. .text.TIM_SelectHallSensor
  821. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  822. .text.TIM_SelectOnePulseMode
  823. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  824. .text.TIM_SelectOutputTrigger
  825. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  826. .text.TIM_SelectSlaveMode
  827. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  828. .text.TIM_SelectMasterSlaveMode
  829. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  830. .text.TIM_SetCounter
  831. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  832. .text.TIM_SetAutoreload
  833. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  834. .text.TIM_SetCompare1
  835. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  836. .text.TIM_SetCompare2
  837. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  838. .text.TIM_SetCompare3
  839. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  840. .text.TIM_SetCompare4
  841. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  842. .text.TIM_SetIC1Prescaler
  843. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  844. .text.TIM_SetIC2Prescaler
  845. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  846. .text.TIM_PWMIConfig
  847. 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
  848. .text.TIM_SetIC3Prescaler
  849. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  850. .text.TIM_SetIC4Prescaler
  851. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  852. .text.TIM_ICInit
  853. 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
  854. .text.TIM_SetClockDivision
  855. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  856. .text.TIM_GetCapture1
  857. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  858. .text.TIM_GetCapture2
  859. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  860. .text.TIM_GetCapture3
  861. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  862. .text.TIM_GetCapture4
  863. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  864. .text.TIM_GetCounter
  865. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  866. .text.TIM_GetPrescaler
  867. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  868. .text.TIM_GetFlagStatus
  869. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
  870. .text.TIM_ClearFlag
  871. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  872. .text.TIM_GetITStatus
  873. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  874. .text.TIM_ClearITPendingBit
  875. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  876. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  877. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  878. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  879. .text.TI1_Config
  880. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
  881. .text.TI2_Config
  882. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
  883. .text.TIM5_DeInit
  884. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  885. .text.TIM5_OC3Init
  886. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  887. .text.TIM5_OC4Init
  888. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  889. .text.TIM5_TimeBaseStructInit
  890. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
  891. .text.TIM5_OCStructInit
  892. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  893. .text.TIM5_ICStructInit
  894. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  895. .text.TIM5_BDTRStructInit
  896. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  897. .text.TIM5_Cmd
  898. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  899. .text.TIM5_CtrlPWMOutputs
  900. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  901. .text.TIM5_ITConfig
  902. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  903. .text.TIM5_GenerateEvent
  904. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  905. .text.TIM5_DMAConfig
  906. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
  907. .text.TIM5_DMACmd
  908. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
  909. .text.TIM5_InternalClockConfig
  910. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  911. .text.TIM5_ITRxExternalClockConfig
  912. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  913. .text.TIM5_TIxExternalClockConfig
  914. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
  915. .text.TIM5_ETRClockMode1Config
  916. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
  917. .text.TIM5_ETRClockMode2Config
  918. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
  919. .text.TIM5_ETRConfig
  920. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  921. .text.TIM5_PrescalerConfig
  922. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
  923. .text.TIM5_CounterModeConfig
  924. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  925. .text.TIM5_SelectInputTrigger
  926. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  927. .text.TIM5_EncoderInterfaceConfig
  928. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
  929. .text.TIM5_ForcedOC1Config
  930. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  931. .text.TIM5_ForcedOC2Config
  932. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  933. .text.TIM5_ForcedOC3Config
  934. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  935. .text.TIM5_ForcedOC4Config
  936. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  937. .text.TIM5_ARRPreloadConfig
  938. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  939. .text.TIM5_SelectCOM
  940. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  941. .text.TIM5_SelectCCDMA
  942. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  943. .text.TIM5_CCPreloadControl
  944. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  945. .text.TIM5_OC3PreloadConfig
  946. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  947. .text.TIM5_OC4PreloadConfig
  948. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  949. .text.TIM5_OC1FastConfig
  950. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  951. .text.TIM5_OC2FastConfig
  952. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  953. .text.TIM5_OC3FastConfig
  954. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  955. .text.TIM5_OC4FastConfig
  956. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  957. .text.TIM5_ClearOC1Ref
  958. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  959. .text.TIM5_ClearOC2Ref
  960. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  961. .text.TIM5_ClearOC3Ref
  962. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  963. .text.TIM5_ClearOC4Ref
  964. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  965. .text.TIM5_OC1PolarityConfig
  966. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  967. .text.TIM5_OC1NPolarityConfig
  968. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  969. .text.TIM5_OC2PolarityConfig
  970. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  971. .text.TIM5_OC2NPolarityConfig
  972. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  973. .text.TIM5_OC3PolarityConfig
  974. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  975. .text.TIM5_OC3NPolarityConfig
  976. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  977. .text.TIM5_OC4PolarityConfig
  978. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  979. .text.TIM5_CCxCmd
  980. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  981. .text.TIM5_CCxNCmd
  982. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  983. .text.TIM5_SelectOCxM
  984. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  985. .text.TIM5_UpdateDisableConfig
  986. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  987. .text.TIM5_UpdateRequestConfig
  988. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  989. .text.TIM5_SelectHallSensor
  990. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  991. .text.TIM5_SelectOnePulseMode
  992. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  993. .text.TIM5_SelectOutputTrigger
  994. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  995. .text.TIM5_SelectSlaveMode
  996. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  997. .text.TIM5_SelectMasterSlaveMode
  998. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  999. .text.TIM5_SetCounter
  1000. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1001. .text.TIM5_SetAutoreload
  1002. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1003. .text.TIM5_SetCompare3
  1004. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1005. .text.TIM5_SetCompare4
  1006. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1007. .text.TIM5_SetIC1Prescaler
  1008. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1009. .text.TIM5_SetIC2Prescaler
  1010. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1011. .text.TIM5_PWMIConfig
  1012. 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1013. .text.TIM5_SetIC3Prescaler
  1014. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1015. .text.TIM5_SetIC4Prescaler
  1016. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1017. .text.TIM5_ICInit
  1018. 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1019. .text.TIM5_SetClockDivision
  1020. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1021. .text.TIM5_GetCapture1
  1022. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1023. .text.TIM5_GetCapture2
  1024. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1025. .text.TIM5_GetCapture3
  1026. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1027. .text.TIM5_GetCapture4
  1028. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1029. .text.TIM5_GetCounter
  1030. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1031. .text.TIM5_GetPrescaler
  1032. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1033. .text.TIM5_GetFlagStatus
  1034. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1035. .text.TIM5_ClearFlag
  1036. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1037. .text.TIM5_GetITStatus
  1038. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1039. .text.TIM5_ClearITPendingBit
  1040. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1041. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1042. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1043. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1044. .text.USART_DeInit
  1045. 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
  1046. .text.USART_StructInit
  1047. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1048. .text.USART_ClockInit
  1049. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
  1050. .text.USART_ClockStructInit
  1051. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1052. .text.USART_ITConfig
  1053. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
  1054. .text.USART_DMACmd
  1055. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1056. .text.USART_SetAddress
  1057. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1058. .text.USART_WakeUpConfig
  1059. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1060. .text.USART_ReceiverWakeUpCmd
  1061. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1062. .text.USART_LINBreakDetectLengthConfig
  1063. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1064. .text.USART_LINCmd
  1065. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1066. .text.USART_ReceiveData
  1067. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1068. .text.USART_SendBreak
  1069. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1070. .text.USART_SetGuardTime
  1071. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1072. .text.USART_SetPrescaler
  1073. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1074. .text.USART_SmartCardCmd
  1075. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
  1076. .text.USART_SmartCardNACKCmd
  1077. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1078. .text.USART_HalfDuplexCmd
  1079. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1080. .text.USART_IrDAConfig
  1081. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1082. .text.USART_IrDACmd
  1083. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1084. .text.USART_ClearFlag
  1085. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
  1086. .text.USART_GetITStatus
  1087. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
  1088. .text.USART_ClearITPendingBit
  1089. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1090. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1091. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1092. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1093. .text.WWDG_DeInit
  1094. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1095. .text.WWDG_SetPrescaler
  1096. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1097. .text.WWDG_SetWindowValue
  1098. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1099. .text.WWDG_EnableIT
  1100. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1101. .text.WWDG_SetCounter
  1102. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1103. .text.WWDG_Enable
  1104. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1105. .text.WWDG_GetFlagStatus
  1106. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1107. .text.WWDG_ClearFlag
  1108. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1109. .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1110. .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1111. .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1112. .debug_aranges
  1113. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1114. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1115. .debug_line 0x0000000000000000 0x619 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1116. .debug_str 0x0000000000000000 0x748 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1117. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1118. .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1119. .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1120. .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1121. .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1122. .text.SDI_Printf_Enable
  1123. 0x0000000000000000 0x22 ./SRC/Debug/debug.o
  1124. .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1125. .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1126. .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1127. .text.__get_MSTATUS
  1128. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1129. .text.__set_MSTATUS
  1130. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1131. .text.__get_MISA
  1132. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1133. .text.__set_MISA
  1134. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1135. .text.__get_MTVEC
  1136. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1137. .text.__set_MTVEC
  1138. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1139. .text.__get_MSCRATCH
  1140. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1141. .text.__set_MSCRATCH
  1142. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1143. .text.__get_MEPC
  1144. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1145. .text.__set_MEPC
  1146. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1147. .text.__get_MCAUSE
  1148. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1149. .text.__set_MCAUSE
  1150. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1151. .text.__get_MTVAL
  1152. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1153. .text.__set_MTVAL
  1154. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1155. .text.__get_MVENDORID
  1156. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1157. .text.__get_MARCHID
  1158. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1159. .text.__get_MIMPID
  1160. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1161. .text.__get_MHARTID
  1162. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1163. .text.__get_SP
  1164. 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
  1165. .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
  1166. .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
  1167. .debug_aranges
  1168. 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
  1169. .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
  1170. .debug_line 0x0000000000000000 0x4f3 ./SRC/Core/core_riscv.o
  1171. .debug_str 0x0000000000000000 0x332 ./SRC/Core/core_riscv.o
  1172. .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
  1173. .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
  1174. .text 0x0000000000000000 0x0 ./Profile/OTAprofile.o
  1175. .data 0x0000000000000000 0x0 ./Profile/OTAprofile.o
  1176. .bss 0x0000000000000000 0x0 ./Profile/OTAprofile.o
  1177. .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1178. .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1179. .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1180. .text 0x0000000000000000 0x0 ./HAL/MCU.o
  1181. .data 0x0000000000000000 0x0 ./HAL/MCU.o
  1182. .bss 0x0000000000000000 0x0 ./HAL/MCU.o
  1183. .text.Lib_Calibration_LSI
  1184. 0x0000000000000000 0xa ./HAL/MCU.o
  1185. .text 0x0000000000000000 0x0 ./HAL/RTC.o
  1186. .data 0x0000000000000000 0x0 ./HAL/RTC.o
  1187. .bss 0x0000000000000000 0x0 ./HAL/RTC.o
  1188. .text.RTC_SetTignTime
  1189. 0x0000000000000000 0x2e ./HAL/RTC.o
  1190. .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1191. .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1192. .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1193. .text.BLE_LowPower
  1194. 0x0000000000000000 0x4 ./HAL/SLEEP.o
  1195. .text.HAL_SleepInit
  1196. 0x0000000000000000 0x2 ./HAL/SLEEP.o
  1197. .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
  1198. .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
  1199. .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
  1200. .debug_aranges
  1201. 0x0000000000000000 0x28 ./HAL/SLEEP.o
  1202. .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
  1203. .debug_line 0x0000000000000000 0x402 ./HAL/SLEEP.o
  1204. .debug_str 0x0000000000000000 0x68d ./HAL/SLEEP.o
  1205. .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
  1206. .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
  1207. .text 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
  1208. .data 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
  1209. .bss 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
  1210. .text 0x0000000000000000 0x0 ./APP/led.o
  1211. .data 0x0000000000000000 0x0 ./APP/led.o
  1212. .bss 0x0000000000000000 0x0 ./APP/led.o
  1213. .text 0x0000000000000000 0x0 ./APP/peripheral.o
  1214. .data 0x0000000000000000 0x0 ./APP/peripheral.o
  1215. .bss 0x0000000000000000 0x0 ./APP/peripheral.o
  1216. .text.PeripheralParamUpdate
  1217. 0x0000000000000000 0x16 ./APP/peripheral.o
  1218. .text.DisableAllIRQ
  1219. 0x0000000000000000 0xa ./APP/peripheral.o
  1220. .text.Upgrade_IAP_Erase
  1221. 0x0000000000000000 0x26 ./APP/peripheral.o
  1222. .text.Upgrade_IAP_Program
  1223. 0x0000000000000000 0x3a ./APP/peripheral.o
  1224. .text.Upgrade_IAP_End
  1225. 0x0000000000000000 0x14 ./APP/peripheral.o
  1226. .text.IAP_FLASH_read
  1227. 0x0000000000000000 0x8 ./APP/peripheral.o
  1228. .rodata.PeripheralParamUpdate.str1.4
  1229. 0x0000000000000000 0x12 ./APP/peripheral.o
  1230. .sbss.PeripheralParamUpdate_t
  1231. 0x0000000000000000 0x4 ./APP/peripheral.o
  1232. .sbss.user_image_tasks
  1233. 0x0000000000000000 0x4 ./APP/peripheral.o
  1234. .text 0x0000000000000000 0x0 ./APP/peripheral_main.o
  1235. .data 0x0000000000000000 0x0 ./APP/peripheral_main.o
  1236. .bss 0x0000000000000000 0x0 ./APP/peripheral_main.o
  1237. .text 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
  1238. .data 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
  1239. .bss 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
  1240. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1241. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1242. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1243. .text.memcpy 0x0000000000000000 0xb2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
  1244. .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-memcpy.o)
  1245. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1246. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1247. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1248. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1249. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1250. .text._printf_r
  1251. 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)
  1252. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1253. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1254. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1255. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1256. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1257. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1258. .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)
  1259. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1260. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1261. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1262. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1263. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1264. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1265. .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)
  1266. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1267. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1268. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1269. .text.__fp_lock
  1270. 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)
  1271. .text.__fp_unlock
  1272. 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)
  1273. .text._cleanup
  1274. 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)
  1275. .text.__sfp_lock_acquire
  1276. 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)
  1277. .text.__sfp_lock_release
  1278. 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)
  1279. .text.__sinit_lock_acquire
  1280. 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)
  1281. .text.__sinit_lock_release
  1282. 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)
  1283. .text.__fp_lock_all
  1284. 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)
  1285. .text.__fp_unlock_all
  1286. 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)
  1287. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1288. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1289. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1290. .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)
  1291. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1292. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1293. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1294. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1295. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1296. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1297. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1298. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1299. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1300. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1301. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1302. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1303. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1304. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1305. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1306. .text.__sprint_r
  1307. 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)
  1308. .text.vfprintf
  1309. 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)
  1310. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1311. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1312. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1313. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1314. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1315. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1316. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1317. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1318. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1319. .text.__seofread
  1320. 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-stdio.o)
  1321. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1322. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1323. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1324. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1325. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1326. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1327. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1328. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1329. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1330. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1331. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1332. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1333. .text.__sfvwrite_r
  1334. 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)
  1335. .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)
  1336. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1337. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1338. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1339. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1340. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1341. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1342. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1343. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1344. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1345. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1346. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1347. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1348. .text.memmove 0x0000000000000000 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)
  1349. .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-memmove.o)
  1350. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1351. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1352. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1353. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1354. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1355. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1356. .text._realloc_r
  1357. 0x0000000000000000 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/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1358. .debug_frame 0x0000000000000000 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
  1359. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1360. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1361. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1362. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1363. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1364. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1365. .text.cleanup_glue
  1366. 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)
  1367. .text._reclaim_reent
  1368. 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)
  1369. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1370. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1371. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1372. .text._malloc_usable_size_r
  1373. 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-nano-msizer.o)
  1374. .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-nano-msizer.o)
  1375. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1376. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1377. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1378. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1379. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1380. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1381. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1382. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1383. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1384. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1385. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1386. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1387. .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1388. .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1389. .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/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)
  1390. Memory Configuration
  1391. Name Origin Length Attributes
  1392. FLASH 0x0000000000000000 0x0000000000005000 xr
  1393. RAM 0x0000000020004000 0x000000000000c000 xrw
  1394. *default* 0x0000000000000000 0xffffffffffffffff
  1395. Linker script and memory map
  1396. LOAD ./Startup/startup_ch32v20x_D8W.o
  1397. LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
  1398. LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
  1399. LOAD ./SRC/Peripheral/src/ch32v20x_can.o
  1400. LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
  1401. LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  1402. LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
  1403. LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
  1404. LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
  1405. LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
  1406. LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
  1407. LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1408. LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
  1409. LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
  1410. LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
  1411. LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
  1412. LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
  1413. LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
  1414. LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
  1415. LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
  1416. LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
  1417. LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1418. LOAD ./SRC/Debug/debug.o
  1419. LOAD ./SRC/Core/core_riscv.o
  1420. LOAD ./Profile/OTAprofile.o
  1421. LOAD ./LIB/ble_task_scheduler.o
  1422. LOAD ./HAL/MCU.o
  1423. LOAD ./HAL/RTC.o
  1424. LOAD ./HAL/SLEEP.o
  1425. LOAD ./APP/ch32v20x_it.o
  1426. LOAD ./APP/led.o
  1427. LOAD ./APP/peripheral.o
  1428. LOAD ./APP/peripheral_main.o
  1429. LOAD ./APP/system_ch32v20x.o
  1430. 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
  1431. 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
  1432. 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
  1433. 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
  1434. START GROUP
  1435. 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
  1436. 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
  1437. 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
  1438. END GROUP
  1439. START GROUP
  1440. 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
  1441. 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
  1442. 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
  1443. END GROUP
  1444. 0x0000000000000800 __stack_size = 0x800
  1445. [!provide] PROVIDE (_stack_size = __stack_size)
  1446. 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
  1447. .init 0x0000000000000000 0x38
  1448. 0x0000000000000000 _sinit = .
  1449. 0x0000000000000000 . = ALIGN (0x4)
  1450. *(SORT_NONE(.init))
  1451. .init 0x0000000000000000 0x38 ./Startup/startup_ch32v20x_D8W.o
  1452. 0x0000000000000000 _start
  1453. 0x0000000000000038 . = ALIGN (0x4)
  1454. 0x0000000000000038 _einit = .
  1455. .vector 0x0000000000000038 0x148
  1456. *(.vector)
  1457. .vector 0x0000000000000038 0x118 ./Startup/startup_ch32v20x_D8W.o
  1458. 0x0000000000000180 . = ALIGN (0x40)
  1459. *fill* 0x0000000000000150 0x30
  1460. *(SORT_NONE(.handle_reset))
  1461. .highcode 0x0000000000000180 0xe8
  1462. 0x0000000000000180 . = ALIGN (0x4)
  1463. *(.highcode)
  1464. .highcode 0x0000000000000180 0x4e ./LIB/ble_task_scheduler.o
  1465. 0x0000000000000180 Ecall_U_Mode_Handler
  1466. 0x0000000000000180 Ecall_M_Mode_Handler
  1467. .highcode 0x00000000000001ce 0x10 ./APP/peripheral_main.o
  1468. 0x00000000000001ce Main_Circulation
  1469. *(.highcode.*)
  1470. *fill* 0x00000000000001de 0x2
  1471. .highcode.LLE_IRQHandler
  1472. 0x00000000000001e0 0x86 ./LIB/ble_task_scheduler.o
  1473. 0x00000000000001e0 LLE_IRQHandler
  1474. 0x0000000000000268 . = ALIGN (0x4)
  1475. *fill* 0x0000000000000266 0x2
  1476. .text 0x0000000000000268 0x3430
  1477. 0x0000000000000268 . = ALIGN (0x4)
  1478. *(.text)
  1479. .text 0x0000000000000268 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)
  1480. 0x0000000000000268 memset
  1481. *(.text.*)
  1482. .text.vector_handler
  1483. 0x0000000000000310 0x7a ./Startup/startup_ch32v20x_D8W.o
  1484. 0x0000000000000318 Break_Point_Handler
  1485. 0x000000000000031a SysTick_Handler
  1486. 0x000000000000031c SW_Handler
  1487. 0x000000000000031e WWDG_IRQHandler
  1488. 0x0000000000000320 PVD_IRQHandler
  1489. 0x0000000000000322 TAMPER_IRQHandler
  1490. 0x0000000000000324 RTC_IRQHandler
  1491. 0x0000000000000326 FLASH_IRQHandler
  1492. 0x0000000000000328 RCC_IRQHandler
  1493. 0x000000000000032a EXTI0_IRQHandler
  1494. 0x000000000000032c EXTI1_IRQHandler
  1495. 0x000000000000032e EXTI2_IRQHandler
  1496. 0x0000000000000330 EXTI3_IRQHandler
  1497. 0x0000000000000332 EXTI4_IRQHandler
  1498. 0x0000000000000334 DMA1_Channel1_IRQHandler
  1499. 0x0000000000000336 DMA1_Channel2_IRQHandler
  1500. 0x0000000000000338 DMA1_Channel3_IRQHandler
  1501. 0x000000000000033a DMA1_Channel4_IRQHandler
  1502. 0x000000000000033c DMA1_Channel5_IRQHandler
  1503. 0x000000000000033e DMA1_Channel6_IRQHandler
  1504. 0x0000000000000340 DMA1_Channel7_IRQHandler
  1505. 0x0000000000000342 ADC1_2_IRQHandler
  1506. 0x0000000000000344 USB_HP_CAN1_TX_IRQHandler
  1507. 0x0000000000000346 USB_LP_CAN1_RX0_IRQHandler
  1508. 0x0000000000000348 CAN1_RX1_IRQHandler
  1509. 0x000000000000034a CAN1_SCE_IRQHandler
  1510. 0x000000000000034c EXTI9_5_IRQHandler
  1511. 0x000000000000034e TIM1_BRK_IRQHandler
  1512. 0x0000000000000350 TIM1_UP_IRQHandler
  1513. 0x0000000000000352 TIM1_TRG_COM_IRQHandler
  1514. 0x0000000000000354 TIM1_CC_IRQHandler
  1515. 0x0000000000000356 TIM2_IRQHandler
  1516. 0x0000000000000358 TIM3_IRQHandler
  1517. 0x000000000000035a TIM4_IRQHandler
  1518. 0x000000000000035c I2C1_EV_IRQHandler
  1519. 0x000000000000035e I2C1_ER_IRQHandler
  1520. 0x0000000000000360 I2C2_EV_IRQHandler
  1521. 0x0000000000000362 I2C2_ER_IRQHandler
  1522. 0x0000000000000364 SPI1_IRQHandler
  1523. 0x0000000000000366 SPI2_IRQHandler
  1524. 0x0000000000000368 USART1_IRQHandler
  1525. 0x000000000000036a USART2_IRQHandler
  1526. 0x000000000000036c USART3_IRQHandler
  1527. 0x000000000000036e EXTI15_10_IRQHandler
  1528. 0x0000000000000372 USBWakeUp_IRQHandler
  1529. 0x0000000000000374 USBHD_IRQHandler
  1530. 0x0000000000000376 USBHDWakeUp_IRQHandler
  1531. 0x0000000000000378 ETH_IRQHandler
  1532. 0x000000000000037a ETHWakeUp_IRQHandler
  1533. 0x0000000000000380 TIM5_IRQHandler
  1534. 0x0000000000000382 UART4_IRQHandler
  1535. 0x0000000000000384 DMA1_Channel8_IRQHandler
  1536. 0x0000000000000386 OSC32KCal_IRQHandler
  1537. 0x0000000000000388 OSCWakeUp_IRQHandler
  1538. .text.handle_reset
  1539. 0x000000000000038a 0x8e ./Startup/startup_ch32v20x_D8W.o
  1540. 0x000000000000038a handle_reset
  1541. .text.ADC_DeInit
  1542. 0x0000000000000418 0x46 ./SRC/Peripheral/src/ch32v20x_adc.o
  1543. 0x0000000000000418 ADC_DeInit
  1544. .text.ADC_Init
  1545. 0x000000000000045e 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
  1546. 0x000000000000045e ADC_Init
  1547. .text.ADC_Cmd 0x00000000000004b4 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
  1548. 0x00000000000004b4 ADC_Cmd
  1549. .text.ADC_SoftwareStartConvCmd
  1550. 0x00000000000004c4 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  1551. 0x00000000000004c4 ADC_SoftwareStartConvCmd
  1552. .text.ADC_RegularChannelConfig
  1553. 0x00000000000004dc 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
  1554. 0x00000000000004dc ADC_RegularChannelConfig
  1555. .text.ADC_GetConversionValue
  1556. 0x0000000000000594 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  1557. 0x0000000000000594 ADC_GetConversionValue
  1558. .text.ADC_TempSensorVrefintCmd
  1559. 0x000000000000059c 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
  1560. 0x000000000000059c ADC_TempSensorVrefintCmd
  1561. .text.ADC_GetFlagStatus
  1562. 0x00000000000005bc 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  1563. 0x00000000000005bc ADC_GetFlagStatus
  1564. .text.ADC_BufferCmd
  1565. 0x00000000000005c6 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  1566. 0x00000000000005c6 ADC_BufferCmd
  1567. .text.DBGMCU_GetCHIPID
  1568. 0x00000000000005de 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  1569. 0x00000000000005de DBGMCU_GetCHIPID
  1570. .text.EXTI_ClearITPendingBit
  1571. 0x00000000000005e8 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  1572. 0x00000000000005e8 EXTI_ClearITPendingBit
  1573. .text.FLASH_Unlock
  1574. 0x00000000000005f2 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
  1575. 0x00000000000005f2 FLASH_Unlock
  1576. .text.FLASH_Lock
  1577. 0x000000000000060c 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  1578. 0x000000000000060c FLASH_Lock
  1579. .text.FLASH_GetBank1Status
  1580. 0x000000000000061a 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  1581. 0x000000000000061a FLASH_GetBank1Status
  1582. .text.FLASH_WaitForLastOperation
  1583. 0x0000000000000632 0x2a ./SRC/Peripheral/src/ch32v20x_flash.o
  1584. 0x0000000000000632 FLASH_WaitForLastOperation
  1585. .text.FLASH_ErasePage
  1586. 0x000000000000065c 0x42 ./SRC/Peripheral/src/ch32v20x_flash.o
  1587. 0x000000000000065c FLASH_ErasePage
  1588. .text.FLASH_Unlock_Fast
  1589. 0x000000000000069e 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  1590. 0x000000000000069e FLASH_Unlock_Fast
  1591. .text.FLASH_Lock_Fast
  1592. 0x00000000000006bc 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  1593. 0x00000000000006bc FLASH_Lock_Fast
  1594. .text.FLASH_ErasePage_Fast
  1595. 0x00000000000006ca 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  1596. 0x00000000000006ca FLASH_ErasePage_Fast
  1597. .text.FLASH_ProgramPage_Fast
  1598. 0x00000000000006f8 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
  1599. 0x00000000000006f8 FLASH_ProgramPage_Fast
  1600. .text.FLASH_GetMACAddress
  1601. 0x000000000000075c 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
  1602. 0x000000000000075c FLASH_GetMACAddress
  1603. .text.GPIO_Init
  1604. 0x0000000000000782 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  1605. 0x0000000000000782 GPIO_Init
  1606. .text.GPIO_WriteBit
  1607. 0x0000000000000842 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  1608. 0x0000000000000842 GPIO_WriteBit
  1609. .text.IWDG_WriteAccessCmd
  1610. 0x000000000000084c 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1611. 0x000000000000084c IWDG_WriteAccessCmd
  1612. .text.IWDG_SetPrescaler
  1613. 0x0000000000000854 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1614. 0x0000000000000854 IWDG_SetPrescaler
  1615. .text.IWDG_SetReload
  1616. 0x000000000000085c 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1617. 0x000000000000085c IWDG_SetReload
  1618. .text.IWDG_ReloadCounter
  1619. 0x0000000000000864 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1620. 0x0000000000000864 IWDG_ReloadCounter
  1621. .text.IWDG_Enable
  1622. 0x0000000000000872 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1623. 0x0000000000000872 IWDG_Enable
  1624. .text.PWR_BackupAccessCmd
  1625. 0x000000000000088a 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  1626. 0x000000000000088a PWR_BackupAccessCmd
  1627. .text.RCC_ADCCLKConfig
  1628. 0x00000000000008a0 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1629. 0x00000000000008a0 RCC_ADCCLKConfig
  1630. .text.RCC_LSEConfig
  1631. 0x00000000000008b2 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1632. 0x00000000000008b2 RCC_LSEConfig
  1633. .text.RCC_RTCCLKConfig
  1634. 0x00000000000008da 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
  1635. 0x00000000000008da RCC_RTCCLKConfig
  1636. .text.RCC_RTCCLKCmd
  1637. 0x00000000000008e6 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1638. 0x00000000000008e6 RCC_RTCCLKCmd
  1639. .text.RCC_GetClocksFreq
  1640. 0x0000000000000906 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1641. 0x0000000000000906 RCC_GetClocksFreq
  1642. .text.RCC_AHBPeriphClockCmd
  1643. 0x00000000000009de 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1644. 0x00000000000009de RCC_AHBPeriphClockCmd
  1645. .text.RCC_APB2PeriphClockCmd
  1646. 0x00000000000009fc 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1647. 0x00000000000009fc RCC_APB2PeriphClockCmd
  1648. .text.RCC_APB1PeriphClockCmd
  1649. 0x0000000000000a1a 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1650. 0x0000000000000a1a RCC_APB1PeriphClockCmd
  1651. .text.RCC_APB2PeriphResetCmd
  1652. 0x0000000000000a38 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1653. 0x0000000000000a38 RCC_APB2PeriphResetCmd
  1654. .text.RCC_GetFlagStatus
  1655. 0x0000000000000a56 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1656. 0x0000000000000a56 RCC_GetFlagStatus
  1657. .text.RTC_EnterConfigMode
  1658. 0x0000000000000a84 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1659. 0x0000000000000a84 RTC_EnterConfigMode
  1660. .text.RTC_ExitConfigMode
  1661. 0x0000000000000a96 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1662. 0x0000000000000a96 RTC_ExitConfigMode
  1663. .text.RTC_GetCounter
  1664. 0x0000000000000aae 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
  1665. 0x0000000000000aae RTC_GetCounter
  1666. .text.RTC_SetCounter
  1667. 0x0000000000000b08 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1668. 0x0000000000000b08 RTC_SetCounter
  1669. .text.RTC_SetPrescaler
  1670. 0x0000000000000b2c 0x26 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1671. 0x0000000000000b2c RTC_SetPrescaler
  1672. .text.RTC_WaitForLastTask
  1673. 0x0000000000000b52 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1674. 0x0000000000000b52 RTC_WaitForLastTask
  1675. .text.RTC_ClearFlag
  1676. 0x0000000000000b62 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1677. 0x0000000000000b62 RTC_ClearFlag
  1678. .text.RTC_ClearITPendingBit
  1679. 0x0000000000000b76 0x2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1680. 0x0000000000000b76 RTC_ClearITPendingBit
  1681. .text.TIM_Cmd 0x0000000000000b78 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  1682. 0x0000000000000b78 TIM_Cmd
  1683. .text.TIM5_TimeBaseInit
  1684. 0x0000000000000b90 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1685. 0x0000000000000b90 TIM5_TimeBaseInit
  1686. .text.TIM5_OC1Init
  1687. 0x0000000000000bc4 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1688. 0x0000000000000bc4 TIM5_OC1Init
  1689. .text.TIM5_OC2Init
  1690. 0x0000000000000c1c 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1691. 0x0000000000000c1c TIM5_OC2Init
  1692. .text.TIM5_BDTRConfig
  1693. 0x0000000000000c82 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1694. 0x0000000000000c82 TIM5_BDTRConfig
  1695. .text.TIM5_OC1PreloadConfig
  1696. 0x0000000000000ca6 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1697. 0x0000000000000ca6 TIM5_OC1PreloadConfig
  1698. .text.TIM5_OC2PreloadConfig
  1699. 0x0000000000000cbc 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1700. 0x0000000000000cbc TIM5_OC2PreloadConfig
  1701. .text.TIM5_SetCompare1
  1702. 0x0000000000000cda 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1703. 0x0000000000000cda TIM5_SetCompare1
  1704. .text.TIM5_SetCompare2
  1705. 0x0000000000000ce4 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1706. 0x0000000000000ce4 TIM5_SetCompare2
  1707. .text.USART_Init
  1708. 0x0000000000000cee 0x90 ./SRC/Peripheral/src/ch32v20x_usart.o
  1709. 0x0000000000000cee USART_Init
  1710. .text.USART_Cmd
  1711. 0x0000000000000d7e 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1712. 0x0000000000000d7e USART_Cmd
  1713. .text.USART_SendData
  1714. 0x0000000000000d94 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1715. 0x0000000000000d94 USART_SendData
  1716. .text.USART_GetFlagStatus
  1717. 0x0000000000000d9c 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1718. 0x0000000000000d9c USART_GetFlagStatus
  1719. .text.Delay_Init
  1720. 0x0000000000000da6 0x28 ./SRC/Debug/debug.o
  1721. 0x0000000000000da6 Delay_Init
  1722. .text.Delay_Us
  1723. 0x0000000000000dce 0x36 ./SRC/Debug/debug.o
  1724. 0x0000000000000dce Delay_Us
  1725. .text.Delay_Ms
  1726. 0x0000000000000e04 0x36 ./SRC/Debug/debug.o
  1727. 0x0000000000000e04 Delay_Ms
  1728. .text.USART_Printf_Init
  1729. 0x0000000000000e3a 0x54 ./SRC/Debug/debug.o
  1730. 0x0000000000000e3a USART_Printf_Init
  1731. .text._write 0x0000000000000e8e 0x4c ./SRC/Debug/debug.o
  1732. 0x0000000000000e8e _write
  1733. .text._sbrk 0x0000000000000eda 0x2c ./SRC/Debug/debug.o
  1734. 0x0000000000000eda _sbrk
  1735. .text.OTAProfile_WriteAttrCB
  1736. 0x0000000000000f06 0x7a ./Profile/OTAprofile.o
  1737. .text.OTAProfile_ReadAttrCB
  1738. 0x0000000000000f80 0x6c ./Profile/OTAprofile.o
  1739. .text.OTAProfile_AddService
  1740. 0x0000000000000fec 0x1e ./Profile/OTAprofile.o
  1741. 0x0000000000000fec OTAProfile_AddService
  1742. .text.OTAProfile_RegisterAppCBs
  1743. 0x000000000000100a 0xe ./Profile/OTAprofile.o
  1744. 0x000000000000100a OTAProfile_RegisterAppCBs
  1745. .text.OTAProfile_SendData
  1746. 0x0000000000001018 0x28 ./Profile/OTAprofile.o
  1747. 0x0000000000001018 OTAProfile_SendData
  1748. .text.Lib_Read_Flash
  1749. 0x0000000000001040 0x1e ./HAL/MCU.o
  1750. 0x0000000000001040 Lib_Read_Flash
  1751. .text.Lib_Write_Flash
  1752. 0x000000000000105e 0x30 ./HAL/MCU.o
  1753. 0x000000000000105e Lib_Write_Flash
  1754. .text.HAL_GetInterTempValue
  1755. 0x000000000000108e 0x16a ./HAL/MCU.o
  1756. 0x000000000000108e HAL_GetInterTempValue
  1757. .text.HAL_ProcessEvent
  1758. 0x00000000000011f8 0x8e ./HAL/MCU.o
  1759. 0x00000000000011f8 HAL_ProcessEvent
  1760. .text.WCHBLE_Init
  1761. 0x0000000000001286 0x136 ./HAL/MCU.o
  1762. 0x0000000000001286 WCHBLE_Init
  1763. .text.HAL_Init
  1764. 0x00000000000013bc 0x3c ./HAL/MCU.o
  1765. 0x00000000000013bc HAL_Init
  1766. .text.HAL_TimeInit
  1767. 0x00000000000013f8 0xb0 ./HAL/RTC.o
  1768. 0x00000000000013f8 HAL_TimeInit
  1769. .text.RTCAlarm_IRQHandler
  1770. 0x00000000000014a8 0x1c ./HAL/RTC.o
  1771. 0x00000000000014a8 RTCAlarm_IRQHandler
  1772. .text.NMI_Handler
  1773. 0x00000000000014c4 0x4 ./APP/ch32v20x_it.o
  1774. 0x00000000000014c4 NMI_Handler
  1775. .text.HardFault_Handler
  1776. 0x00000000000014c8 0x10 ./APP/ch32v20x_it.o
  1777. 0x00000000000014c8 HardFault_Handler
  1778. .text.BB_IRQHandler
  1779. 0x00000000000014d8 0xc ./APP/ch32v20x_it.o
  1780. 0x00000000000014d8 BB_IRQHandler
  1781. .text.led_dev_duty
  1782. 0x00000000000014e4 0x48 ./APP/led.o
  1783. .text.led_task_process_event
  1784. 0x000000000000152c 0x11a ./APP/led.o
  1785. .text.set_led_indication
  1786. 0x0000000000001646 0xb0 ./APP/led.o
  1787. 0x0000000000001646 set_led_indication
  1788. .text.led_task_init
  1789. 0x00000000000016f6 0x10a ./APP/led.o
  1790. 0x00000000000016f6 led_task_init
  1791. .text.led_task_start
  1792. 0x0000000000001800 0x12 ./APP/led.o
  1793. 0x0000000000001800 led_task_start
  1794. .text.vUser_led_set_view_stat
  1795. 0x0000000000001812 0x3a ./APP/led.o
  1796. 0x0000000000001812 vUser_led_set_view_stat
  1797. .text.OTA_IAPReadDataComplete
  1798. 0x000000000000184c 0xc ./APP/peripheral.o
  1799. 0x000000000000184c OTA_IAPReadDataComplete
  1800. .text.peripheralStateNotificationCB
  1801. 0x0000000000001858 0xba ./APP/peripheral.o
  1802. .text.Peripheral_Init
  1803. 0x0000000000001912 0xb0 ./APP/peripheral.o
  1804. 0x0000000000001912 Peripheral_Init
  1805. .text.OTA_IAP_SendData
  1806. 0x00000000000019c2 0xa ./APP/peripheral.o
  1807. 0x00000000000019c2 OTA_IAP_SendData
  1808. .text.OTA_IAP_SendCMDDealSta
  1809. 0x00000000000019cc 0x16 ./APP/peripheral.o
  1810. 0x00000000000019cc OTA_IAP_SendCMDDealSta
  1811. .text.Peripheral_ProcessEvent
  1812. 0x00000000000019e2 0x100 ./APP/peripheral.o
  1813. 0x00000000000019e2 Peripheral_ProcessEvent
  1814. .text.OTA_IAP_CMDErrDeal
  1815. 0x0000000000001ae2 0x6 ./APP/peripheral.o
  1816. 0x0000000000001ae2 OTA_IAP_CMDErrDeal
  1817. .text.IWDG_Feed_Init
  1818. 0x0000000000001ae8 0x32 ./APP/peripheral.o
  1819. 0x0000000000001ae8 IWDG_Feed_Init
  1820. .text.app_start
  1821. 0x0000000000001b1a 0x16 ./APP/peripheral.o
  1822. 0x0000000000001b1a app_start
  1823. .text.FLASH_read
  1824. 0x0000000000001b30 0x18 ./APP/peripheral.o
  1825. 0x0000000000001b30 FLASH_read
  1826. .text.SwitchImageFlag
  1827. 0x0000000000001b48 0x48 ./APP/peripheral.o
  1828. 0x0000000000001b48 SwitchImageFlag
  1829. .text.Rec_OTA_IAP_DataDeal
  1830. 0x0000000000001b90 0x254 ./APP/peripheral.o
  1831. 0x0000000000001b90 Rec_OTA_IAP_DataDeal
  1832. .text.OTA_IAPWriteData
  1833. 0x0000000000001de4 0x1c ./APP/peripheral.o
  1834. 0x0000000000001de4 OTA_IAPWriteData
  1835. .text.ReadImageFlag
  1836. 0x0000000000001e00 0x4a ./APP/peripheral_main.o
  1837. 0x0000000000001e00 ReadImageFlag
  1838. .text.startup.main
  1839. 0x0000000000001e4a 0x1a0 ./APP/peripheral_main.o
  1840. 0x0000000000001e4a main
  1841. .text.SystemInit
  1842. 0x0000000000001fea 0xea ./APP/system_ch32v20x.o
  1843. 0x0000000000001fea SystemInit
  1844. .text.SystemCoreClockUpdate
  1845. 0x00000000000020d4 0xac ./APP/system_ch32v20x.o
  1846. 0x00000000000020d4 SystemCoreClockUpdate
  1847. .text.printf 0x0000000000002180 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)
  1848. 0x0000000000002180 iprintf
  1849. 0x0000000000002180 printf
  1850. .text._puts_r 0x00000000000021c0 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-puts.o)
  1851. 0x00000000000021c0 _puts_r
  1852. .text.puts 0x0000000000002294 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-puts.o)
  1853. 0x0000000000002294 puts
  1854. .text.__swbuf_r
  1855. 0x000000000000229e 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-wbuf.o)
  1856. 0x000000000000229e __swbuf_r
  1857. .text.__swsetup_r
  1858. 0x000000000000235a 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-wsetup.o)
  1859. 0x000000000000235a __swsetup_r
  1860. .text.__sflush_r
  1861. 0x0000000000002456 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-fflush.o)
  1862. 0x0000000000002456 __sflush_r
  1863. .text._fflush_r
  1864. 0x0000000000002586 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-fflush.o)
  1865. 0x0000000000002586 _fflush_r
  1866. .text.std 0x00000000000025ea 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)
  1867. .text._cleanup_r
  1868. 0x0000000000002650 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)
  1869. 0x0000000000002650 _cleanup_r
  1870. .text.__sfmoreglue
  1871. 0x000000000000265a 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-findfp.o)
  1872. 0x000000000000265a __sfmoreglue
  1873. .text.__sinit 0x00000000000026a0 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-findfp.o)
  1874. 0x00000000000026a0 __sinit
  1875. .text.__sfp 0x000000000000270a 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-findfp.o)
  1876. 0x000000000000270a __sfp
  1877. .text._fwalk_reent
  1878. 0x00000000000027aa 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)
  1879. 0x00000000000027aa _fwalk_reent
  1880. .text.__swhatbuf_r
  1881. 0x0000000000002814 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)
  1882. 0x0000000000002814 __swhatbuf_r
  1883. .text.__smakebuf_r
  1884. 0x000000000000286c 0x90 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1885. 0x000000000000286c __smakebuf_r
  1886. .text._free_r 0x00000000000028fc 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)
  1887. 0x00000000000028fc _free_r
  1888. .text._malloc_r
  1889. 0x00000000000029a4 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-nano-mallocr.o)
  1890. 0x00000000000029a4 _malloc_r
  1891. .text.__sfputc_r
  1892. 0x0000000000002a78 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)
  1893. .text.__sfputs_r
  1894. 0x0000000000002aa0 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-vfprintf.o)
  1895. 0x0000000000002aa0 __sfputs_r
  1896. .text._vfprintf_r
  1897. 0x0000000000002ae0 0x286 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1898. 0x0000000000002ae0 _vfprintf_r
  1899. 0x0000000000002ae0 _vfiprintf_r
  1900. .text._printf_common
  1901. 0x0000000000002d66 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)
  1902. 0x0000000000002d66 _printf_common
  1903. .text._printf_i
  1904. 0x0000000000002e72 0x2a0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-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)
  1905. 0x0000000000002e72 _printf_i
  1906. .text._sbrk_r 0x0000000000003112 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)
  1907. 0x0000000000003112 _sbrk_r
  1908. .text.__sread 0x0000000000003144 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-stdio.o)
  1909. 0x0000000000003144 __sread
  1910. .text.__swrite
  1911. 0x0000000000003170 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-stdio.o)
  1912. 0x0000000000003170 __swrite
  1913. .text.__sseek 0x00000000000031b8 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-stdio.o)
  1914. 0x00000000000031b8 __sseek
  1915. .text.__sclose
  1916. 0x00000000000031e8 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-stdio.o)
  1917. 0x00000000000031e8 __sclose
  1918. .text._write_r
  1919. 0x00000000000031ee 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)
  1920. 0x00000000000031ee _write_r
  1921. .text._close_r
  1922. 0x0000000000003224 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)
  1923. 0x0000000000003224 _close_r
  1924. .text._fstat_r
  1925. 0x0000000000003254 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)
  1926. 0x0000000000003254 _fstat_r
  1927. .text._isatty_r
  1928. 0x0000000000003286 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)
  1929. 0x0000000000003286 _isatty_r
  1930. .text._lseek_r
  1931. 0x00000000000032b6 0x34 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1932. 0x00000000000032b6 _lseek_r
  1933. .text.memchr 0x00000000000032ea 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)
  1934. 0x00000000000032ea memchr
  1935. .text.__malloc_lock
  1936. 0x0000000000003302 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)
  1937. 0x0000000000003302 __malloc_lock
  1938. .text.__malloc_unlock
  1939. 0x0000000000003304 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)
  1940. 0x0000000000003304 __malloc_unlock
  1941. .text._read_r 0x0000000000003306 0x34 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/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)
  1942. 0x0000000000003306 _read_r
  1943. .text._close 0x000000000000333a 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)
  1944. 0x000000000000333a _close
  1945. .text._fstat 0x000000000000334a 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)
  1946. 0x000000000000334a _fstat
  1947. .text._isatty 0x000000000000335a 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)
  1948. 0x000000000000335a _isatty
  1949. .text._lseek 0x000000000000336a 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)
  1950. 0x000000000000336a _lseek
  1951. .text._read 0x000000000000337a 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)
  1952. 0x000000000000337a _read
  1953. *(.rodata)
  1954. *(.rodata*)
  1955. *fill* 0x000000000000338a 0x2
  1956. .rodata.HAL_ProcessEvent.str1.4
  1957. 0x000000000000338c 0x3 ./HAL/MCU.o
  1958. *fill* 0x000000000000338f 0x1
  1959. .rodata.WCHBLE_Init.str1.4
  1960. 0x0000000000003390 0x49 ./HAL/MCU.o
  1961. *fill* 0x00000000000033d9 0x3
  1962. .rodata.HAL_TimeInit.str1.4
  1963. 0x00000000000033dc 0x27 ./HAL/RTC.o
  1964. *fill* 0x0000000000003403 0x1
  1965. .rodata.led_task_init.str1.4
  1966. 0x0000000000003404 0x10 ./APP/led.o
  1967. .rodata.peripheralStateNotificationCB
  1968. 0x0000000000003414 0x18 ./APP/peripheral.o
  1969. .rodata.Rec_OTA_IAP_DataDeal
  1970. 0x000000000000342c 0x14 ./APP/peripheral.o
  1971. .rodata.OTA_IAPReadDataComplete.str1.4
  1972. 0x0000000000003440 0x10 ./APP/peripheral.o
  1973. .rodata.Peripheral_ProcessEvent.str1.4
  1974. 0x0000000000003450 0x24 ./APP/peripheral.o
  1975. .rodata.Rec_OTA_IAP_DataDeal.str1.4
  1976. 0x0000000000003474 0x8f ./APP/peripheral.o
  1977. *fill* 0x0000000000003503 0x1
  1978. .rodata.peripheralStateNotificationCB.str1.4
  1979. 0x0000000000003504 0x70 ./APP/peripheral.o
  1980. .rodata.ReadImageFlag.str1.4
  1981. 0x0000000000003574 0x11 ./APP/peripheral_main.o
  1982. *fill* 0x0000000000003585 0x3
  1983. .rodata.main.str1.4
  1984. 0x0000000000003588 0x5f ./APP/peripheral_main.o
  1985. *fill* 0x00000000000035e7 0x1
  1986. .rodata.__sf_fake_stderr
  1987. 0x00000000000035e8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
  1988. 0x00000000000035e8 __sf_fake_stderr
  1989. .rodata.__sf_fake_stdin
  1990. 0x0000000000003608 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)
  1991. 0x0000000000003608 __sf_fake_stdin
  1992. .rodata.__sf_fake_stdout
  1993. 0x0000000000003628 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)
  1994. 0x0000000000003628 __sf_fake_stdout
  1995. .rodata._vfprintf_r.str1.4
  1996. 0x0000000000003648 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)
  1997. *fill* 0x000000000000365b 0x1
  1998. .rodata._printf_i.str1.4
  1999. 0x000000000000365c 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_i.o)
  2000. 0x25 (size before relaxing)
  2001. *(.sdata2.*)
  2002. .sdata2.OTAProfileServUUID
  2003. 0x0000000000003684 0x2 ./Profile/OTAprofile.o
  2004. 0x0000000000003684 OTAProfileServUUID
  2005. *fill* 0x0000000000003686 0x2
  2006. .sdata2.OTAProfileService
  2007. 0x0000000000003688 0x8 ./Profile/OTAprofile.o
  2008. .sdata2.OTAProfilechar1UUID
  2009. 0x0000000000003690 0x2 ./Profile/OTAprofile.o
  2010. 0x0000000000003690 OTAProfilechar1UUID
  2011. *fill* 0x0000000000003692 0x2
  2012. .sdata2._global_impure_ptr
  2013. 0x0000000000003694 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)
  2014. 0x0000000000003694 _global_impure_ptr
  2015. *(.gnu.linkonce.t.*)
  2016. 0x0000000000003698 . = ALIGN (0x4)
  2017. .rela.dyn 0x0000000000003698 0x0
  2018. .rela.init 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2019. .rela.vector 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2020. .rela.text.handle_reset
  2021. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2022. .rela.text._sbrk
  2023. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2024. .rela.sdata.curbrk.4953
  2025. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2026. .rela.text._vfprintf_r
  2027. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2028. .rela.text._sbrk_r
  2029. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2030. .rela.text._write_r
  2031. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2032. .rela.text._close_r
  2033. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2034. .rela.text._fstat_r
  2035. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2036. .rela.text._isatty_r
  2037. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2038. .rela.text._lseek_r
  2039. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2040. .rela.text._read_r
  2041. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2042. .rela.text._close
  2043. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2044. .rela.text._fstat
  2045. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2046. .rela.text._isatty
  2047. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2048. .rela.text._lseek
  2049. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2050. .rela.text._read
  2051. 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
  2052. .fini 0x0000000000003698 0x0
  2053. *(SORT_NONE(.fini))
  2054. 0x0000000000003698 . = ALIGN (0x4)
  2055. [!provide] PROVIDE (_etext = .)
  2056. [!provide] PROVIDE (_eitcm = .)
  2057. .preinit_array 0x0000000000003698 0x0
  2058. [!provide] PROVIDE (__preinit_array_start = .)
  2059. *(.preinit_array)
  2060. [!provide] PROVIDE (__preinit_array_end = .)
  2061. .init_array 0x0000000000003698 0x0
  2062. [!provide] PROVIDE (__init_array_start = .)
  2063. *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
  2064. *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
  2065. [!provide] PROVIDE (__init_array_end = .)
  2066. .fini_array 0x0000000000003698 0x0
  2067. [!provide] PROVIDE (__fini_array_start = .)
  2068. *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
  2069. *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
  2070. [!provide] PROVIDE (__fini_array_end = .)
  2071. .ctors
  2072. *crtbegin.o(.ctors)
  2073. *crtbegin?.o(.ctors)
  2074. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
  2075. *(SORT_BY_NAME(.ctors.*))
  2076. *(.ctors)
  2077. .dtors
  2078. *crtbegin.o(.dtors)
  2079. *crtbegin?.o(.dtors)
  2080. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
  2081. *(SORT_BY_NAME(.dtors.*))
  2082. *(.dtors)
  2083. .dalign 0x0000000020004000 0x0 load address 0x0000000000003698
  2084. 0x0000000020004000 . = ALIGN (0x4)
  2085. 0x0000000020004000 PROVIDE (_data_vma = .)
  2086. .dlalign 0x0000000000003698 0x0
  2087. 0x0000000000003698 . = ALIGN (0x4)
  2088. 0x0000000000003698 PROVIDE (_data_lma = .)
  2089. .data 0x0000000020004000 0x180 load address 0x0000000000003698
  2090. *(.gnu.linkonce.r.*)
  2091. *(.data .data.*)
  2092. .data.APBAHBPrescTable
  2093. 0x0000000020004000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2094. .data.OTAProfileAttrTbl
  2095. 0x0000000020004010 0x40 ./Profile/OTAprofile.o
  2096. .data.OTAProfileCBs
  2097. 0x0000000020004050 0xc ./Profile/OTAprofile.o
  2098. 0x0000000020004050 OTAProfileCBs
  2099. .data.OTAProfileCharUserDesp
  2100. 0x000000002000405c 0xc ./Profile/OTAprofile.o
  2101. .data.led_work
  2102. 0x0000000020004068 0x3c ./APP/led.o
  2103. .data.Peripheral_PeripheralCBs
  2104. 0x00000000200040a4 0xc ./APP/peripheral.o
  2105. .data.attDeviceName
  2106. 0x00000000200040b0 0x15 ./APP/peripheral.o
  2107. *fill* 0x00000000200040c5 0x3
  2108. .data.scanRspData
  2109. 0x00000000200040c8 0x1f ./APP/peripheral.o
  2110. *fill* 0x00000000200040e7 0x1
  2111. .data.AHBPrescTable
  2112. 0x00000000200040e8 0x10 ./APP/system_ch32v20x.o
  2113. 0x00000000200040e8 AHBPrescTable
  2114. .data.impure_data
  2115. 0x00000000200040f8 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)
  2116. *(.gnu.linkonce.d.*)
  2117. 0x0000000020004158 . = ALIGN (0x8)
  2118. [!provide] PROVIDE (__global_pointer$ = (. + 0x800))
  2119. *(.sdata .sdata.*)
  2120. .sdata.ADCPrescTable
  2121. 0x0000000020004158 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2122. .sdata.curbrk.4953
  2123. 0x000000002000415c 0x4 ./SRC/Debug/debug.o
  2124. .sdata.OTAProfileCharProps
  2125. 0x0000000020004160 0x1 ./Profile/OTAprofile.o
  2126. .sdata.led_task_id
  2127. 0x0000000020004161 0x1 ./APP/led.o
  2128. 0x0000000020004161 led_task_id
  2129. *fill* 0x0000000020004162 0x2
  2130. .sdata.Peripheral_OTA_IAPProfileCBs
  2131. 0x0000000020004164 0x8 ./APP/peripheral.o
  2132. .sdata.Peripheral_TaskID
  2133. 0x000000002000416c 0x1 ./APP/peripheral.o
  2134. *fill* 0x000000002000416d 0x3
  2135. .sdata.advertData
  2136. 0x0000000020004170 0x7 ./APP/peripheral.o
  2137. .sdata.CurrImageFlag
  2138. 0x0000000020004177 0x1 ./APP/peripheral_main.o
  2139. 0x0000000020004177 CurrImageFlag
  2140. .sdata.SystemCoreClock
  2141. 0x0000000020004178 0x4 ./APP/system_ch32v20x.o
  2142. 0x0000000020004178 SystemCoreClock
  2143. .sdata._impure_ptr
  2144. 0x000000002000417c 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)
  2145. 0x000000002000417c _impure_ptr
  2146. *(.gnu.linkonce.s.*)
  2147. 0x0000000020004180 . = ALIGN (0x8)
  2148. *(.srodata.cst16)
  2149. *(.srodata.cst8)
  2150. *(.srodata.cst4)
  2151. *(.srodata.cst2)
  2152. *(.srodata .srodata.*)
  2153. 0x0000000020004180 . = ALIGN (0x4)
  2154. 0x0000000020004180 PROVIDE (_edata = .)
  2155. .bss 0x0000000020004180 0x2134 load address 0x0000000000003818
  2156. 0x0000000020004180 . = ALIGN (0x4)
  2157. 0x0000000020004180 PROVIDE (_sbss = .)
  2158. *(.sbss*)
  2159. .sbss.p_ms 0x0000000020004180 0x2 ./SRC/Debug/debug.o
  2160. .sbss.p_us 0x0000000020004182 0x1 ./SRC/Debug/debug.o
  2161. .sbss.OTAProfileChar
  2162. 0x0000000020004183 0x1 ./Profile/OTAprofile.o
  2163. .sbss.OTAProfileReadLen
  2164. 0x0000000020004184 0x1 ./Profile/OTAprofile.o
  2165. .sbss.OTAProfileWriteLen
  2166. 0x0000000020004185 0x1 ./Profile/OTAprofile.o
  2167. *fill* 0x0000000020004186 0x2
  2168. .sbss.OTAProfile_AppCBs
  2169. 0x0000000020004188 0x4 ./Profile/OTAprofile.o
  2170. .sbss.g_LLE_IRQLibHandlerLocation
  2171. 0x000000002000418c 0x4 ./HAL/MCU.o
  2172. 0x000000002000418c g_LLE_IRQLibHandlerLocation
  2173. .sbss.halTaskID
  2174. 0x0000000020004190 0x1 ./HAL/MCU.o
  2175. 0x0000000020004190 halTaskID
  2176. *fill* 0x0000000020004191 0x3
  2177. .sbss.RTCTigFlag
  2178. 0x0000000020004194 0x4 ./HAL/RTC.o
  2179. 0x0000000020004194 RTCTigFlag
  2180. .sbss.EraseAdd
  2181. 0x0000000020004198 0x4 ./APP/peripheral.o
  2182. 0x0000000020004198 EraseAdd
  2183. .sbss.EraseBlockCnt
  2184. 0x000000002000419c 0x4 ./APP/peripheral.o
  2185. 0x000000002000419c EraseBlockCnt
  2186. .sbss.EraseBlockNum
  2187. 0x00000000200041a0 0x4 ./APP/peripheral.o
  2188. 0x00000000200041a0 EraseBlockNum
  2189. .sbss.OpAdd 0x00000000200041a4 0x4 ./APP/peripheral.o
  2190. 0x00000000200041a4 OpAdd
  2191. .sbss.OpParaDataLen
  2192. 0x00000000200041a8 0x4 ./APP/peripheral.o
  2193. 0x00000000200041a8 OpParaDataLen
  2194. .sbss.VerifyStatus
  2195. 0x00000000200041ac 0x1 ./APP/peripheral.o
  2196. 0x00000000200041ac VerifyStatus
  2197. *fill* 0x00000000200041ad 0x1
  2198. .sbss.block_buf_len
  2199. 0x00000000200041ae 0x2 ./APP/peripheral.o
  2200. 0x00000000200041ae block_buf_len
  2201. .sbss.prom_addr
  2202. 0x00000000200041b0 0x4 ./APP/peripheral.o
  2203. 0x00000000200041b0 prom_addr
  2204. .sbss.__malloc_free_list
  2205. 0x00000000200041b4 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)
  2206. 0x00000000200041b4 __malloc_free_list
  2207. .sbss.__malloc_sbrk_start
  2208. 0x00000000200041b8 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)
  2209. 0x00000000200041b8 __malloc_sbrk_start
  2210. *(.gnu.linkonce.sb.*)
  2211. *(.bss*)
  2212. .bss.OTAProfileReadBuf
  2213. 0x00000000200041bc 0xf7 ./Profile/OTAprofile.o
  2214. *fill* 0x00000000200042b3 0x1
  2215. .bss.OTAProfileWriteBuf
  2216. 0x00000000200042b4 0xf7 ./Profile/OTAprofile.o
  2217. *fill* 0x00000000200043ab 0x1
  2218. .bss.Peripheral_BondMgrCBs
  2219. 0x00000000200043ac 0xc ./APP/peripheral.o
  2220. .bss.block_buf
  2221. 0x00000000200043b8 0x200 ./APP/peripheral.o
  2222. 0x00000000200043b8 block_buf
  2223. .bss.iap_rec_data
  2224. 0x00000000200045b8 0xf7 ./APP/peripheral.o
  2225. 0x00000000200045b8 iap_rec_data
  2226. *fill* 0x00000000200046af 0x1
  2227. .bss.MEM_BUF 0x00000000200046b0 0x1c00 ./APP/peripheral_main.o
  2228. 0x00000000200046b0 MEM_BUF
  2229. *(.gnu.linkonce.b.*)
  2230. *(COMMON*)
  2231. COMMON 0x00000000200062b0 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)
  2232. 0x00000000200062b0 errno
  2233. 0x00000000200062b4 . = ALIGN (0x4)
  2234. 0x00000000200062b4 PROVIDE (_ebss = .)
  2235. 0x00000000200062b4 PROVIDE (_end = _ebss)
  2236. [!provide] PROVIDE (end = .)
  2237. .stack 0x0000000020010000 0x0
  2238. 0x0000000020010000 PROVIDE (_heap_end = .)
  2239. 0x0000000020010000 . = ALIGN (0x4)
  2240. 0x0000000020010000 PROVIDE (_eusrstack = .)
  2241. OUTPUT(OnlyUpdateApp_IAP.elf elf32-littleriscv)
  2242. .debug_line 0x0000000000000000 0x16fbb
  2243. .debug_line 0x0000000000000000 0x290 ./Startup/startup_ch32v20x_D8W.o
  2244. .debug_line 0x0000000000000290 0x19ee ./SRC/Peripheral/src/ch32v20x_adc.o
  2245. .debug_line 0x0000000000001c7e 0x4a5 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2246. .debug_line 0x0000000000002123 0x71c ./SRC/Peripheral/src/ch32v20x_exti.o
  2247. .debug_line 0x000000000000283f 0x26a9 ./SRC/Peripheral/src/ch32v20x_flash.o
  2248. .debug_line 0x0000000000004ee8 0x11e7 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2249. .debug_line 0x00000000000060cf 0x53b ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2250. .debug_line 0x000000000000660a 0xcfb ./SRC/Peripheral/src/ch32v20x_pwr.o
  2251. .debug_line 0x0000000000007305 0x1333 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2252. .debug_line 0x0000000000008638 0x16f3 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2253. .debug_line 0x0000000000009d2b 0x335b ./SRC/Peripheral/src/ch32v20x_tim.o
  2254. .debug_line 0x000000000000d086 0x2c91 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2255. .debug_line 0x000000000000fd17 0x100b ./SRC/Peripheral/src/ch32v20x_usart.o
  2256. .debug_line 0x0000000000010d22 0x8b3 ./SRC/Debug/debug.o
  2257. .debug_line 0x00000000000115d5 0x7e1 ./Profile/OTAprofile.o
  2258. .debug_line 0x0000000000011db6 0x2ef ./LIB/ble_task_scheduler.o
  2259. .debug_line 0x00000000000120a5 0xf7c ./HAL/MCU.o
  2260. .debug_line 0x0000000000013021 0x7e7 ./HAL/RTC.o
  2261. .debug_line 0x0000000000013808 0x459 ./APP/ch32v20x_it.o
  2262. .debug_line 0x0000000000013c61 0xe94 ./APP/led.o
  2263. .debug_line 0x0000000000014af5 0x131d ./APP/peripheral.o
  2264. .debug_line 0x0000000000015e12 0x9c0 ./APP/peripheral_main.o
  2265. .debug_line 0x00000000000167d2 0x7e9 ./APP/system_ch32v20x.o
  2266. .debug_info 0x0000000000000000 0x1a59c
  2267. .debug_info 0x0000000000000000 0x22 ./Startup/startup_ch32v20x_D8W.o
  2268. .debug_info 0x0000000000000022 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2269. .debug_info 0x000000000000170a 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2270. .debug_info 0x000000000000219e 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
  2271. .debug_info 0x0000000000002dab 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
  2272. .debug_info 0x0000000000004388 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2273. .debug_info 0x000000000000552c 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2274. .debug_info 0x00000000000060a0 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2275. .debug_info 0x00000000000070f4 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2276. .debug_info 0x000000000000836d 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2277. .debug_info 0x000000000000932f 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
  2278. .debug_info 0x000000000000bdef 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2279. .debug_info 0x000000000000e202 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
  2280. .debug_info 0x000000000000f542 0xf2d ./SRC/Debug/debug.o
  2281. .debug_info 0x000000000001046f 0x1066 ./Profile/OTAprofile.o
  2282. .debug_info 0x00000000000114d5 0x22 ./LIB/ble_task_scheduler.o
  2283. .debug_info 0x00000000000114f7 0x1a85 ./HAL/MCU.o
  2284. .debug_info 0x0000000000012f7c 0xd55 ./HAL/RTC.o
  2285. .debug_info 0x0000000000013cd1 0xc2c ./APP/ch32v20x_it.o
  2286. .debug_info 0x00000000000148fd 0x17a3 ./APP/led.o
  2287. .debug_info 0x00000000000160a0 0x289e ./APP/peripheral.o
  2288. .debug_info 0x000000000001893e 0x10d5 ./APP/peripheral_main.o
  2289. .debug_info 0x0000000000019a13 0xb89 ./APP/system_ch32v20x.o
  2290. .debug_abbrev 0x0000000000000000 0x4890
  2291. .debug_abbrev 0x0000000000000000 0x12 ./Startup/startup_ch32v20x_D8W.o
  2292. .debug_abbrev 0x0000000000000012 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
  2293. .debug_abbrev 0x00000000000003be 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2294. .debug_abbrev 0x00000000000006b5 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
  2295. .debug_abbrev 0x000000000000098f 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
  2296. .debug_abbrev 0x0000000000000df7 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2297. .debug_abbrev 0x000000000000114b 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2298. .debug_abbrev 0x00000000000013cd 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
  2299. .debug_abbrev 0x0000000000001769 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2300. .debug_abbrev 0x0000000000001add 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2301. .debug_abbrev 0x0000000000001e07 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
  2302. .debug_abbrev 0x0000000000002238 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2303. .debug_abbrev 0x000000000000267f 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
  2304. .debug_abbrev 0x00000000000029a4 0x2f0 ./SRC/Debug/debug.o
  2305. .debug_abbrev 0x0000000000002c94 0x36d ./Profile/OTAprofile.o
  2306. .debug_abbrev 0x0000000000003001 0x12 ./LIB/ble_task_scheduler.o
  2307. .debug_abbrev 0x0000000000003013 0x43e ./HAL/MCU.o
  2308. .debug_abbrev 0x0000000000003451 0x2b4 ./HAL/RTC.o
  2309. .debug_abbrev 0x0000000000003705 0x24b ./APP/ch32v20x_it.o
  2310. .debug_abbrev 0x0000000000003950 0x452 ./APP/led.o
  2311. .debug_abbrev 0x0000000000003da2 0x50f ./APP/peripheral.o
  2312. .debug_abbrev 0x00000000000042b1 0x31f ./APP/peripheral_main.o
  2313. .debug_abbrev 0x00000000000045d0 0x2c0 ./APP/system_ch32v20x.o
  2314. .debug_aranges 0x0000000000000000 0xfa0
  2315. .debug_aranges
  2316. 0x0000000000000000 0x30 ./Startup/startup_ch32v20x_D8W.o
  2317. .debug_aranges
  2318. 0x0000000000000030 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
  2319. .debug_aranges
  2320. 0x0000000000000180 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2321. .debug_aranges
  2322. 0x00000000000001c8 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
  2323. .debug_aranges
  2324. 0x0000000000000218 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
  2325. .debug_aranges
  2326. 0x0000000000000328 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2327. .debug_aranges
  2328. 0x00000000000003d8 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2329. .debug_aranges
  2330. 0x0000000000000420 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2331. .debug_aranges
  2332. 0x00000000000004a8 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2333. .debug_aranges
  2334. 0x00000000000005d8 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2335. .debug_aranges
  2336. 0x0000000000000660 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
  2337. .debug_aranges
  2338. 0x0000000000000930 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2339. .debug_aranges
  2340. 0x0000000000000c00 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
  2341. .debug_aranges
  2342. 0x0000000000000cf0 0x50 ./SRC/Debug/debug.o
  2343. .debug_aranges
  2344. 0x0000000000000d40 0x40 ./Profile/OTAprofile.o
  2345. .debug_aranges
  2346. 0x0000000000000d80 0x28 ./LIB/ble_task_scheduler.o
  2347. .debug_aranges
  2348. 0x0000000000000da8 0x50 ./HAL/MCU.o
  2349. .debug_aranges
  2350. 0x0000000000000df8 0x30 ./HAL/RTC.o
  2351. .debug_aranges
  2352. 0x0000000000000e28 0x30 ./APP/ch32v20x_it.o
  2353. .debug_aranges
  2354. 0x0000000000000e58 0x48 ./APP/led.o
  2355. .debug_aranges
  2356. 0x0000000000000ea0 0xa8 ./APP/peripheral.o
  2357. .debug_aranges
  2358. 0x0000000000000f48 0x30 ./APP/peripheral_main.o
  2359. .debug_aranges
  2360. 0x0000000000000f78 0x28 ./APP/system_ch32v20x.o
  2361. .debug_str 0x0000000000000000 0x551d
  2362. .debug_str 0x0000000000000000 0x8c ./Startup/startup_ch32v20x_D8W.o
  2363. .debug_str 0x000000000000008c 0xb6b ./SRC/Peripheral/src/ch32v20x_adc.o
  2364. 0xcad (size before relaxing)
  2365. .debug_str 0x0000000000000bf7 0xe0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2366. 0x6dc (size before relaxing)
  2367. .debug_str 0x0000000000000cd7 0x205 ./SRC/Peripheral/src/ch32v20x_exti.o
  2368. 0x823 (size before relaxing)
  2369. .debug_str 0x0000000000000edc 0x52c ./SRC/Peripheral/src/ch32v20x_flash.o
  2370. 0xbb5 (size before relaxing)
  2371. .debug_str 0x0000000000001408 0x3ff ./SRC/Peripheral/src/ch32v20x_gpio.o
  2372. 0xa46 (size before relaxing)
  2373. .debug_str 0x0000000000001807 0x180 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2374. 0x79a (size before relaxing)
  2375. .debug_str 0x0000000000001987 0x299 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2376. 0x8f2 (size before relaxing)
  2377. .debug_str 0x0000000000001c20 0x454 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2378. 0xb64 (size before relaxing)
  2379. .debug_str 0x0000000000002074 0x31b ./SRC/Peripheral/src/ch32v20x_rtc.o
  2380. 0x9cb (size before relaxing)
  2381. .debug_str 0x000000000000238f 0xc1a ./SRC/Peripheral/src/ch32v20x_tim.o
  2382. 0x134f (size before relaxing)
  2383. .debug_str 0x0000000000002fa9 0x760 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2384. 0x13b4 (size before relaxing)
  2385. .debug_str 0x0000000000003709 0x42d ./SRC/Peripheral/src/ch32v20x_usart.o
  2386. 0xb80 (size before relaxing)
  2387. .debug_str 0x0000000000003b36 0x108 ./SRC/Debug/debug.o
  2388. 0x9a7 (size before relaxing)
  2389. .debug_str 0x0000000000003c3e 0x314 ./Profile/OTAprofile.o
  2390. 0x92c (size before relaxing)
  2391. .debug_str 0x0000000000003f52 0x69 ./LIB/ble_task_scheduler.o
  2392. 0xd3 (size before relaxing)
  2393. .debug_str 0x0000000000003fbb 0x6d6 ./HAL/MCU.o
  2394. 0x117f (size before relaxing)
  2395. .debug_str 0x0000000000004691 0xe3 ./HAL/RTC.o
  2396. 0x858 (size before relaxing)
  2397. .debug_str 0x0000000000004774 0x52 ./APP/ch32v20x_it.o
  2398. 0x6ef (size before relaxing)
  2399. .debug_str 0x00000000000047c6 0x35c ./APP/led.o
  2400. 0xeca (size before relaxing)
  2401. .debug_str 0x0000000000004b22 0x91e ./APP/peripheral.o
  2402. 0x12e8 (size before relaxing)
  2403. .debug_str 0x0000000000005440 0x91 ./APP/peripheral_main.o
  2404. 0x9aa (size before relaxing)
  2405. .debug_str 0x00000000000054d1 0x4c ./APP/system_ch32v20x.o
  2406. 0x710 (size before relaxing)
  2407. .debug_ranges 0x0000000000000000 0x10b0
  2408. .debug_ranges 0x0000000000000000 0x28 ./Startup/startup_ch32v20x_D8W.o
  2409. .debug_ranges 0x0000000000000028 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
  2410. .debug_ranges 0x0000000000000168 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2411. .debug_ranges 0x00000000000001b8 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
  2412. .debug_ranges 0x00000000000001f8 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  2413. .debug_ranges 0x00000000000002f8 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2414. .debug_ranges 0x0000000000000398 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2415. .debug_ranges 0x00000000000003d0 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2416. .debug_ranges 0x0000000000000448 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2417. .debug_ranges 0x0000000000000568 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2418. .debug_ranges 0x00000000000005e0 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
  2419. .debug_ranges 0x00000000000008e8 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2420. .debug_ranges 0x0000000000000be8 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
  2421. .debug_ranges 0x0000000000000cc8 0x40 ./SRC/Debug/debug.o
  2422. .debug_ranges 0x0000000000000d08 0x98 ./Profile/OTAprofile.o
  2423. .debug_ranges 0x0000000000000da0 0x20 ./LIB/ble_task_scheduler.o
  2424. .debug_ranges 0x0000000000000dc0 0x88 ./HAL/MCU.o
  2425. .debug_ranges 0x0000000000000e48 0x20 ./HAL/RTC.o
  2426. .debug_ranges 0x0000000000000e68 0x20 ./APP/ch32v20x_it.o
  2427. .debug_ranges 0x0000000000000e88 0x108 ./APP/led.o
  2428. .debug_ranges 0x0000000000000f90 0xc8 ./APP/peripheral.o
  2429. .debug_ranges 0x0000000000001058 0x20 ./APP/peripheral_main.o
  2430. .debug_ranges 0x0000000000001078 0x38 ./APP/system_ch32v20x.o
  2431. .debug_loc 0x0000000000000000 0x7ea3
  2432. .debug_loc 0x0000000000000000 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
  2433. .debug_loc 0x0000000000000ada 0x6e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2434. .debug_loc 0x0000000000000b48 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
  2435. .debug_loc 0x0000000000000cc9 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
  2436. .debug_loc 0x000000000000198b 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2437. .debug_loc 0x0000000000002092 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2438. .debug_loc 0x00000000000020fa 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
  2439. .debug_loc 0x0000000000002398 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
  2440. .debug_loc 0x0000000000002b45 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
  2441. .debug_loc 0x0000000000003094 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
  2442. .debug_loc 0x0000000000004b50 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2443. .debug_loc 0x00000000000060f6 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
  2444. .debug_loc 0x0000000000006848 0x1a8 ./SRC/Debug/debug.o
  2445. .debug_loc 0x00000000000069f0 0x59c ./Profile/OTAprofile.o
  2446. .debug_loc 0x0000000000006f8c 0x40c ./HAL/MCU.o
  2447. .debug_loc 0x0000000000007398 0x8b ./HAL/RTC.o
  2448. .debug_loc 0x0000000000007423 0x49a ./APP/led.o
  2449. .debug_loc 0x00000000000078bd 0x524 ./APP/peripheral.o
  2450. .debug_loc 0x0000000000007de1 0xc2 ./APP/system_ch32v20x.o
  2451. .comment 0x0000000000000000 0x33
  2452. .comment 0x0000000000000000 0x33 ./SRC/Peripheral/src/ch32v20x_adc.o
  2453. 0x34 (size before relaxing)
  2454. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2455. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
  2456. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
  2457. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2458. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2459. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2460. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2461. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2462. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
  2463. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2464. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
  2465. .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
  2466. .comment 0x0000000000000033 0x34 ./Profile/OTAprofile.o
  2467. .comment 0x0000000000000033 0x34 ./HAL/MCU.o
  2468. .comment 0x0000000000000033 0x34 ./HAL/RTC.o
  2469. .comment 0x0000000000000033 0x34 ./APP/ch32v20x_it.o
  2470. .comment 0x0000000000000033 0x34 ./APP/led.o
  2471. .comment 0x0000000000000033 0x34 ./APP/peripheral.o
  2472. .comment 0x0000000000000033 0x34 ./APP/peripheral_main.o
  2473. .comment 0x0000000000000033 0x34 ./APP/system_ch32v20x.o
  2474. .debug_frame 0x0000000000000000 0x2c00
  2475. .debug_frame 0x0000000000000000 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
  2476. .debug_frame 0x00000000000002bc 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2477. .debug_frame 0x000000000000032c 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
  2478. .debug_frame 0x00000000000003bc 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
  2479. .debug_frame 0x000000000000070c 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2480. .debug_frame 0x0000000000000884 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2481. .debug_frame 0x00000000000008f4 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
  2482. .debug_frame 0x00000000000009f0 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2483. .debug_frame 0x0000000000000c40 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2484. .debug_frame 0x0000000000000da8 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
  2485. .debug_frame 0x0000000000001410 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
  2486. .debug_frame 0x0000000000001a58 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
  2487. .debug_frame 0x0000000000001c48 0xc0 ./SRC/Debug/debug.o
  2488. .debug_frame 0x0000000000001d08 0x8c ./Profile/OTAprofile.o
  2489. .debug_frame 0x0000000000001d94 0x11c ./HAL/MCU.o
  2490. .debug_frame 0x0000000000001eb0 0x60 ./HAL/RTC.o
  2491. .debug_frame 0x0000000000001f10 0x40 ./APP/ch32v20x_it.o
  2492. .debug_frame 0x0000000000001f50 0xe8 ./APP/led.o
  2493. .debug_frame 0x0000000000002038 0x218 ./APP/peripheral.o
  2494. .debug_frame 0x0000000000002250 0x60 ./APP/peripheral_main.o
  2495. .debug_frame 0x00000000000022b0 0x3c ./APP/system_ch32v20x.o
  2496. .debug_frame 0x00000000000022ec 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)
  2497. .debug_frame 0x0000000000002340 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)
  2498. .debug_frame 0x0000000000002394 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)
  2499. .debug_frame 0x00000000000023e4 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)
  2500. .debug_frame 0x0000000000002420 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)
  2501. .debug_frame 0x000000000000249c 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)
  2502. .debug_frame 0x00000000000025e4 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)
  2503. .debug_frame 0x000000000000266c 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)
  2504. .debug_frame 0x00000000000026d0 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)
  2505. .debug_frame 0x0000000000002710 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)
  2506. .debug_frame 0x0000000000002750 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)
  2507. .debug_frame 0x0000000000002820 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)
  2508. .debug_frame 0x00000000000028ac 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)
  2509. .debug_frame 0x00000000000028dc 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)
  2510. .debug_frame 0x0000000000002980 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)
  2511. .debug_frame 0x00000000000029b0 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)
  2512. .debug_frame 0x00000000000029e0 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)
  2513. .debug_frame 0x0000000000002a10 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)
  2514. .debug_frame 0x0000000000002a40 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)
  2515. .debug_frame 0x0000000000002a70 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)
  2516. .debug_frame 0x0000000000002a90 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)
  2517. .debug_frame 0x0000000000002ac0 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)
  2518. .debug_frame 0x0000000000002af0 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)
  2519. .debug_frame 0x0000000000002b60 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)
  2520. .debug_frame 0x0000000000002b80 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)
  2521. .debug_frame 0x0000000000002ba0 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)
  2522. .debug_frame 0x0000000000002bc0 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)
  2523. .debug_frame 0x0000000000002be0 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)
  2524. .stab 0x0000000000000000 0x84
  2525. .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)
  2526. .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)
  2527. 0x24 (size before relaxing)
  2528. .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)
  2529. 0x24 (size before relaxing)
  2530. .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)
  2531. 0x24 (size before relaxing)
  2532. .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)
  2533. 0x24 (size before relaxing)
  2534. .stabstr 0x0000000000000000 0x117
  2535. .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)