• Function Inlining ?
    How does inlining work ? static __inline int MULT_16x16R16(int a, int b) { return ( (int)((a * (long)b) >> 16)); } appears to produce the following unexpected snippet... ; FUNCTION MULT_16x16R16...
  • Inline Functions
    Hi, How can a write a inline function ? Thanks Michael !
  • Inline C Functions
    Any hope of adding the inline keyword to the C51 compiler so that we can declare functions as inline? For example, I have a C source file that wraps manipulations to the 8051 itself. Some functions...
  • 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...
  • static inline function error
    Gentlemen, I'm getting an error when I declare a function static inline. Could anyone give me a hand and try telling me why. the following function gives an error: static inline int test(void...