Forum Discussion
Altera_Forum
Honored Contributor
14 years agoIt sounds like the function you are using is using byte addressing, but only really supports word addressing:
IE If you write 0x33221100 to address 0x00 but read back address 0x01 the data still looks like: 0x33221100 Because the lower to bits of the address do not matter as far as the system is concerned, and it's up to you to pick the correct byte out of the 32 bit word. Pete