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?