Hi,
how works the word load from memory.
I do the folloing code:
pulMemory = (Uint32 *)(DSPARM_SHAREDRAMADRESS);
ulTest = *pulMemory;
pulMemory = (Uint32 *)(DSPARM_SHAREDRAMADRESS+1);
ulTest = *pulMemory;
pulMemory = (Uint32 *)(DSPARM_SHAREDRAMADRESS+2);
ulTest = *pulMemory;
pulMemory = (Uint32 *)(DSPARM_SHAREDRAMADRESS+3);
ulTest = *pulMemory;
And ulTest has everytime the same value.
Why? And how can I change this?
MfG