Technical discussions about the TI C55x DSPs (including the c5501, c5502, c5503, c5507, c5509, c5510 and OMAP5910).
It appears that I cannot access memory beyond 0xFFFF using the following C code
*(unsigned volatile int *)0x300000 = 0x0001;
where,
0x300000 is the memory location of the LED
0x0001 is the data needed to turn on one of the LEDs
My question is how I can reach memory location 0x300000?