Reply by Sven February 20, 20072007-02-20
Am Montag, den 19.02.2007, 20:44 +0000 schrieb nstnnstn2:

>
> Simple question: how to send something to SDRAM on DSK6713 board?

// simple answer
#define SDRAMOFFSET 0x80000000

void store_int_sdram(int data, int offset){
int *p = SDRAMOFFSET;
p[offset] = data;
}
Reply by nstnnstn2 February 20, 20072007-02-20
Hi,

Simple question: how to send something to SDRAM on DSK6713 board?

--nstn--