• have asm get inlined for Cortex-M0?
    I have the following inline assembly for GCC that I want to port to Keil's compiler: #define EnterCritical() \ register uint32_t primask__; \ __ASM volatile ("mrs %0, primask" : "=r" (primask__...
  • have asm get inlined for Cortex-M0?
    I have the following inline assembly for GCC that I want to port to Keil's compiler: #define EnterCritical() \ register uint32_t primask__; \ __ASM volatile ("mrs %0, primask" : "=r" (primask__...
  • how disable optimalisation in inline asm?
    Hello, I write code in MDR-ARM for any STM32F CPU and need send data over GPIO output on high speed and precise timing. For the sent I want to use inline asm code. For timig I use nop and /or b .+2...
  • how disable optimalisation in inline asm?
    Hello, I write code in MDR-ARM for any STM32F CPU and need send data over GPIO output on high speed and precise timing. For the sent I want to use inline asm code. For timig I use nop and /or b .+2...
  • Cortex-A9 inline asm
    Note: This was originally posted on 23rd November 2012 at http://forums.arm.com Hi, I am getting below error message for arm inlin in gcc compiler , could you please tell me what is the reason. I am using...