This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

how to add the two numbers in this controller

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

Parents
  • "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!

Reply
  • "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!

Children
No data