bootcode.lds

来自「基于EP7312的MP3播放器源代码,包括MCU和PC端代码.」· LDS 代码 · 共 53 行

LDS
53
字号
/****************************************************************************//*                                                                          *//* SW_UPDT.LDS - LD script to link the software update code.                *//*                                                                          *//* 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 :    {        *(.text);        *(.rodata);        __rolimit__ = .;    }    /*     * The read-write data secitons, with their initializers residing at the     * end of the .text 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 + -
显示快捷键?