hello,

i am trying to write code for my 5*5*5 led cube. this is a test setup before i start building my 8*8*8 RGB led cube to avoid any errors in the final project.
i am of course using shift register to extend the amount of outputs, however the electronics itself are not the problem since i am struggeling with the code.
i already did get the shout command working and also used array's bud the downside of that is that they are stored as variabels.
so i was looking for a method to store the data in the flash memory of the pic, i found the following command: DIM ...... AS CODE in the documentation.
it is able to do exactly what i want. bud the documentation doesn't tell me how to implement it. i would like to store 8bit values, so it should look a bid like this:

%10000000
%11000000
%11100000

i want to store data tables that the program needs to walk trough one by one. the problem is how can i write this kind of data table to the flash memory with the DIM .... AS CODE command?

thanks in advance