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.
int x; asm volatile ("mrs %0, cpsr" :"=r"(x) ); printf("cpsr:%x\n", x);
hello,I write the following codes to determine the mode in which the processor(Xscale) operates:however, the result is:cpsr:20000013it doesn't seem to mean any mode, so what's going on?