coswave.cmd

来自「DSP5402产生余弦信号以C语言源代码,已仿真通过」· CMD 代码 · 共 35 行

CMD
35
字号
/*
 *  Copyright 1999 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.
 */
/*
 *  ======== volume.cmd ========
 *
 */


 
MEMORY
{
    PAGE 0: 
            PARAM:      origin=0x1000,         len=0x0efd

    PAGE 1: 
            DARAM:      origin=0x2000,          len=0x2000
}

SECTIONS
{
    
    .text:    {} > PARAM PAGE 0
    .cinit:   {} > PARAM PAGE 0
 
    .bss:     {} > DARAM PAGE 1
   
    .const:   {} > DARAM PAGE 1
   
    .data:    {}>DARAM PAGE 1
}

⌨️ 快捷键说明

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