• Different .HEX code when Assembler SRC is selected C51 V6.10
    Is there a bug? I have a well debugged and tested C program, that works fine with a normal compile. (Optimization Level 8, emphasis on code size ) It does not work correct when I enable the Assembler...
  • Different .HEX code when Assembler SRC is selected C51 V6.10
    Is there a bug? I have a well debugged and tested C program, that works fine with a normal compile. (Optimization Level 8, emphasis on code size ) It does not work correct when I enable the Assembler...
  • Error If "Generate Assembler SRC File" & "Assemble SRC File" are active?
    I have the follwing problem? I have just three files in my project. 1. main.c 2.I2c_sw.c 3.Startup.a51 I2c_sw.c file has few lines of assembly code. so I have checked "Generate Assmebler...
  • Error If "Generate Assembler SRC File" & "Assemble SRC File" are active?
    I have the follwing problem? I have just three files in my project. 1. main.c 2.I2c_sw.c 3.Startup.a51 I2c_sw.c file has few lines of assembly code. so I have checked "Generate Assmebler...
  • C51 v8.17 saving/restoring all registers in interrupt function with assembly src
    C51 will generate different code for the following function: void timer1 (void) interrupt 3 { second; #pragma asm clr TF1 #pragma endasm } Compiler v8.08 code (edited) USING 0 timer1...