arm 變量或數(shù)組放置在指定地址
語法
__attribute__((at(address)))
其中:
本文引用地址:http://www.ex-cimer.com/article/201611/319040.htm- address
是所需的變量地址。
限制
鏈接器并非始終能夠放置 at 變量屬性生成的節(jié)。
錯誤
如果無法將節(jié)放置在指定地址,鏈接器將顯示一條錯誤消息。
示例
const int x1 __attribute__((at(0x10000))) = 10; int x2 __attribute__((at(0x12000))) = 10; int x3 __attribute__((at(0x14000))) = 0; int x4 __attribute__((at(0x16000)));
另請參閱
uint32 |
或者加入:
#include
評論