亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? link_uc3b1128.lds

?? freertosV4.40 是一種small的嵌入式系統。利于嵌入式開好者入門學習嵌入式操作系統。通過對于源碼的學習可以很好的掌握freertos的運行機制。
?? LDS
字號:
/****************************************************************************** * AVR32 AT32UC3B1128 GNU LD script file. * * - Compiler:           GNU GCC for AVR32 * - Supported devices:  AVR32 AT32UC3B1128 * * - author              Atmel Corporation: http://www.atmel.com \n *                       Support and FAQ: http://support.atmel.no/ * ******************************************************************************//* Copyright (c) 2007, Atmel Corporation All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * 3. The name of ATMEL may not be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND * SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */OUTPUT_FORMAT("elf32-avr32", "elf32-avr32", "elf32-avr32")OUTPUT_ARCH(avr32:uc)ENTRY(_start)MEMORY{  FLASH (rxai!w) : ORIGIN = 0x80000000, LENGTH = 0x00020000  INTRAM (wxa!ri) : ORIGIN = 0x00000004, LENGTH = 0x00007FFC  USERPAGE : ORIGIN = 0x80800000, LENGTH = 0x00000200  FACTORYPAGE : ORIGIN = 0x80800200, LENGTH = 0x00000200}PHDRS{  FLASH PT_LOAD;  INTRAM PT_NULL;  USERPAGE PT_LOAD;  FACTORYPAGE PT_LOAD;}SECTIONS{  /* If this heap size is selected, all the INTRAM space from the end of the     data area to the beginning of the stack will be allocated for the heap. */  __max_heap_size__ = -1;  /* Use a default heap size if heap size was not defined. */  __heap_size__ = DEFINED(__heap_size__) ? __heap_size__ : __max_heap_size__;  /* Use a default stack size if stack size was not defined. */  __stack_size__ = DEFINED(__stack_size__) ? __stack_size__ : 4K;  /* Read-only sections, merged into text segment: */  PROVIDE (__executable_start = 0x80000000); . = 0x80000000;  .interp         : { *(.interp) } >FLASH AT>FLASH :FLASH  .reset : {  *(.reset) } >FLASH AT>FLASH :FLASH  .hash           : { *(.hash) } >FLASH AT>FLASH :FLASH  .dynsym         : { *(.dynsym) } >FLASH AT>FLASH :FLASH  .dynstr         : { *(.dynstr) } >FLASH AT>FLASH :FLASH  .gnu.version    : { *(.gnu.version) } >FLASH AT>FLASH :FLASH  .gnu.version_d  : { *(.gnu.version_d) } >FLASH AT>FLASH :FLASH  .gnu.version_r  : { *(.gnu.version_r) } >FLASH AT>FLASH :FLASH  .rel.init       : { *(.rel.init) } >FLASH AT>FLASH :FLASH  .rela.init      : { *(.rela.init) } >FLASH AT>FLASH :FLASH  .rel.text       : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) } >FLASH AT>FLASH :FLASH  .rela.text      : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) } >FLASH AT>FLASH :FLASH  .rel.fini       : { *(.rel.fini) } >FLASH AT>FLASH :FLASH  .rela.fini      : { *(.rela.fini) } >FLASH AT>FLASH :FLASH  .rel.rodata     : { *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) } >FLASH AT>FLASH :FLASH  .rela.rodata    : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) } >FLASH AT>FLASH :FLASH  .rel.data.rel.ro   : { *(.rel.data.rel.ro*) } >FLASH AT>FLASH :FLASH  .rela.data.rel.ro   : { *(.rel.data.rel.ro*) } >FLASH AT>FLASH :FLASH  .rel.data       : { *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*) } >FLASH AT>FLASH :FLASH  .rela.data      : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) } >FLASH AT>FLASH :FLASH  .rel.tdata	  : { *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*) } >FLASH AT>FLASH :FLASH  .rela.tdata	  : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) } >FLASH AT>FLASH :FLASH  .rel.tbss	  : { *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*) } >FLASH AT>FLASH :FLASH  .rela.tbss	  : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) } >FLASH AT>FLASH :FLASH  .rel.ctors      : { *(.rel.ctors) } >FLASH AT>FLASH :FLASH  .rela.ctors     : { *(.rela.ctors) } >FLASH AT>FLASH :FLASH  .rel.dtors      : { *(.rel.dtors) } >FLASH AT>FLASH :FLASH  .rela.dtors     : { *(.rela.dtors) } >FLASH AT>FLASH :FLASH  .rel.got        : { *(.rel.got) } >FLASH AT>FLASH :FLASH  .rela.got       : { *(.rela.got) } >FLASH AT>FLASH :FLASH  .rel.bss        : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) } >FLASH AT>FLASH :FLASH  .rela.bss       : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) } >FLASH AT>FLASH :FLASH  .rel.plt        : { *(.rel.plt) } >FLASH AT>FLASH :FLASH  .rela.plt       : { *(.rela.plt) } >FLASH AT>FLASH :FLASH  .init           :  {    KEEP (*(.init))  } >FLASH AT>FLASH :FLASH =0xd703d703  .plt            : { *(.plt) } >FLASH AT>FLASH :FLASH  .text           :  {    *(.text .stub .text.* .gnu.linkonce.t.*)    KEEP (*(.text.*personality*))    /* .gnu.warning sections are handled specially by elf32.em.  */    *(.gnu.warning)  } >FLASH AT>FLASH :FLASH =0xd703d703  .fini           :  {    KEEP (*(.fini))  } >FLASH AT>FLASH :FLASH =0xd703d703  PROVIDE (__etext = .);  PROVIDE (_etext = .);  PROVIDE (etext = .);  .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) } >FLASH AT>FLASH :FLASH  .rodata1        : { *(.rodata1) } >FLASH AT>FLASH :FLASH  .eh_frame_hdr : { *(.eh_frame_hdr) } >FLASH AT>FLASH :FLASH  .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) } >FLASH AT>FLASH :FLASH  .gcc_except_table   : ONLY_IF_RO { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) } >FLASH AT>FLASH :FLASH  .lalign	: { . = ALIGN(8); PROVIDE(_data_lma = .); } >FLASH AT>FLASH :FLASH  . = ORIGIN(INTRAM);  .dalign	: { . = ALIGN(8); PROVIDE(_data = .); } >INTRAM AT>INTRAM :INTRAM  /* Exception handling  */  .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) } >INTRAM AT>FLASH :FLASH  .gcc_except_table   : ONLY_IF_RW { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) } >INTRAM AT>FLASH :FLASH  /* Thread Local Storage sections  */  .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) } >INTRAM AT>FLASH :FLASH  .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) } >INTRAM AT>FLASH :FLASH  /* Ensure the __preinit_array_start label is properly aligned.  We     could instead move the label definition inside the section, but     the linker would then create the section even if it turns out to     be empty, which isn't pretty.  */  PROVIDE (__preinit_array_start = ALIGN(32 / 8));  .preinit_array     : { KEEP (*(.preinit_array)) } >INTRAM AT>FLASH :FLASH  PROVIDE (__preinit_array_end = .);  PROVIDE (__init_array_start = .);  .init_array     : { KEEP (*(.init_array)) } >INTRAM AT>FLASH :FLASH  PROVIDE (__init_array_end = .);  PROVIDE (__fini_array_start = .);  .fini_array     : { KEEP (*(.fini_array)) } >INTRAM AT>FLASH :FLASH  PROVIDE (__fini_array_end = .);  .ctors          :  {    /* gcc uses crtbegin.o to find the start of       the constructors, so we make sure it is       first.  Because this is a wildcard, it       doesn't matter if the user does not       actually link against crtbegin.o; the       linker won't look for a file to match a       wildcard.  The wildcard also means that it       doesn't matter which directory crtbegin.o       is in.  */    KEEP (*crtbegin*.o(.ctors))    /* We don't want to include the .ctor section from       from the crtend.o file until after the sorted ctors.       The .ctor section from the crtend file contains the       end of ctors marker and it must be last */    KEEP (*(EXCLUDE_FILE (*crtend*.o ) .ctors))    KEEP (*(SORT(.ctors.*)))    KEEP (*(.ctors))  } >INTRAM AT>FLASH :FLASH  .dtors          :  {    KEEP (*crtbegin*.o(.dtors))    KEEP (*(EXCLUDE_FILE (*crtend*.o ) .dtors))    KEEP (*(SORT(.dtors.*)))    KEEP (*(.dtors))  } >INTRAM AT>FLASH :FLASH  .jcr            : { KEEP (*(.jcr)) } >INTRAM AT>FLASH :FLASH  .data.rel.ro : { *(.data.rel.ro.local) *(.data.rel.ro*) } >INTRAM AT>FLASH :FLASH  .dynamic        : { *(.dynamic) } >INTRAM AT>FLASH :FLASH  .got            : { *(.got.plt) *(.got) } >INTRAM AT>FLASH :FLASH  .data           :  {    *(.data .data.* .gnu.linkonce.d.*)    KEEP (*(.gnu.linkonce.d.*personality*))    SORT(CONSTRUCTORS)  } >INTRAM AT>FLASH :FLASH  .data1          : { *(.data1) } >INTRAM AT>FLASH :FLASH  .balign	: { . = ALIGN(8); _edata = .; } >INTRAM AT>FLASH :FLASH  _edata = .;  PROVIDE (edata = .);  __bss_start = .;  .bss            :  {    *(.dynbss)    *(.bss .bss.* .gnu.linkonce.b.*)    *(COMMON)    /* Align here to ensure that the .bss section occupies space up to       _end.  Align after .bss to ensure correct alignment even if the       .bss section disappears because there are no input sections.  */    . = ALIGN(8);  } >INTRAM AT>INTRAM :INTRAM  . = ALIGN(8);  _end = .;  PROVIDE (end = .);  __heap_start__ = ALIGN(8);  .heap           :  {    *(.heap)    . = (__heap_size__ == __max_heap_size__) ?        ORIGIN(INTRAM) + LENGTH(INTRAM) - __stack_size__ - ABSOLUTE(.) :        __heap_size__;  } >INTRAM AT>INTRAM :INTRAM  __heap_end__ = .;  /* Stabs debugging sections.  */  .stab          0 : { *(.stab) }  .stabstr       0 : { *(.stabstr) }  .stab.excl     0 : { *(.stab.excl) }  .stab.exclstr  0 : { *(.stab.exclstr) }  .stab.index    0 : { *(.stab.index) }  .stab.indexstr 0 : { *(.stab.indexstr) }  .comment       0 : { *(.comment) }  /* DWARF debug sections.     Symbols in the DWARF debugging sections are relative to the beginning     of the section so we begin them at 0.  */  /* DWARF 1 */  .debug          0 : { *(.debug) }  .line           0 : { *(.line) }  /* GNU DWARF 1 extensions */  .debug_srcinfo  0 : { *(.debug_srcinfo) }  .debug_sfnames  0 : { *(.debug_sfnames) }  /* DWARF 1.1 and DWARF 2 */  .debug_aranges  0 : { *(.debug_aranges) }  .debug_pubnames 0 : { *(.debug_pubnames) }  /* DWARF 2 */  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }  .debug_abbrev   0 : { *(.debug_abbrev) }  .debug_line     0 : { *(.debug_line) }  .debug_frame    0 : { *(.debug_frame) }  .debug_str      0 : { *(.debug_str) }  .debug_loc      0 : { *(.debug_loc) }  .debug_macinfo  0 : { *(.debug_macinfo) }  /* SGI/MIPS DWARF 2 extensions */  .debug_weaknames 0 : { *(.debug_weaknames) }  .debug_funcnames 0 : { *(.debug_funcnames) }  .debug_typenames 0 : { *(.debug_typenames) }  .debug_varnames  0 : { *(.debug_varnames) }  .stack         ORIGIN(INTRAM) + LENGTH(INTRAM) - __stack_size__ :  {    _stack = .;    *(.stack)    . = __stack_size__;    _estack = .;  } >INTRAM AT>INTRAM :INTRAM  .userpage       : { *(.userpage .userpage.*) } >USERPAGE AT>USERPAGE :USERPAGE  .factorypage    : { *(.factorypage .factorypage.*) } >FACTORYPAGE AT>FACTORYPAGE :FACTORYPAGE  /DISCARD/ : { *(.note.GNU-stack) }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品乱码久久久久久按摩| 麻豆精品精品国产自在97香蕉| 成人国产在线观看| 中文字幕av一区二区三区免费看 | 国产不卡高清在线观看视频| 日韩欧美一级二级| 国产一区二区中文字幕| 国产人久久人人人人爽| av在线免费不卡| 亚洲成人资源网| 91精品国产综合久久久久久漫画 | 欧美精品国产精品| 蜜臀av一区二区在线观看| 久久久午夜精品| 91性感美女视频| 午夜电影网亚洲视频| 精品少妇一区二区三区在线视频| 国产馆精品极品| 亚洲精品视频在线观看免费| 欧美另类变人与禽xxxxx| 九色综合狠狠综合久久| 中文字幕永久在线不卡| 91精品国产综合久久福利| 激情图区综合网| 综合激情成人伊人| 日韩美女视频在线| 成人黄色777网| 婷婷综合在线观看| 久久精品日韩一区二区三区| 色狠狠综合天天综合综合| 日韩一区精品视频| 国产精品久久99| 久久久久亚洲蜜桃| 欧美亚洲国产bt| 韩国三级中文字幕hd久久精品| 国产精品色噜噜| 日韩一区二区精品在线观看| 99久久777色| 久久精品国产99国产| 亚洲欧美aⅴ...| 久久香蕉国产线看观看99| 欧美午夜精品一区二区三区 | 午夜电影久久久| 日本一区二区三区四区| 欧美美女直播网站| 成人av电影在线| 久久99国产精品久久99| 伊人婷婷欧美激情| 久久亚洲春色中文字幕久久久| 欧美特级限制片免费在线观看| 国产乱对白刺激视频不卡| 日韩av电影天堂| 亚洲精品日韩专区silk| 国产精品美女久久久久久2018| 日韩一区二区视频在线观看| 在线亚洲精品福利网址导航| 成人av在线影院| 狠狠色2019综合网| 日韩**一区毛片| 亚洲午夜激情网页| 亚洲欧美另类在线| 国产精品乱码久久久久久 | 国产精品色一区二区三区| 日韩三级在线观看| 91精品黄色片免费大全| 欧美日韩专区在线| 欧美自拍丝袜亚洲| 色婷婷综合视频在线观看| 99精品视频一区| 成人性视频免费网站| 国产传媒久久文化传媒| 国产在线精品一区二区不卡了 | 国产一区二区不卡| 久久99精品国产.久久久久久| 午夜av区久久| 亚洲1区2区3区4区| 午夜欧美2019年伦理| 亚洲成人久久影院| 亚洲18女电影在线观看| 五月婷婷久久综合| 日韩精品国产欧美| 久久国产精品一区二区| 久久精品国产久精国产爱| 国产一区久久久| 国产精品一区二区久久精品爱涩 | 美女在线观看视频一区二区| 日本欧美一区二区| 老司机精品视频导航| 精品在线亚洲视频| 国产盗摄精品一区二区三区在线| 国产精品久久久久一区| 一区二区三区不卡视频在线观看| 一区二区三区在线观看网站| 午夜a成v人精品| 另类欧美日韩国产在线| 国产不卡视频在线播放| 色综合亚洲欧洲| 欧美日韩电影一区| 欧美电影精品一区二区| 亚洲精品一区二区三区四区高清 | www.欧美精品一二区| 91视频精品在这里| 欧美丰满一区二区免费视频| 精品国产精品网麻豆系列| 国产日本欧洲亚洲| 亚洲乱码一区二区三区在线观看| 亚洲一区二区精品久久av| 美女精品自拍一二三四| www.久久精品| 欧美精品亚洲二区| 日本一区二区综合亚洲| 午夜视频一区在线观看| 国产91在线看| 欧美日韩精品高清| 欧美韩国日本一区| 亚洲福利视频一区二区| 国产麻豆视频一区| 在线中文字幕一区二区| 久久亚洲捆绑美女| 一区二区成人在线观看| 国产很黄免费观看久久| 欧美日韩www| 国产精品毛片大码女人| 天天免费综合色| 成人听书哪个软件好| 欧美三电影在线| 国产亚洲1区2区3区| 亚洲国产精品嫩草影院| 成人爽a毛片一区二区免费| 91精品国产麻豆国产自产在线| 最新热久久免费视频| 麻豆一区二区在线| 欧美日韩亚洲综合| **性色生活片久久毛片| 国产曰批免费观看久久久| 欧美日韩一区小说| 亚洲婷婷国产精品电影人久久| 蜜臀久久久久久久| 欧美在线观看视频在线| 国产精品不卡一区| 国产夫妻精品视频| 欧美精品一区二区蜜臀亚洲| 亚洲.国产.中文慕字在线| 91女人视频在线观看| 久久九九国产精品| 九九久久精品视频| 91精品国产欧美日韩| 亚洲成人自拍偷拍| 欧美午夜精品一区二区三区| 亚洲欧美国产毛片在线| 成人激情免费网站| 国产欧美一二三区| 国产精品2024| 久久这里只有精品视频网| 九一九一国产精品| 欧美电影免费观看高清完整版在线 | www久久精品| 黄色精品一二区| 日韩三级在线免费观看| 免费的成人av| 日韩精品中文字幕一区二区三区| 亚洲福中文字幕伊人影院| 在线日韩一区二区| 亚洲一本大道在线| 欧美日韩欧美一区二区| 亚洲成人av一区二区| 欧美丝袜丝nylons| 日韩在线一区二区| 日韩一区二区精品葵司在线| 麻豆成人免费电影| 欧美电视剧在线观看完整版| 美女视频黄 久久| 久久久久久**毛片大全| 国产成人亚洲综合a∨猫咪| 日本一区二区在线不卡| 972aa.com艺术欧美| 一个色综合网站| 91精品国产综合久久久久久久久久| 天天综合色天天| 精品国产麻豆免费人成网站| 狠狠色狠狠色综合| 国产亚洲欧美在线| 99国产精品99久久久久久| 亚洲一区二区高清| 欧美一区二区三区小说| 韩日欧美一区二区三区| 国产日本欧洲亚洲| 在线观看日韩电影| 轻轻草成人在线| 久久影院视频免费| 91毛片在线观看| 男人的天堂久久精品| 欧美—级在线免费片| 色婷婷av一区二区三区大白胸| 婷婷夜色潮精品综合在线| 久久综合久色欧美综合狠狠| 99精品视频在线免费观看| 亚洲一区二区精品久久av| 欧美成人福利视频| 91在线视频网址|