📄 7219.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
-stack 100
MEMORY
{
PAGE 0 : VECS : origin = 0000h , length = 040h /* VECTORS */
PVECS : origin = 0044h , length = 100h /* PROGRAM */
PROG : origin = 0150h , length =8600h
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 + -