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

📄 flashb_hex.cmd

📁 一个ccs开发环境下的滤波器程序
💻 CMD
字号:

/* FlashBlink_hex.cmd
 *
 *        Adopted from Blink Example for 5402 DSK
 *        Creates a Motorola Hex formatted .hex file.
 *
 */

..\debug\DSK5402_filter_bios.out             /* Input COFF file */

-m1                        /* Select Motorola-S1 */

-map DSK5402_filter_bios_hex.map    /* Name hex utility map file */

-o DSK5402_filter_bios.hex          /* Name hex output file */

-memwidth 16               /* Set EPROM system memory width */
-romwidth 16               /* Set physical ROM width */

-swwsr 0x7fff              /* Software Wait State Reg value */
-bscr  0x8806              /* Bank-Switch Control Reg */

-e 0x0080				/* Start address == RESET vector */						   
ROMS
{
    PAGE 0 : ROM : o=0x8000, l=0x10000
}

SECTIONS
{
    .text      boot
    .cinit     boot
    .cio       boot
    .switch    boot
    .const     boot
    
    .hwi_vec 	boot
    .hwi 		boot
    .bios 		boot
    .gblinit 	boot
    .trcdata 	boot
    .sysinit 	boot
    .pinit 		boot
    .rtdx_text 	boot
   
   
/*    .rtdx_data 	boot 
    .sysregs	boot
    .args		boot
    .sts		boot
    .log		boot
*/    
}

⌨️ 快捷键说明

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