• Compiler Bug List for C51
    I'm currently on a program that uses Keil Compiler v 5.20 (DLL 1.32a). The program does not want to change compilers at this point. So I need to be aware of the compiler bugs in this version of the compiler...
  • C51 750 compile bug!
    volatile unsigned int Wi; Wi= (0x4000*3)/(0x10); //The compliler will make Wi = 0xfc00 !! //The right answere is Wi = 0x0c00!!
  • C51 Compiler Bug, Help Please !
    I catch a C51 compiler bug when debugging some functions to calculate time differrence. The main function's prints out shows that function DifferExStamp(T1,T2) give error time differrence, but DifferJDxTime...
  • A bug in C51?
    Hi, I encountered the following phenomena during my work: I dont know if its supposed to be this way but I'm sure it made me a lot of trouble. I had a working program and I built a bootloader for...
  • c51 bug
    void abc(void) { } ABC() { } main() { abc(); ABC(); }