这个是CMD文件中的一段
.const: load = FLASHB PAGE 0, run = RAML0L1 PAGE 1
{
/* Get Run Address */
__const_run = .;
/* Mark Load Address*/
*(.c_mark)
/* Allocate .const */
*(.const)
/* Compute Length */
__const_length = .-__const_run;
}
.const: load = FLASHB PAGE 0, run = RAML0L1 PAGE 1
这个我能看懂
括号中的是什么意思哦?