This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320C6748: nor boot

Part Number: TMS320C6748

我按照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怎么处理,谢谢.