apphex.cmd

来自「使用CCS信息DSP编程,适用于6713B的启动程序。」· CMD 代码 · 共 25 行

CMD
25
字号
".\Debug\app.out"                       /* input COFF file */
-a                                      /* create ASCII image */
-image                                  /* Create a memory image (no discontinuities) */
-zero                                   /* reset address origin to 0 for output file(s) */
-memwidth 8                             /* Width of ROM/Flash memory */
-map .\Hex\apphex.map                   /* create a hex map file */

/* 
 *  Omit the following sections from Flash.
 *  They get picked up since in BIOS *cfg.cmd file it may do a 'fill=0x1234'
 *  and this turns the section into an initialized section even though 
 *  its only done for e.g RTA support and not required for correct execution
 */
-exclude .sts
-exclude .log
-exclude .args
-exclude .LOG_system$buf
-exclude .stack
-exclude .logTrace$buf

ROMS
{
    FLASH: org = 0x90000000, len = 0x0040000, romwidth = 8, files = {.\Hex\app.hex}
}

⌨️ 快捷键说明

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