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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? link_uc3a1256.lds

?? new freertos source code V5.0.3
?? LDS
字號(hào):
/****************************************************************************** * AVR32 AT32UC3A1256 GNU LD script file. * * - Compiler:           GNU GCC for AVR32 * - Supported devices:  AVR32 AT32UC3A1256 * * - 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 = 0x00040000  INTRAM (wxa!ri) : ORIGIN = 0x00000004, LENGTH = 0x0000FFFC  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) }}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产iv一区二区三区| 91麻豆精品国产91久久久使用方法 | 奇米亚洲午夜久久精品| 中文字幕一区在线观看| 精品国产露脸精彩对白| 91麻豆精品秘密| 国产成人精品三级| 日本不卡的三区四区五区| 一区二区欧美精品| 中文字幕免费观看一区| 国产亚洲精品7777| 精品国产免费人成在线观看| 欧美女孩性生活视频| 欧美性受xxxx黑人xyx性爽| 成人做爰69片免费看网站| 久久99精品久久久久婷婷| 亚洲精品欧美二区三区中文字幕| 中文字幕第一区二区| 精品久久久久久久一区二区蜜臀| 欧美一区二区免费视频| 日本道在线观看一区二区| 国产成人免费视频精品含羞草妖精| 另类的小说在线视频另类成人小视频在线| 午夜精品久久久久久久99樱桃| 一区二区三区不卡视频在线观看| 亚洲人精品午夜| 亚洲老妇xxxxxx| 一区av在线播放| 一区在线观看视频| 中文字幕乱码久久午夜不卡 | 欧美视频日韩视频| 91国在线观看| 欧美视频你懂的| 欧美精品日韩综合在线| 欧美午夜精品久久久久久超碰 | 麻豆精品国产传媒mv男同| 免费观看30秒视频久久| 麻豆91在线播放免费| 激情伊人五月天久久综合| 男女性色大片免费观看一区二区| 麻豆精品一区二区av白丝在线| 久久精品国产亚洲高清剧情介绍| 精品影视av免费| 国产激情一区二区三区| av在线不卡免费看| 色女孩综合影院| 日韩一区二区三区视频| 亚洲精品一区二区三区香蕉| 国产欧美日韩一区二区三区在线观看| 中文字幕不卡在线观看| 亚洲精品自拍动漫在线| 午夜天堂影视香蕉久久| 黄色精品一二区| 成人高清在线视频| 欧美亚洲高清一区| 2014亚洲片线观看视频免费| 国产精品久久久久久户外露出 | 亚洲制服丝袜一区| 免费观看成人av| 成人av电影在线播放| 欧美性色综合网| 亚洲精品在线电影| 亚洲欧美一区二区三区孕妇| 亚洲电影在线播放| 国产精品一二二区| 日本高清免费不卡视频| 26uuu成人网一区二区三区| 国产精品日韩精品欧美在线| 亚洲成人自拍偷拍| 国产福利精品导航| 欧美三级日韩三级国产三级| 久久精品亚洲麻豆av一区二区| 亚洲裸体xxx| 日韩黄色片在线观看| 国产91丝袜在线播放0| 欧美日韩久久一区| 国产欧美一区二区精品性| 亚洲国产精品视频| 国产成人av自拍| 欧美日韩精品一二三区| 国产精品久久久久影院色老大| 天堂av在线一区| 97精品久久久午夜一区二区三区 | 国产盗摄视频一区二区三区| 欧美视频一区二区三区在线观看| 欧美激情一区二区在线| 日韩av不卡一区二区| 99久久精品国产一区二区三区| 精品欧美一区二区在线观看| 一区2区3区在线看| av午夜一区麻豆| 欧美精品欧美精品系列| 亚洲人成在线观看一区二区| 国产美女在线精品| 欧美精品1区2区3区| 日韩美女啊v在线免费观看| 激情综合网最新| 欧美日韩国产综合久久| 国产精品国产精品国产专区不片| 久久se精品一区精品二区| 91国产免费看| 国产精品视频在线看| 久久电影网电视剧免费观看| 在线观看不卡一区| 亚洲人成电影网站色mp4| 国产精品99久久久久| 精品美女在线观看| 亚洲综合在线免费观看| 成人av资源在线观看| 久久久久久久久蜜桃| 亚洲国产中文字幕在线视频综合| 成人精品高清在线| 久久久久久夜精品精品免费| 老司机精品视频导航| 欧美久久久久免费| 亚洲1区2区3区4区| 91精品久久久久久久91蜜桃| 免费看日韩a级影片| 欧美精品一区二区蜜臀亚洲| 国产精品一级在线| 中文字幕不卡的av| 91丨九色丨蝌蚪丨老版| 亚洲人成精品久久久久| 欧美日韩精品一二三区| 美女视频黄久久| 久久奇米777| 91麻豆自制传媒国产之光| 亚洲综合一区在线| 日韩手机在线导航| 国产福利一区二区三区视频| 亚洲日本在线天堂| 欧美高清dvd| 国内精品伊人久久久久av一坑| 国产精品欧美一区二区三区| 日本伦理一区二区| 男人的天堂久久精品| 久久精品欧美一区二区三区不卡 | 午夜精品福利视频网站| 69p69国产精品| 国产老肥熟一区二区三区| 国产精品不卡视频| 欧美日韩国产欧美日美国产精品| 美国三级日本三级久久99| 国产精品婷婷午夜在线观看| 欧美性大战久久| 精品亚洲成a人在线观看| 亚洲欧美一区二区视频| 欧美伦理影视网| 国产精品66部| 亚洲一区二区三区在线| 2023国产精华国产精品| 色94色欧美sute亚洲13| 狠狠v欧美v日韩v亚洲ⅴ| 亚洲品质自拍视频| 欧美精品一区二| 色一区在线观看| 国产一区二区在线电影| 一区二区三区日本| 国产午夜一区二区三区| 欧洲一区在线电影| 国产成人小视频| 日韩精品视频网站| 亚洲欧美国产高清| 2欧美一区二区三区在线观看视频| 91在线看国产| 国产综合成人久久大片91| 亚洲国产日韩a在线播放| www久久精品| 在线观看91精品国产麻豆| 成人av小说网| 国内成人精品2018免费看| 亚洲一区二区三区自拍| 国产片一区二区| 精品国产不卡一区二区三区| 在线免费观看成人短视频| 国产精品亚洲第一| 日韩电影在线观看电影| 尤物在线观看一区| 欧美激情中文字幕一区二区| 欧美一级日韩一级| 在线亚洲高清视频| 99久久国产免费看| 国产精品系列在线播放| 久久99精品久久久久久国产越南| 亚洲最新视频在线观看| 亚洲欧洲精品一区二区三区| 久久久99免费| 日韩欧美精品在线| 欧美日韩久久久一区| 91麻豆国产精品久久| 成人晚上爱看视频| 国产一区二区三区观看| 日本不卡高清视频| 日韩成人dvd| 日韩精品高清不卡| 亚洲国产精品一区二区尤物区| 亚洲摸摸操操av| 亚洲三级理论片| 亚洲视频图片小说| 一区视频在线播放|