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.
Hi,
I'm trying to use "__at" to locate a variable to a specific address:
void delay (void) { unsigned long cont __at 0x4000000;
for (cont = 0; cont < 10000;cont++); }
But the compiler said me:
test.c(17): error: #65: expected a ";"
What is the problem?
Thank you very much..
Thank you!!, _at works properly now!