PROGMEM on Due

Correct.
Static data.
Well, the code I'm using is not working.
I'm using array of progmem though.
I'll make a simple code to test the concept and post later.
Here are the declarations:

const prog_char MENU_1[] PROGMEM = "Menu 1";
const prog_char MENU_2[] PROGMEM = "Menu 2";
static PROGMEM const char *menu_items[] = {MENU_1,MENU_2};

And I was referring to them like this:

(char * )pgm_read_word(&(menu_items[0]))