• I have a problem. How to extrn asm in C inline asm.
    I want to extrn a function in asm in C. example: _asm { extrn test:near call test } like the example: but I have a exception like that: inline syntax error in 'opcode'; found 'test'
  • I have a problem. How to extrn asm in C inline asm.
    I want to extrn a function in asm in C. example: _asm { extrn test:near call test } like the example: but I have a exception like that: inline syntax error in 'opcode'; found 'test'
  • 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...
  • 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...
  • Assign variables to specified registers for inline asm???
    Hi, I want to assign variables of a C file to specified registers for indirect addressing in assembler. Here is a example: void Function (void) interrupt 0 using 1 { unsigned char i; // at r0 ...