Forum Discussion
Altera_Forum
Honored Contributor
12 years agoThe program I am using uses pointers to write to the memory - am I having a similar problem
to this thread? http://www.alteraforum.com/forum/showthread.php?t=37171 my code: unsigned char *buffer = (unsigned char *) 0x80000; while(1) { /* Write data to memory */ for( i = 0; i <10000 ; i++ ) { buffer = 0xff;buffer = 0x00; } }