I try (or better: fail) to convert some GCC-assembler-code from http://stackoverflow.com/questions/3247373/how-to-measure-program-execution-time-in-arm-cortex-a8-processor to TI-syntax:
asm volatile ("MCR p15, 0, %0, c9, c12, 0\t\n" :: "r"(1+2+4+16));
asm volatile ("MCR p15, 0, %0, c9, c12, 1\t\n" :: "r"(0x8000000f));
asm volatile ("MCR p15, 0, %0, c9, c12, 3\t\n" :: "r"(0x8000000f));
How would it look like, how to hand over the values to the MCR command?
Thanks!