• About warning L15.
    I have developed 8051 software like following: void my_f(U8 t) { U8 i; U8 j; for (i=0;i<t;i++) for (j=0;j<10;j++) nop(); } void my_int (void) interrupt 2 { ....... my_f(1); ....... } ...
  • Linker warning L16
    Hello, While building a project this message appears: *** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS SEGMENT: ?CO?AMPL_DRIVER I know that this warning indicates that there...
  • Avoiding warning L16
    Hello, Is there a way to avoid the following warning: Warning L16: uncalled segment, ignored for overlay process ? I'm not talking about the Disable warning numbers you have in the options of a project...
  • Strange warning L16 (LX51)
    Very simple code: #define LEVELS 8 unsigned int code table[LEVELS] = { 1, 8, 27, 64, 125, 216, 343, 512 }; unsigned int get_distance (void) { unsigned char ii; ii = 3; // return table[ii]; /...
  • Error L104 Warning L16
    Can't debug this simple code! Please help! I am getting Error L104 and warning L16 #include<stdio.h> #include<at89x51.h> void main() { P2=0x00; while(1) { P2=0xFF; } }