apphex.cmd
来自「使用CCS信息DSP编程,适用于6713B的启动程序。」· CMD 代码 · 共 14 行
CMD
14 行
".\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 */
-boot /* create a boot table for all initialized sects */
-bootorg 0x90000400 /* address of the boot/copy-table */
-bootsection .boot_load 0x90000000 /* section containing our asm boot routine */
ROMS
{
FLASH: org = 0x90000000, len = 0x0040000, romwidth = 8, files = {.\Hex\app.hex}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?