Compiler complains when using that attribute as in example : const char MyText[] __at (0x1F00) = "TEXT AT ADDRESS 0x1F00";
Any idea ?
"Compiler complains"
In what way, precisely? Post the full text of the message; use copy-and-paste - don't manually re-type it.
with : const char MyText[] __at (0x1F00) = "TEXT AT ADDRESS 0x1F00";
Error: system.c(103): error: #65: expected a ";"
with : const char MyText[] = "TEXT AT ADDRESS 0x1F00";
Error: none