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.

在TMS570LS3137的开发软件CCS中访问地址空间



你好

以前阅读uboot时,看到过由于大小端的不同io.h中的in/out功能是需要做数据的switch的!

那么,在CCS中main函数中想直接读写地址空间或者寄存器时是直接(  *addr = val ), 向地址写数据就可以了,还是 需要把数据做 switch,例如做32位的写操作,需要把(B3,B2,B1,B0)转换成(B0,B1,B2,B3)?