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

📄 sinewave.cmd

📁 sine functions test,program is ok and the main functions finish sine wave
💻 CMD
字号:
/****************************************************************************/
/*   sinewave.cmd - Sample linker command file for F24xx devices            */
/*                                                                          */
/*   Description: This file is a sample F24xx linker command file that can  */
/*                be used for linking programs built with the TMS320C24xx   */
/*                C Compiler. Use it as a guideline; you may want to change */
/*                the allocation scheme according to the size of your       */
/*                program and the memory layout of your target system.      */
/****************************************************************************/

MEMORY
{
    PAGE 0: VECS:  origin = 0000h, length = 0040h
            PROG:  origin = 0044h, length = 3fbch

    PAGE 1: B0B1:  origin = 0200h, length = 200h
            SARAM: origin = 8000h, length = 1000h
}
 
SECTIONS
{
    vectors : { } > VECS    PAGE = 0
   .cinit   : { } > PROG    PAGE = 0
   .text    : { } > PROG    PAGE = 0


   .const   : { } > B0B1    PAGE 1
   .data    : { } > B0B1    PAGE 1
   .bss     : { } > SARAM   PAGE 1
   .stack   : { } > SARAM   PAGE 1
   .sysmem  : { } > SARAM   PAGE 1
}

⌨️ 快捷键说明

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