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

📄 serial.cmd

📁 DSP2407的串口程序
💻 CMD
字号:
/**********************************************************************/
/* File Name:	  leds.cmd                                            */
/* Target System: C24xx Evaluation Board                               */
/*                                                                    */
/* Description:   A basic linker command file for the 'F2407 device.   */
/*                This file is used by the linker to determine where  */
/*                certain sections of code should reside in memory.   */
/*                                                                    */
/* Revision:      1.00                                                */
/**********************************************************************/

/*--------------------------------------------------------------------*/
/*  LINKER COMMAND FILE - MEMORY SPECIFICATION for the F2407          */
/*--------------------------------------------------------------------*/
-l rts2xx.lib

MEMORY
{
    PAGE 0 :   VECS   : origin =    0h , length =   040h   /* VECTORS */
	           PROG   : origin =   40h , length = 0FFc0h   /* PROGRAM */

    PAGE 1 :   MMRS   : origin =    0h , length =   060h   /* MMRS    */
               B2     : origin = 0060h , length =   020h   /* DARAM   */
               B01     : origin = 0200h , length =  0200h   /* DARAM   */
               DATA   : origin = 8000h , length =  8000h   /* XDM     */
}

/*--------------------------------------------------------------------*/
/* SECTIONS ALLOCATION                                                */
/*--------------------------------------------------------------------*/
SECTIONS
{
    .vectors : { } > VECS      PAGE 0   /* Interrupt vector table     */
    .text    : { } > PROG      PAGE 0   /* Code                       */
    .data    : { } > PROG      PAGE 0   /* Initialization data tables */
    .mmrs    : { } > MMRS      PAGE 1   /* Memory mapped registers    */
    .bss     : { } > DATA      PAGE 1   /* Block B2                   */
}

⌨️ 快捷键说明

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