For example, there is an array:
unsigned int tabz[] = {64, 128, 256, 512, 1024, 2048, 4096}; In CodeVisionAVR, to place this array in flash, you need to write this:
flash unsigned int tabz[] = {64, 128, 256, 512, 1024, 2048, 4096}; In Atmel Studio 6 is impossible. How to place an array in flash memory in Atmel Studio 6?