We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
sir ,
i want to add to data from the external memory. so i need correct format for this controller
XBYTE[0x1234] = 0x55; XBYTE[0x1245] = 0x11;
how to add this data and save it to another memory
"addend is store in the particular memory address"
Is this really important to your application?
Of course, in practice, the data has to be physically stored in some specific location - but this is almost always entirely irrelevant to the program! Common exceptions would be shared memory, and memory-mapped IO - is this what you're doing? If not, why does the address matter to you?
If the address really does matter to you, I have already told you the keyword to use, and given you the relevan reference in the Manual - but you are going to have to read it for yourself!