You are creating an initialized variable, even if you use its address not its value, and is placed in ".rdata".
You can force the creation of initialized data in the code section with the compiler directive "/cbstring" normally used for drivers compilation.
You can also create your sections and place data there usinge the pragma "data_seg( [ "name" ] )".
Read the help file you'll find a lot of info.