flasher.lds

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

LDS
43
字号
/****************************************************************************//*                                                                          *//* FLASHER.LDS - LD script to link the FLASH programming code.              *//*                                                                          *//* Copyright (c) 2001 Cirrus Logic, Inc.                                    *//*                                                                          *//****************************************************************************//* * Define where to put the various object files in the player. */SECTIONS{    /*     * Put the read-only sections first.     */    .text ROBASE :    {        __robase__ = .;        *(.text .rodata);        __rolimit__ = .;    }    /*     * Put all of the read-write data sections after the read-only sections.     */    .data . :    {        __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 + -
显示快捷键?