Hi,
when i compile the code i am getting the link error"L1102: Out of allocation space in segment TINY RAM at address 0x0E
void New_display(signed long Value,char sign1)
{
unsigned char temp_chr1=0;//temp_chr2=0,temp_chr3=0,temp_chr4=0;
signed long valx=Value;
if(Value<0) {
valx*= -1;
LCDWF13_temp=0;
LCDWF12_temp=0x20;
}
temp_chr1= (unsigned char) (valx%100u);
valx=valx/100u;
NumToAscii(temp_chr1);
lcd8_34();
temp_chr1= (unsigned char) (valx%100u);
valx=valx/100u;
NumToAscii(temp_chr1);//when i call this function the link error is occurring else no problem.
-----
----
-----
}
why it is happening? how to solve this?
Thanks,