• Branch to a label in inline assembly
    Hi All, I have a label, say "XXX" in the startup assembly code. Later if I want to jump to label "XXX" in the inline assembly by using __asm{ B XXX } The ARMCC compile in Keil MDK complains " the label...
  • Branch to a label in inline assembly
    Hi All, I have a label, say "XXX" in the startup assembly code. Later if I want to jump to label "XXX" in the inline assembly by using __asm{ B XXX } The ARMCC compile in Keil MDK complains " the label...
  • Label Addressing in Arm Assembly
    Dear All, I need some help regarding label addressing. I was going through the following code. "Stack_Size EQU 0x00000400 AREA STACK, NOINIT, READWRITE, ALIGN=3 __stack_limit Stack_Mem SPACE Stack_Size...
  • Label Addressing in Arm Assembly
    Dear All, I need some help regarding label addressing. I was going through the following code. "Stack_Size EQU 0x00000400 AREA STACK, NOINIT, READWRITE, ALIGN=3 __stack_limit Stack_Mem SPACE Stack_Size...
  • Inline Assembly from an assembly file into a C++ function
    Hi, I need to : 1. Inline an assembly code that modifies Stack pointer directly (__asm directive is not allowed to modify stack pointer) in a C++ file. What is the best option? A function...