• 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 bit integers (uint64)
    Hi. Is it possible to use 64 bit integers in C51? Cheers Martin
  • Problem in displaying integer/number GLCD
    i am unable to display numbers in glcd example like digit 13.By using below code . int32_t GLCD_DrawChar(uint32_t x, uint32_t y, int32_t ch); int x=50 + (acc.x * 25/1000); int y=50 + (acc.y * 25...
  • 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
  • 32-bit integer routine reentrancy
    Are the 32-bit integer operation routines such as LMUL, LSHL, SHSHR etc. reentrant?