.cmd文件要点讲解:
内存分配文件的源代码如下:
MEMORY
{
boot: o = 00000000h l = 000400h
L2 : o = 00000400h l = 0003fb00h
CE01: o = 80000000h l = 00100000h
CE02: o = 80100000h l = 00f000000h
}
SECTIONS
{
.boot_load > boot
.vecs > L2
.cinit > L2
.text > L2
.stack > L2
.bss > L2
.const > L2
.data > L2
.far > L2
.switch > L2
.sysmem > L2
.tables > L2
.cio > L2
.external > CE02
} |