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 am also a newbie of asm. Can any one help to explain below GCC function codes, what are the meaning of the :"cc"? Thanks in advance!-----------------------------------static inline unsigned int read_cpuid(void){ unsigned int val; /* Main ID register (MIDR) */ asm("mrc p15, 0, %0, c0, c0, 0" : "=r" (val) : : "cc"); //What's this means? return val;}--------------------------------