arm 变量或数组放置在指定地址
时间:11-20
来源:互联网
点击:
语法
__attribute__((at(address)))
其中:
- address
是所需的变量地址。
限制
链接器并非始终能够放置 at 变量属性生成的节。
错误
如果无法将节放置在指定地址,链接器将显示一条错误消息。
示例
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
arm变量数组指定地 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)