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

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

?? link_uc3a0512.lds

?? FreeRTOS is a portable, open source, mini Real Time Kernel - a free to download and royalty free RTO
?? LDS
字號:
/****************************************************************************** * AVR32 AT32UC3A0512 GNU LD script file. * * - Compiler:           GNU GCC for AVR32 * - Supported devices:  AVR32 AT32UC3A0512 * * - 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 = 0x00080000  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) }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合天天综合| 欧美国产日本视频| 精品一区二区三区在线播放| 国产精品区一区二区三区| 欧美在线影院一区二区| 国产一区二区在线视频| 亚洲国产sm捆绑调教视频| 久久久精品免费观看| 91精品国产免费| 99久久99久久精品免费看蜜桃| 日韩电影在线免费观看| 1区2区3区欧美| 国产欧美一区二区三区网站 | 国产网红主播福利一区二区| 99re亚洲国产精品| 成人欧美一区二区三区| 欧美精品一区二区三区蜜臀| 欧美精品 国产精品| 久久97超碰国产精品超碰| 精品国产伦一区二区三区观看体验| 欧美日韩久久久久久| 91美女福利视频| 国产成a人亚洲精品| 亚洲高清不卡在线| 亚洲欧美日韩一区二区三区在线观看 | 五月天国产精品| 欧美日韩一二区| 91蜜桃网址入口| 91在线观看免费视频| 麻豆精品蜜桃视频网站| 国产精品久久久久久久久搜平片 | 一区二区三区自拍| 婷婷综合久久一区二区三区| 亚洲无线码一区二区三区| 欧美偷拍一区二区| www.欧美日韩| 欧美日韩视频在线第一区 | 狠狠色狠狠色综合日日91app| 国产精品沙发午睡系列990531| 国产欧美日韩卡一| 色老综合老女人久久久| 欧美中文字幕亚洲一区二区va在线| 91在线视频播放| 色综合久久88色综合天天| 91成人免费在线视频| 色综合久久精品| 欧美日韩综合一区| 日韩一区二区三区免费看| 日韩天堂在线观看| 久久久久久久久久久99999| 欧美国产亚洲另类动漫| 日韩理论电影院| 中文字幕av一区二区三区免费看 | 一区二区三区在线观看动漫| 亚洲一区视频在线| 精品久久久久香蕉网| 国产亚洲女人久久久久毛片| 在线亚洲精品福利网址导航| 日本高清无吗v一区| 日本道免费精品一区二区三区| 欧美日韩一区二区三区免费看| 在线观看日韩精品| 精品国产乱码久久久久久老虎| 国产精品系列在线| 日韩精品乱码av一区二区| 亚洲18色成人| 国产a精品视频| 9i在线看片成人免费| 欧美高清视频不卡网| 欧美色男人天堂| 久久综合久久综合亚洲| 久久久99久久| 亚洲一区二区三区四区五区黄| 亚洲综合在线第一页| 精品一区二区成人精品| 在线免费观看成人短视频| 久久久久久久久久久黄色| 国产精品私人自拍| 一本一道综合狠狠老| 国产电影一区在线| 91视频.com| 久久久久久久久久久黄色| 亚洲乱码日产精品bd| 日韩欧美一区二区三区在线| 国产精品人成在线观看免费| 日韩国产欧美三级| 一本大道久久精品懂色aⅴ| 久久亚洲二区三区| 中文字幕一区av| 韩国精品免费视频| 欧美老女人第四色| 偷拍一区二区三区四区| 成人免费不卡视频| 久久久国产精品午夜一区ai换脸| 欧美日韩国产另类不卡| 一区二区三区欧美日| 国产精品一区二区三区四区| 91精品国产手机| 五月婷婷激情综合| 7777精品伊人久久久大香线蕉超级流畅| 欧美三级中文字幕在线观看| 亚洲综合在线观看视频| 91香蕉视频污| 91麻豆精品91久久久久久清纯| 日本一区二区视频在线| 蜜桃一区二区三区在线| 日韩午夜在线影院| 麻豆精品视频在线| 亚洲同性同志一二三专区| 丁香六月久久综合狠狠色| 日韩一区二区三免费高清| 天天综合网天天综合色| 在线不卡一区二区| 欧美成人一级视频| 国产一区二区91| 欧美一区二区三区视频在线| 婷婷国产在线综合| 91精品国产综合久久久蜜臀图片| 精品国产sm最大网站免费看| 亚洲国产日韩一区二区| 7777女厕盗摄久久久| 蜜臂av日日欢夜夜爽一区| 欧美在线观看视频一区二区三区| 日韩精品最新网址| 亚洲欧美国产高清| 欧美日韩中字一区| 久久99这里只有精品| 国产精品久久久久久久久免费樱桃| 色av成人天堂桃色av| 天堂一区二区在线| 在线免费不卡视频| 久久国产精品99精品国产 | 亚洲一区电影777| 7777精品伊人久久久大香线蕉的 | 国产真实乱偷精品视频免| 欧美日韩精品专区| 黑人巨大精品欧美黑白配亚洲| 久久精品人人做人人爽人人| av一二三不卡影片| 欧美日韩国产高清一区| 久久精品av麻豆的观看方式| 欧美激情艳妇裸体舞| 色婷婷久久综合| 麻豆一区二区三| 亚洲同性gay激情无套| 欧美日韩免费一区二区三区视频| 香蕉乱码成人久久天堂爱免费| 久久精品人人做| 欧美日韩在线播放三区四区| 国产在线视视频有精品| 久久精品一区二区三区av| 色噜噜偷拍精品综合在线| 欧美激情综合五月色丁香| 在线视频国内一区二区| 日本午夜一本久久久综合| 成人网在线播放| 亚洲最新在线观看| 中文字幕av一区二区三区免费看| 欧美日韩精品系列| 丰满亚洲少妇av| 免费国产亚洲视频| 国产精品18久久久久久久网站| 视频一区二区三区中文字幕| 91免费版在线| 99精品国产99久久久久久白柏| 日韩电影免费一区| 国产**成人网毛片九色| 综合久久综合久久| 日韩三级电影网址| 久草精品在线观看| 亚洲综合一二三区| 精品久久久久香蕉网| 欧美sm极限捆绑bd| 日韩成人免费电影| 国产乱子伦一区二区三区国色天香| 久久九九久久九九| 国产日韩一级二级三级| 一区二区三区在线观看网站| 国产丝袜欧美中文另类| 国产一区二区三区最好精华液| 成人黄色大片在线观看| 欧美日本一区二区三区四区| 欧美一区国产二区| 中文字幕一区二区不卡| 日韩精品色哟哟| 91麻豆成人久久精品二区三区| 欧美日本韩国一区二区三区视频 | 日韩国产高清在线| 亚洲综合网站在线观看| 人人爽香蕉精品| 欧美激情一区二区三区不卡| 午夜视频一区二区三区| 国产主播一区二区| 国产+成+人+亚洲欧洲自线| 久久综合99re88久久爱| 亚洲精选免费视频| 免费欧美日韩国产三级电影| 粉嫩在线一区二区三区视频| 欧美日韩五月天| 日韩理论在线观看|