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.
I'm looking for a way to absolutely locate a constant array in code space using the C51 compiler. I can use the 'code' memory location specifier to indicate the array should be located in program memory. For example:
int code arrayOfPrimes[3] = {2, 3, 5};
int arrayOfPrimes[3] _at_ 0x80; arrayOfPrimes[0] = 2; arrayOfPrimes[1] = 3; arrayOfPrimes[2] = 5;
/* This won't work! */ int code arrayOfPrimes[3] _at_ 0x80 = {2, 3, 5}; /* This works but is meaningless because I can't initialize the array. */ int code arrayOfPrimes[3] _at_ 0x80;