That is compiler specific so you have to look at the compiler you are using and determine from their documentation how best to accomplish that.
If you are using codewarrior the forum for that is:
CodeWarrior Development Tools
GCC uses __attribute__ specifiers to place variables into sections. Your linker script then has to allocate those sections to the correct addresses
ARMCC (Keil) also use the __attribute__ specifiers just as GCC but also has the ability to use the specifer "at" which allows you to directly place a variable (or structure) at the given address without having to change your scatter file.