This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SYS/BIOS 自定义断如何设置?

Other Parts Discussed in Thread: SYSBIOS

裸机开发时,有时候需要将特定的数据放在固定的地址,在cmd中可以这样定义

MEMORY{

..........

MySection   o =0x00f00000 l = 0x3e

}

SECTION{

..........

.MyData > MySection

}

在程序中可以用#pragma DATA_SECTION(TestData,“.MyData")

在sysbios 如何配置??