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

📄 userlinker.cmd

📁 基于TI 公司 TMS320C6713的源代码
💻 CMD
字号:
/*
 *  userlinker.cmd
 *
 *  This file is a user specified linker command file that adds a logical
 *  memory section called .boot_load whose contents should be put in the
 *  physical BOOT section specified in the BIOS configuration file post.cdb.
 *
 *  postcfg.cmd is the auto-generated linker command file that reflects
 *  the BIOS configuration settings in the file post.cdb.  The main
 *  memory section definitions and libraries that need to be linked in are
 *  all specified there.  The Code Composer project for the POST uses 
 *  userlinker.cmd as its linker command file.  Post.cmd in turn includes
 *  postcfg.cmd to create a full set of linker definitions. 
 */
 
/*-l postcfg.cmd */

SECTIONS {

    /* .boot_load > BOOT_RAM */
    .boot_load:  {} load = BOOT_RAM,run = BOOT_RAM
} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -