26
12
2
108
168
382
204
笔记: (1)如何禁止KEIL初始化RAM为零? 1. 在KEIL Noinit 打钩 2. 另须对需要热启动保持的变量用__at关键字指定某个区域,否则还是没用 (#include absacc.h) 或者__attribute__((zero_init)) 关键字 .bss段 int test1=1; __a...