Hi all,
I need to store a large array of bytes (4ko) in my MSP430F247, to do a fixed lookup table.
The elements of this table will be access in read mode only, they are never updated (write access) by the main program.
I think the code to define the lookup table will be like this:
lookup_table DW 0,145,255,123,147,111,12 ;... (up to 4ko!!!) (please correct me if I'm wrong)
How can I proceed in assembler to choose the best memory location to store this fixed huge array?
Note that I don't use C, only assembler.
Thanks in advance for your help.
Kind regards.