代码改变世界

随笔档案-2023年09月

Keil定位常量、变量到指定地址

2023-09-07 15:49 by dreamboy2000, 2349 阅读, 收藏,
摘要: 一、常量 - ROM区域 const char Version[] __attribute__((at(0x8001000))) = { 'M','V','1','0','0' }; 二、变量 - RAM区域 int val __attribute__((section(".ARM.__at_0x2 阅读全文