player.lds
来自「基于EP7312的MP3播放器源代码,包括MCU和PC端代码.」· LDS 代码 · 共 61 行
LDS
61 行
/****************************************************************************//* *//* PLAYER.LDS - LD script to link the Internet Audio Player. *//* *//* Copyright (c) 2001 Cirrus Logic, Inc. *//* *//****************************************************************************//* * Define where to put the various object files in the player. */SECTIONS{ /* * Vectors.o must reside first. */ .text ROBASE : { __robase__ = .; vectors.o(.text) } /* * Place all other read-only objects following the vectors. */ .text : { *(EXCLUDE_FILE(mmu.o) .text); *(.rodata); } /* * Place the page table at the end of the ROM. */ .text : { mmu.o(.text); __rolimit__ = .; } /* * Put all of the read-write data sections at the beginning of internal * SRAM, with their initializers residing at the end of the ROM section. */ .data RWBASE : AT(ADDR(.text) + SIZEOF(.text)) { __rwbase__ = .; *(.data); } /* * Place all the zero-init sections after the read-write data sections. */ .bss . : { __zibase__ = .; *(.bss); __rwlimit__ = .; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?