Hello everyone,
I work in a compiler c2000
I have the following problem:
I have the following table
const ushort abc_1 [16] = { ....... };
const ushort abc_2 [16] = { ....... };
const ushort abc_3 [16] = { ....... };
I would like to get a table const with the values of distance between the addresses of the tables defined above
example:
const long prova[] = {
&abc_2 - &abc_1,
&abc_3 - &abc_2,
ecc...
};
I can not
thanks
Dell'Acqua