NKurzman
So if you create Const arrays bigger than 32K the Compiler will handle it automatically?
That will be handy.
I am pretty sure you can but you have to add -mlarge_arrays (or something like that) to the compiler options and place them in prog space and use __prog__ decorations. The generated code will be inefficient so it is probably better to split into sub 32k chunks and choose which chunk to access.