?? dsp.cmd
字號(hào):
/**********************************************************************/
/* File Name: lfleds.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
/*modify by hmj */
/**********************************************************************/
/*--------------------------------------------------------------------*/
/* LINKER COMMAND FILE - MEMORY SPECIFICATION for the F240 */
/*--------------------------------------------------------------------*/
-stack 80h
-o ucos2407.out
-m ucos2407.map
-l rts2xx.lib
MEMORY
{
PAGE 0 : VECT : origin = 0h , length = 40h /* VECTORS */
PVECS : origin = 044h , length = 0bch
PROG : origin = 100h , length = 07a00h /* PROGRAM */
CONST1 : origin = 7b00h, length = 0500h
PAGE 1 : MMRS : origin = 0h , length = 060h /* MMRS */
B2 : origin = 0060h , length = 020h /* DARAM */
B0 : origin = 0200h , length = 0100h /* DARAM */
B1 : origin = 0300h , length = 0100h /* DARAM */
ONCHIP1 : origin = 0800h , length = 0400h /* ONCHIPMEMORY */
ONCHIP2 : origin = 0c00h , length = 0400h /* ONCHIPMEMORY */
DATA : origin = 8000h , length = 7000h /* XDM */
DATA1 : origin =0f000h , length = 1000h
}
/*--------------------------------------------------------------------*/
/* SECTIONS ALLOCATION */
/*--------------------------------------------------------------------*/
SECTIONS
{ .vectors: { } > VECT PAGE 0
.pvecs: { } > PVECS PAGE 0
.text : { } > PROG PAGE 0
.cinit : { } > PROG PAGE 0
.swith : { } > PROG PAGE 0 /* Code */
.const : load = CONST1 PAGE 0,run = DATA1 PAGE 1
{
__const_run = .;
*(.c_mark)
*(.const)
__const_length = . - __const_run;
} /* Block B2 */
.bss : { } > DATA PAGE 1
.stack : { } > ONCHIP1 PAGE 1
int1va : { } > ONCHIP2 PAGE 1
globalv : { } > ONCHIP2 PAGE 1
os_tcbtbl : { } > ONCHIP2 PAGE 1
.system : { } > B0 PAGE 1
.bakport : { } > B2 PAGE 1
eventtbl : { } > DATA PAGE 1
funstack : { } > DATA PAGE 1
para : { } > DATA PAGE 1
tcbtbl : { } > DATA PAGE 1
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -