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..