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

📄 sinewave.cmd

📁 dsp 是54系列的
💻 CMD
字号:

/*
 *  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: EPROG:      origin = 0x1400,        len = 0x7c00
            VECT:       origin = 0xff80,        len = 0x80

    PAGE 1: USERREGS:   origin = 0x60,          len = 0x1c
           
            IDATA:      origin = 0x80,          len = 0x1380
            
}

SECTIONS
{
    .vectors: {} > VECT PAGE 0
    


	.data:{} > EPROG PAGE 0
     


    .text:    {} > EPROG PAGE 0
    
    .coeff:  {} > EPROG PAGE 0
    .const:   {}> EPROG PAGE 0
	vectors  {}> VECT PAGE 0
	INT_2  {}> VECT PAGE 0
    .bss:     {} > IDATA PAGE 1
    .sin_vas: {} > IDATA PAGE 1
     
    
    STACK:{} > IDATA PAGE1
    
}

⌨️ 快捷键说明

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