DSPRelated.com
Forums

SDRAM on 6713DSK

Started by nstnnstn2 February 20, 2007
Hi,

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

--nstn--
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;
}