Forum Discussion
Altera_Forum
Honored Contributor
14 years agoHi,
the byte or word access has nothing to do with the sopc builder settings of the SDRAM. This is a software issue. You can access the RAM bytewise using this : volatile unsigned char *pbRAM = (unsigned char *) (0x80000000 | SDRAM_BASE); With pbRAM[6000] you can access byte 6000 in the SDRAM. Regards, HJS