Well, Lattice 3.03 has a major bug in it's array indexing. to access the
third element of B array, it would normaly be coded as :
i=1; value = B[i+1];
unfortunatly, Lattice really messes that up. To get the same result with
Lattice, you would have to code it as :
i=1; value = B[i]+1;
Hey, I know it doesnt make sense, but it is a bug with 3.03