• intrinsic functions
    The GNU compiler can define intrinsic functions. Is there a mechanism in Keil library or whatever, to allow you to create a function in assembly and tag it as intrinsic? How can you pop a couple...
  • Intrinsic function and xc16x.h header
    Hello: I'm developing a software for Infineon XC167CI, and I'm using DAvE and Keil uVision2 for it. I cannot get through a problem concerning the intrinsic function _bfld_, whose prototype is: void...
  • intrinsic function for 32bit multiplication
    hello, are there intrinsic functions available for the XC164 to use the multiply unit of the ALU? For example for calculations like: 16bit x 16bit = 32bit (MUL-instruction)or 32bit / 16bit = 16bit...
  • SPECIFY EXACT LOCATION FOR C51 USER DEFINED FUNCTIONS
    HELLO all, Can we Sepecify exact location to our own defined functions. for example void function() _at_ c:0x5000; void main() { ... ... } void function() { ... ... }
  • C++: Not possible to define global constants?
    If in "normal" C, I define a global constant in one module: const int iTabCount= 5; and then use this constant in another module (module2.c) with extern: extern const int iTabCount; ...