• C11 internal error
    Compiling something like this: typedef char near * SWITCHES_LIST[]; typedef SWITCHES_LIST near * SWITCHES_LIST_POINTER; typedef struct { void near *switches; } PISTON; int sub (PISTON...
  • 64 bit integers
    Has anyone run across a simple 64 bit math library for a c166? I need an Add(32 to 64), Shife_Right, and a Negate() funtion. Thanks
  • 64 bit integers (uint64)
    Hi. Is it possible to use 64 bit integers in C51? Cheers Martin
  • BUG with bits in integer variable
    There is a BUG in the compilation of a bit definition: unsigned int bdata my_int; sbit bit15 = my_int ^ 15; sbit bit7 = my_int ^ 7; void main() { my_int = 0x8000; if(bit15) { // Here we shall...
  • 64 Bits integer numbers
    How can we manage a 64 bits integer number to convert it to ASCCII value for LCD display. Does SPRINTF work with 'double' data type reguards.