• Inline Functions
    Hi, How can a write a inline function ? Thanks Michael !
  • 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...
  • 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 __asm function
    I want from my C code to read value of PC, an for that I want write inline __asm function. I wrote this           int Get_Add(void)                  {                       int Add;                  ...