On Tue, 9 Mar 2004, Lucian wrote: > Unfortunately the code has the same size if I write with > *(vector+address), probably the compiler does the same thing. But have > you any tips and tricks when it comes to using vectors but still > reducing the code size ? thank you... Cache references to the same array element. For example, x = array[a] + 7; y = array[a] - 2; will be smaller if written as temp = array[a]; x = temp + 7; y = temp - 2; -- John W. Temples, III -- http://www.piclist.com hint: The PICList is archived three different ways. See http://www.piclist.com/#archives for details.