I'm trying to find a memory map of the LogicPD EVM board with the TMS320C6748 SOM, so I can write code to use that memory. I can't find this information anywhere in their documentation (It's probably there, somewhere, but I can't find it). It seems to be referenced in their linker command file (linker_dsp.cmd). Like this: MEMORY { dsp_l2_ram: ORIGIN = 0x11800000 LENGTH = 0x00040000 shared_ram: ORIGIN = 0x80000000 LENGTH = 0x00020000 external_ram: ORIGIN = 0xC0000000 LENGTH = 0x08000000 arm_local_ram: ORIGIN = 0xFFFF0000 LENGTH = 0x00002000 } I'm not confident what those represent. I presume the "dsp_12_ram" represents the L2 cache memory on the DSP processor. I presume the "arm_local_ram" represents the local memory on the OMAP-L138 ARM processor. I don't know what "shared_ram" represents (perhaps it is memory shared by the DSP and the ARM processors?) -- though it appears to function properly in my programs. (The LogicPD programs all use this memory.) I presume the "external_ram" represents the memory on the SOM that is external to the DSP/ARM chip. However, when I try to poke into this memory with the debugger, or use these memory locations with programs, it doesn't work. Thus my question. What is the address of this memory? I'm don't seem able to access this memory.