keil5中的__attribute__
时间: 2023-11-05 16:53:22 浏览: 223
__attribute__
4星 · 用户满意度95%
在Keil5中,__attribute__用于指定编译器属性。其中,section属性用于将变量或函数放置在指定的输入段中。例如,使用__attribute__((section("list")))将一个int型的变量a放置在名为list的输入段中。另外,__attribute__((used,__section__(".fn_cmd.0.end")))可以在.map文件中看到一个名为.fn_cmd.0.end的输入段被创建。
阅读全文