Declare a pointer table in HCONST space

Declaring the Pointer Table in CODE Space
Hello,

I would like to declare the following array of functions in HCONST space:

code void (code *ArrayOfFunctions[])(void) =
{
MyFunct_1,
MyFunct_2,
...
};


For the moment, this declaration causes a ?CO? segment in CODE space but i would like to locate this table in HCONST space? How can i do it?

Is the following declaration is correct:
code void (code * const far ArrayOfFunctions[])(void) =
{
MyFunct_1,
MyFunct_2,
...
};

Thank you for your help!

More questions in this forum