userlinker.cmd

来自「dsp6713开发板的许多例程.对入门特别有用」· CMD 代码 · 共 23 行

CMD
23
字号
/*
 *  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
 
} 

⌨️ 快捷键说明

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