We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
How to define the following constant to an absolute address at 0x1000?
unsigned char code index[] = { 0x3, 0x5, 0x6 } ; //a constant mem in a file
I think you need to create an ASM file and use the following code,
CSEG AT 0x1000 DB 0x03, 0x05, 0x06 END