Hi, I have a lot of string that I have to put in a Display 2x16 and I'm trying to put this strings in the code area. Firs I declare a matrix as below: const unsigned char [6][16] = { "bla-bla-bla-bla-", "bla-bla-bla-bla-", "bla-bla-bla-bla-", "bla-bla-bla-bla-", "bla-bla-bla-bla-", "bla-bla-bla-bla-" }; When I'm using a matrix 6x16 I don't have problems, but when I use a matrix bigger than 10x16, my compiler send the message: ***ERROR L107: ARDES SPACE OVERFLOW SPACE: DATA SEGMENT: DATA_GROUP Program Size: data 141 xdata: 809 code: 5970 My flash have 64kByte and 2kB of RAM. When I use the command above, does I need "data" memory? Somebody know why this problem?