Представляете, в отстойном
CodeVision это можно сделать:
Код
Global variables can be stored at specific SRAM locations at design-time using the @ operator.
Example:
/* the integer variable "a" is stored
in SRAM at address 80h */
int a @0x80;
/* the structure "alfa" is stored
in SRAM at address 90h */
struct x {
int a;
char c;
} alfa @0x90;
А в
WinAVR нельзя. Я в шоке.

Вы мне скажите, это хоть в IAR можно проделать?