我按照nor boot.zip中的添加configuration word的asm code编译后,在B _c_init00这一行报了一个assembly warning:
[W9999] Placing data in a code section (.nor_config_word) is discouraged. The data may be interpreted as code. This section will not be compressed.
代码如下:
.global _c_int00
.sect ".nor_config_word"
config_word:
.word 00000F01h
B _c_int00
NOP
NOP
NOP
NOP
NOP
NOP
请问这个warning怎么处理,谢谢.