int x; asm volatile ("mrs %0, cpsr" :"=r"(x) ); printf("cpsr:%x\n", x);
cpsr:60000013, spsr:600000d3
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?