test.cmd

来自「DSP6000开发板QuickStartpdf文档」· CMD 代码 · 共 34 行

CMD
34
字号
/*
 *  Copyright 1998 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 */
/*
 *  ======== hello.cmd ========
 *
 */

MEMORY 
{   
   VECTORS	   : origin = 0x0,  len = 0x260

   IPRAM       : origin = 0x260,         len = 0x8000   
   IDRAM       : origin = 0x80000000,  len = 0x10000
} 


SECTIONS
{
	    .vec   	 >VECTORS
        .text    > IPRAM

         .bss     > IDRAM
        .cinit   > IDRAM
        .const   > IDRAM
        .far     > IDRAM
        .stack   > IDRAM
        .cio     > IDRAM
        .sysmem  > IDRAM
}

⌨️ 快捷键说明

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