📄 c203.cmd
字号:
/*
Writing to the C2xx Asynchronous Serial Port in C V1.00
by Jeff Axelrod 3/26/97
*/
/* Command file for linking TMS320C203 programs on the WYLE board */
MEMORY
{
PAGE 0: /* PM - Program memory */
VECS: org = 0000h , len=40h
/* This can be extended up to length FFC0 as long as it doesn't
overlap EX1_DM. On the C203 WYLE development board, program
and data space are mapped to the same physical memory */
EX1_PM :ORIGIN=40H , LENGTH=03FC0H /* External program RAM */
PAGE 1: /* DM - Data memory */
REGS :ORIGIN=0H , LENGTH=60H /* MEM-MAPPED REGS */
BLK_B2 :ORIGIN=60H , LENGTH=20H /* BLOCK B2 */
BLK_B0 :ORIGIN=200H , LENGTH=100H /* BLOCK B0, */
BLK_B1 :ORIGIN=300H , LENGTH=100H /* BLOCK B1 */
EX1_DM :ORIGIN=4000H, LENGTH=4000H /* External data RAM */
}
SECTIONS
/* Linker directive to specify section placement in the memory map */
{
.vectors :{} > VECS PAGE 0 /* Vectors at 0x0000 */
.text :{} > EX1_PM PAGE 0
/* .cinit :{} > EX1_PM PAGE 0 */
.bss2 ALIGN(16) : { /* This section is to ensure that the C array is on
an N-word boundary */
main.obj(.bss)
} > EX1_DM PAGE 1
.const :{} > EX1_DM PAGE 1
.bss :{} > EX1_DM PAGE 1
.data :{} > BLK_B0 PAGE 1
blockb0 :{} > BLK_B0 PAGE 1
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -