i'm using CWR5, and i have a "static const" data table. unfortunately, it's
a table of function pointers, so i don't know a way to move it into a
resource. this table is referenced by a function that can be called while
globals are available -- it can also be called while globals are not
(sysAppLaunchCmdFind).
how can i get this table of constant data to be PC-relative, or to not be
referenced off of the globals register? i want the table built at compile
time, not at run time (which is why i don't want to just remove the "static"
keyword).
i've looked thru the CWR5 help, and i can't find anything on this.