Tool/software:
Hi Ti team,
I am using AWR6843ISK device and trying to test code on C674 DSP subsystem using CCS debugger 12.0 version.
i ma using _amem8() dsp library to ( which store/Load the 8 byte data into/from Memory). my requirement is to view the content of _amem8() values before loading the value into memory.
i m using below code but i am unable to get the correct data.
int main()
{
int64_t *outputSamples[16];
int64_t * output1;
output1 = (int64_t *)&outputSamples[0];
output2 = (int64_t *)&outputSamples[2];
_amem8(output1++) = 0X0000001200000020;
_amem8(output2++) = 0X0000004000000030;
}
My question:
How to print or store the value send to store to memory "_amem8(output1++)"into user defined variable?
regards,
Mani