问题1:__addr32_write_uint32 ()、__addr32_read_uint32(XMEM_p) 这两函数的定义在哪里?在工程中找不到,但是工程能正常编译,感觉很奇怪;
问题2:SDRAM 芯片的验证方式和sram芯片的验证方式是一样的吗?
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.
问题1:__addr32_write_uint32 ()、__addr32_read_uint32(XMEM_p) 这两函数的定义在哪里?在工程中找不到,但是工程能正常编译,感觉很奇怪;
问题2:SDRAM 芯片的验证方式和sram芯片的验证方式是一样的吗?
1 __addr32_write_uint16等是编译器内部函数,而不是函数。
The following new intrinsics are available to read from and write to memory using 32-bit addresses. These are for special data placed higher than the usual 22-bit address range.
(unsigned short) __addr32_read_uint16(unsigned long addr);
(unsigned long) __addr32_read_uint32(unsigned long addr);
(void) __addr32_write_uint16(unsigned long addr, unsigned short val);
(void) __addr32_write_uint32(unsigned long addr, unsigned long val);
2 您可以参考一下