⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bootcode.lds

📁 基于EP7312的MP3播放器源代码,包括MCU和PC端代码.
💻 LDS
字号:
/****************************************************************************//*                                                                          *//* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -