ismu
Full Member level 2
i want to add 1024 nos of integer in to a look up table , i used as
const unsigned int look[1024]={0x1234,0x2EF3,0x3FFF,........};
So in hex its should be near to 1kB+some Byte size ,but actually my code size is came as 2KB+som byte , if am using integer size as 2048 then code size is coming 4KB ,
please help me how can i reduce the code size
const unsigned int look[1024]={0x1234,0x2EF3,0x3FFF,........};
So in hex its should be near to 1kB+some Byte size ,but actually my code size is came as 2KB+som byte , if am using integer size as 2048 then code size is coming 4KB ,
please help me how can i reduce the code size