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

📄 init.lds

📁 EP9315的wince下载程序。download.exe
💻 LDS
字号:
/****************************************************************************/
/*                                                                          */
/* INIT.LDS - LD script to link the whole project.                          */
/*                                                                          */
/* Copyright (c) 2006 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -