pmsm31.cmd

来自「TI公司24X系列DSP控制永磁同步电机PMSM」· CMD 代码 · 共 43 行

CMD
43
字号
-stack 090h  

MEMORY
{
      PAGE 0:    /* Program Memory */
        VECS:       org=0000h,        len=00040h       /* external SRAM  */
        PROG:       org=0040h         len=0FDC0h       /* external SRAM  */

      PAGE 1:    /* Data Memory    */
        B0B1:       org=0200h,        len=01F0h        /* internal DARAM */
 		B2:         org=0060h,        len=0020h        /* internal DARAM */       
	    DATA: 		org=4000h, 		  len=4000h	  	   /* EMIF    */
}

SECTIONS  
{

        vectors >       VECS          PAGE 0

        .text   >       PROG          PAGE 0
        .cinit  >       PROG          PAGE 0
        .switch >       PROG          PAGE 0

        .const  >       B0B1          PAGE 1
        .bss    >       B0B1          PAGE 1
        .sysmem >       B0B1          PAGE 1

        .data   >       B0B1          PAGE 1
        .stack  >       B0B1          PAGE 1
                
	/* Additional sections for real time monitor */

		mon_pge0  : { } > B2    PAGE 1              /* Used by RT monitor   */
    	mon_rgst  : { } > B2    PAGE 1              /* Used by RT monitor   */
    	blk_b0    : { } > B0B1  PAGE 1              /* Stack space          */
    	mon_main  : { } > PROG	PAGE 0              /* Main Monitor program */


}



⌨️ 快捷键说明

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