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.
Hi,I'm trying to store the value of integer b into the address pointed to by c. Could you please check the Macro definition of STORE_REG and tell me if its correct?Thanks a lot...
#define STORE_REG(src, dest) asm("str %[source], [%[result]]" : : [result] "r"(dest), [source] "r"(src))