• Inline Assembly & Interrupt Functions
    Hello, 1) I want to place assembly code in my C code. The problem with using SRC is that I would have to rename the file MyAsm.SRC to MyAsm.A51 and then (remove C code from project) include A51 code...
  • Pass in an immediate value to an inline assembly function
    Note: This was originally posted on 6th March 2009 at http://forums.arm.com Hi, I would like to pass in an immediate value to an inline assembly function, such as in this example: inline int foo(int a...
  • Function including inline assembler
    Hi, all. I'm making loop counter using inline assembler in C51.(attach file ) I'm trying use variable that decleared in C language. But when I build, variable name changed in SRC file. ( "uint8_t...
  • assembler function inlining
    Function inlining replaces a call to a function with the body of the function. This speeds up program execution by eliminating the call/return code, the code required to pass parameters, and the code...
  • INLINE ASSEMBLY
    hi i want to use the assembly code in my c file how can i do this i refered the link below but did not the clear idea http://www.keil.com/support/man/docs/c51/c51_cm_srcfile.htm i gone through...