?? dsk.cmd
字號(hào):
/********************************************************/
/* TMS320VC5402 DSK Linker Command File
/* 16K words on chip DARAM is shared by Prog
/* and Data sections
/********************************************************/
/* remove the following commented out entries if doing a
command line link */
/*-stack 200h /* software stack size = 256 words */
/*C5402vec.obj
init5402.obj
mcbsp.obj
initAD50.obj
sine.obj*/
-o dsk.out
-m dsk.map
-e main
MEMORY
{
PAGE 0: /* Pgm space */
VECS : origin = 0080h, length = 0080h /* vector table space */
PROG : origin = 0100h, length = 1EFFh /* Pgm mem space */
PAGE 1: /* Data space */
DAT0 : origin = 0060h, length = 0020h /* Scratch Pad mem space */
DAT1 : origin = 1000h, length = 0600h
DAT2 : origin = 2000h, length = 1C00h /* 7K words for Data */
DAT3 : origin = 0080h, length = 0020h
DAT4 : origin = 0100h, length = 0020h
STK : origin = 1C00h, length = 0400h /* 1K words for Stack */
}
SECTIONS
{
.vectors : {} > VECS PAGE 0 /* Interupt Vector table */
.text : {} > PROG PAGE 0 /* Program code goes here */
.table ALIGN(256) : {} > DAT2 PAGE 1 /* aligned at 0xFF word boundary */
.data : {} > DAT1 PAGE 1 /* */
.bss : {} > DAT2 PAGE 1 /* uninitialized variables */
fir_coff ALIGN(32) : {} > DAT3 PAGE 1
data_buff ALIGN(32) : {} > DAT4 PAGE 1
.stack : {} > STK PAGE 1 /* software stack section */
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -