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

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

?? link_uc3a0256.lds

?? freertosV4.40 是一種small的嵌入式系統。利于嵌入式開好者入門學習嵌入式操作系統。通過對于源碼的學習可以很好的掌握freertos的運行機制。
?? LDS
字號:
/****************************************************************************** * AVR32 AT32UC3A0256 GNU LD script file. * * - Compiler:           GNU GCC for AVR32 * - Supported devices:  AVR32 AT32UC3A0256 * * - 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) }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲男人的天堂在线aⅴ视频| 国产精品短视频| 欧美哺乳videos| 久久一日本道色综合| 国产精品毛片a∨一区二区三区| 亚洲欧美另类小说视频| 日本亚洲三级在线| 成人性生交大片免费看在线播放| 国产精品伊人色| 精品视频免费在线| 在线不卡a资源高清| 国产清纯美女被跳蛋高潮一区二区久久w| 中文字幕av在线一区二区三区| 亚洲国产精品麻豆| 国产美女精品人人做人人爽| 色婷婷亚洲精品| 日韩午夜精品视频| 一色屋精品亚洲香蕉网站| 午夜在线成人av| 久久91精品久久久久久秒播| 在线视频国内一区二区| 久久久久综合网| 亚洲黄色在线视频| 久久成人免费网| 欧美在线观看一区| 午夜视频在线观看一区二区三区| 日本欧美一区二区三区乱码| 国产精品一区二区久久不卡| 7777精品伊人久久久大香线蕉超级流畅 | 国产成人鲁色资源国产91色综| 欧美无砖专区一中文字| 国产精品久久久久永久免费观看| 精品一区二区在线视频| 欧美亚洲国产一卡| 成人欧美一区二区三区在线播放| 久久国产福利国产秒拍| 欧美日韩一级片网站| 日韩毛片在线免费观看| 国产东北露脸精品视频| 精品国产一区久久| 蜜桃传媒麻豆第一区在线观看| 欧美亚洲国产怡红院影院| 最新国产成人在线观看| 国产乱人伦偷精品视频免下载| 日韩一区二区免费在线电影| 亚洲国产一区二区视频| 色婷婷久久综合| 亚洲欧美怡红院| av成人免费在线| ●精品国产综合乱码久久久久| 国产成人在线色| 久久青草国产手机看片福利盒子 | 欧美日韩欧美一区二区| 一区二区三区不卡在线观看| 99久久精品免费看国产免费软件| 国产精品久久久久久久岛一牛影视| 国产成人av自拍| 国产亚洲一区字幕| 丁香五精品蜜臀久久久久99网站| 久久精品视频免费观看| 国产一区二区不卡老阿姨| 精品国精品国产| 国产精品资源在线看| 国产色综合久久| 国内不卡的二区三区中文字幕| 欧美日韩中字一区| 韩国一区二区在线观看| 欧美激情中文不卡| 91女人视频在线观看| 亚洲综合成人在线| 欧美一区二区大片| 国产成人欧美日韩在线电影| 欧美激情中文字幕| 欧美主播一区二区三区美女| 日韩精品三区四区| 26uuu亚洲综合色| 岛国av在线一区| 亚洲欧洲精品成人久久奇米网| 色欧美乱欧美15图片| 92精品国产成人观看免费| 中文无字幕一区二区三区| 成人在线一区二区三区| 一区二区理论电影在线观看| 91精彩视频在线| 美女网站在线免费欧美精品| 欧美国产一区视频在线观看| 91黄视频在线观看| 国产麻豆成人精品| 一区二区欧美国产| 久久精品欧美一区二区三区不卡| 成人91在线观看| 调教+趴+乳夹+国产+精品| 久久嫩草精品久久久精品| 色综合久久99| 亚洲国产视频a| 国产亚洲欧美中文| 欧美日韩一区国产| heyzo一本久久综合| 另类综合日韩欧美亚洲| 亚洲乱码日产精品bd| 精品久久五月天| 欧美在线你懂得| 99久久久无码国产精品| 国内成人免费视频| 日韩电影在线免费| 亚洲视频一二区| 国产视频一区不卡| 日韩欧美国产系列| 91色婷婷久久久久合中文| 麻豆精品精品国产自在97香蕉| 亚洲精选视频在线| 久久一夜天堂av一区二区三区| 日韩精品中文字幕一区| 在线观看免费视频综合| www.欧美.com| 懂色av一区二区夜夜嗨| 裸体歌舞表演一区二区| 日韩中文字幕亚洲一区二区va在线 | 福利一区二区在线观看| 久久精品久久久精品美女| 亚洲成av人综合在线观看| 欧美韩国日本综合| 国产三区在线成人av| 91精品国产入口在线| 欧美性极品少妇| 色婷婷精品久久二区二区蜜臀av| 成人综合婷婷国产精品久久蜜臀 | 日本视频在线一区| 亚洲成a人片综合在线| 亚洲精品精品亚洲| 亚洲日本乱码在线观看| 国产视频视频一区| 久久精品亚洲精品国产欧美| 久久综合狠狠综合久久激情| 日韩欧美123| 日韩一区二区视频| 欧美成人精品高清在线播放| 欧美一区日本一区韩国一区| 一区二区国产视频| 亚洲精品免费在线| 一区二区高清视频在线观看| 亚洲综合免费观看高清完整版在线| 久久婷婷国产综合精品青草| 在线不卡一区二区| 日韩视频免费观看高清完整版在线观看| 欧美在线观看禁18| 欧美视频中文一区二区三区在线观看| 在线观看国产一区二区| 欧美高清hd18日本| 欧美成人在线直播| 国产视频一区在线播放| 亚洲色图制服丝袜| 性欧美疯狂xxxxbbbb| 精品一区二区久久| 波多野结衣在线一区| 97se亚洲国产综合自在线不卡| 91麻豆蜜桃一区二区三区| 欧美系列亚洲系列| 日韩欧美在线观看一区二区三区| 久久综合九色欧美综合狠狠 | 91成人国产精品| 欧美一区午夜视频在线观看 | 国产在线视视频有精品| 国产激情91久久精品导航| 99久久99久久综合| 欧美丰满少妇xxxxx高潮对白| 精品美女被调教视频大全网站| 国产精品欧美精品| 亚洲成人动漫在线免费观看| 国产在线精品一区二区 | 日韩精品乱码免费| 精品一区二区在线视频| 91亚洲午夜精品久久久久久| 欧美一区二区三区四区视频| 亚洲国产精品激情在线观看| 亚洲成人在线网站| 国产·精品毛片| 51精品久久久久久久蜜臀| 日本一区二区成人在线| 一区二区三区高清| 理论片日本一区| 一本一道久久a久久精品综合蜜臀 一本一道综合狠狠老 | 国产日本欧洲亚洲| 亚洲一区二区三区四区在线观看 | 久久aⅴ国产欧美74aaa| 不卡高清视频专区| 日韩一区二区三区视频在线观看| 亚洲国产激情av| 青青草原综合久久大伊人精品优势 | 欧美成人精品3d动漫h| 久久精品一二三| 欧美剧情片在线观看| 中文字幕电影一区| 成人性生交大片免费| 国产欧美日韩久久| 国产jizzjizz一区二区| 久久婷婷色综合| 国产成人综合自拍| 国产午夜精品福利| 国产·精品毛片|