
==1999-3-1==
P&S
oo á|′μ×ó1é· YóDT1
==255-159==
P &S
oo á|′μ×ó1é· YóDT1
μ :
ot±±ooêD×μèa· 15o
P&Sí í :
http://www.p8s.com
D :
ooêD70020D
óê±à:
430079
μ°:
( 86) ( 027£87493500 87493506
′
( 86) ( 027) 87491166, 87493497
ày
8-14
áó÷üá t£
demo.cmd
óáDüá μ÷óáó÷£o
dsplnk demo.obj
a′′¨êóúày
8-15
Dμóótò°a
demo.out
μê3t£üéòú
TMS320
éDD £
/*********************************************************************/
/**** Specify Linker Options ****/
/*********************************************************************/
e SETUP /* Define the program entry point */
o demo.out /* Name the output file */
m demo.map /* Create an output map */
/*********************************************************************/
/**** Specify the Input Files ****/
/*********************************************************************/
demo.obj
fft.obj
tables.obj
/*********************************************************************/
/**** Specify the Memory Configuration ****/
/*********************************************************************/
MEMORY
{
PAGE 0: ROM: origin = 00000h, length = 01000h
RAM_B0: origin = 0FF00h, length = 0100h
PAGE 1: IO: origin = 00000h, length = 06h
RAM_B2: origin = 00060h, length = 020h
RAM_B1: origin = 00300h, length = 0100h
RAM: origin = 00400h, length = 0FC00h
}
/*********************************************************************/
/**** Specify the Output Sections ****/
/*********************************************************************/
SECTIONS
{
.text:load = ROM, page = 0 /* Link .text sections into ROM */
int_vecs: load = 0, page = 0 /* Link interrupts at 0 */
.data: fill = 07A1Ch, load = RAM_B0, page = 0
/* Build .data section */
{
tables.obj(.data) /* .data input section */
fft.obj(.data) /* .data input section */
. = 100h; /* Create a hole to the end of block */
} /* Fill with 7A1Ch and link into B0 */
fftvars: load = RAM_B2, page = 1 /* Create new fftvars section */
{
fft.obj(.bss)
} /* Link into B2 */
.bss: load = RAM_B1, page = 1, fill = 0FFFFh
/* Remaining .bss; fill and link */
}
/*********************************************************************/
/**** End of Command File ****/
/*********************************************************************/