Array Size Limitiation 32<X<48 entries

Last evening I convinced myself that a simple table lookup function only worked below 32 entries and somewhere between 32 and 48 entries the system bombs. The Easy-C documentation suggests around 200 entries. Have you confirmed recently that something above 32 entries works without issue? Will attach Easy_C Pro project files.
FRC2009_CD_VEX05.zip (4.26 KB)

The program you have posted will compile without issue up to 59 entries. The limit is 60 for an int. The limit is a compiler / pic18 issue not a easyC issue. The number of entries goes down by 1 for every other in you have in the function. This is a per function issue, so if you create another function you can double the size.